无法在自定义视图通知中设置imageView网址

时间:2019-05-21 20:20:43

标签: javascript android notifications appcelerator-titanium

我正在尝试为Titanium.Android.RemoteViews link的自定义视图通知设置图像的远程URL

这里是简单的布局,将图像显示为通知。 通知已触发并显示在通知区域中,但未显示任何图像。

<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,
});

我认为应该从字符串中获取网址并显示图片,我是否遗漏了一些东西?

0 个答案:

没有答案