Не удается установить URL-адрес imageView в пользовательском уведомлении о просмотре - PullRequest
0 голосов
/ 21 мая 2019

Я пытаюсь установить удаленный URL-адрес изображения для уведомления о пользовательском просмотре из Titanium.Android.RemoteViews link

Вот простой макет, который показывает изображение в виде уведомления.Уведомление сработало и показывается в области уведомлений, но оно не показывает никакого изображения.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp" >
    <ImageView android:id="@+id/image_pic"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/rel_lyt"
    />
</RelativeLayout>

И я пытаюсь установить изображение уведомления как

customView.setImageViewUri(Ti.App.Android.R.id.image_pic, "https://freeiconshop.com/wp-content/uploads/edd/bulb-curvy-flat.png");

var notification = Titanium.Android.createNotification({
    contentView : customView,
    contentIntent : pending,
    icon : Ti.App.Android.R.drawable.google,
});

Я думаю, что оно должно быть получено из URLстрока и изображение, я что-то упустил?

...