Подтвердить что ты не робот

Уведомление GCM push. Сообщено плохое уведомление - не удалось расширить RemoteViews для: StatusBarNotification

Требование состояло в том, чтобы сделать пользовательское уведомление, поскольку уведомление по умолчанию в андроиде допускает только изображение. Поэтому я продолжил рассказывать о том, как добавить пользовательский интерфейс для уведомления при расширении, готовый ответ заключался в создании пользовательского представления и перехода к диспетчеру уведомлений и разрешении с уровня API 16. Таким образом, я сделал один и вот мой XML-код макета - filename: notification_custom_view_new:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/GhostWhite">

<RelativeLayout
    android:id="@+id/header"
    android:layout_width="match_parent"
    android:layout_height="65dp">

    <ImageView
        android:id="@+id/big_icon"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:scaleType="fitCenter" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignBottom="@+id/big_icon"
        android:layout_alignTop="@+id/big_icon"
        android:layout_toRightOf="@+id/big_icon"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:weightSum="2">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1.6"
            android:orientation="vertical">

            <TextView
                android:id="@+id/title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="1"
                android:text="Title"
                android:textColor="@color/colorBlackDimText"
                android:textSize="16sp"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/message"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="2"
                android:paddingTop="2dp"
                android:text="message"
                android:textColor="@color/colorBlackDimText"
                android:textSize="14sp" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.4"
            android:gravity="center">

            <TextView
                android:id="@+id/time"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="2"
                android:padding="8dp"
                android:text="24:59"
                android:textColor="@color/colorBlackDimText"
                android:textSize="12sp" />

        </LinearLayout>

    </LinearLayout>

</RelativeLayout>

<View
    android:id="@+id/shadow"
    android:layout_width="match_parent"
    android:layout_height="5dp"
    android:layout_below="@+id/header"
    android:background="@drawable/shadow" />

<ImageView
    android:id="@+id/big_picture"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/header"
    android:src="@drawable/vector_icon_collections"
    android:minHeight="240dp"
    android:scaleType="fitCenter" />
</RelativeLayout>

Как я на это ссылался в коде:

private RemoteViews assignRemote(Bitmap bitmap, String title, String message){
    RemoteViews expandedView = new RemoteViews(Application.getInstance().getPackageName(),
            R.layout.notification_custom_view_new);
    expandedView.setTextViewText(R.id.title, title);
    expandedView.setTextViewText(R.id.message, message);
    expandedView.setImageViewBitmap(R.id.big_picture, bitmap);
    expandedView.setImageViewResource(R.id.big_icon, R.mipmap.ic_launcher);
    expandedView.setTextViewText(R.id.time, getOnlyHrsMin());
    return expandedView;
}

назначение менеджера просмотров для менеджера уведомлений:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        notification.bigContentView = assignRemote(bitmap, title, message);
    }

Но это дало мне ошибку с неправильным уведомлением, я определил более 15 + одинаковых вопросов здесь, в stackoverflow без правильного ответа. Некоторые считают, что это недостающий ресурс и, следовательно, ошибка. Я уверен, что с моего конца ни одно из значений не является нулевым, а недостающие ресурсы отсутствуют в моем удаленном представлении, которое передается.

Любая помощь будет оценена, а также я попытался в течение пары дней отслеживать ошибку, но ничего хорошего не происходит. Пожалуйста, помогите мне!

Уведомление Obj Init:

NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
    bigPictureStyle.setBigContentTitle(title);
    bigPictureStyle.setSummaryText(Html.fromHtml(message).toString());
    bigPictureStyle.bigPicture(bitmap);
    Notification notification;
    notification = mBuilder.setSmallIcon(icon).setTicker(title).setWhen(0)
            .setAutoCancel(true)
            .setContentTitle(title)
            .setContentIntent(resultPendingIntent)
            .setSound(alarmSound)
            .setLights(Color.WHITE, 1500, 2000)
            //.setStyle(bigPictureStyle)
            .setWhen(getTimeMilliSec(timeStamp))
            .setSmallIcon(iconToUse())
            .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
            .setContentText(message)
            .build();

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        notification.bigContentView = assignRemote(bitmap, title, message);
    }

    NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(Config.NOTIFICATION_ID_BIG_IMAGE, notification);

StackTrace:

 android.app.RemoteServiceException: Bad notification posted from package com.goldadorn.main: Couldn't expand RemoteViews for: StatusBarNotification(pkg=com.goldadorn.main user=UserHandle{0} id=101 tag=null score=0 key=0|com.goldadorn.main|101|null|10220: Notification(pri=0 contentView=com.goldadorn.main/0x1090077 vibrate=null sound=android.resource://com.goldadorn.main/raw/notification defaults=0x0 flags=0x11 color=0x00000000 vis=PRIVATE))
                                                                  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1480)
                                                                  at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                  at android.os.Looper.loop(Looper.java:135)
                                                                  at android.app.ActivityThread.main(ActivityThread.java:5343)
                                                                  at java.lang.reflect.Method.invoke(Native Method)
                                                                  at java.lang.reflect.Method.invoke(Method.java:372)
                                                                  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:905)
                                                                  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:700)

Прикрепление скриншота к оформлению пользовательского интерфейса:

layout UI

4b9b3361

Ответ 1

Удалите "Вид", который вы используете как тень в своем макете (или "Замените вид с помощью TextView" ), и он отлично работает. XML, используемый для Remoteview, должен использовать представления, в которых есть аннотация @android.widget.RemoteViews.RemoteView. Поскольку простой вид не имеет этой аннотации, вы не можете использовать это в своем xml.

Ответ 2

Вы не можете поместить EditText в RemoteViews. RemoteViews ограничивается несколькими возможными виджетами, для уведомления, я сомневаюсь, что параметры AdapterView, такие как ListView, тоже будут работать. посмотрите здесь. Надеюсь, это поможет вам в соответствии с моим опытом.