Android 自定义通知背景
Android custom notification background
我在布局的根目录中有一个带有 RelativeLayout 的自定义通知。我需要为此 RelativeLayout 设置背景图像。我有一张图片 url,然后我使用 Picasso 下载位图。
有没有办法将位图设置为自定义通知?
所有答案都与位于资源 remoteView.setInt(R.id.viewid, "setBackgroundResource", R.color.your_color)
中的设置颜色或图像有关。
不幸的是,我无法将背景添加到 RelativeLayout,但我找到了解决方法。我做了这样的布局
<FrameLayout>
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent"/>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
ImageView 现在用作背景,因为它在 FrameLayout 中排在第一位。
我在布局的根目录中有一个带有 RelativeLayout 的自定义通知。我需要为此 RelativeLayout 设置背景图像。我有一张图片 url,然后我使用 Picasso 下载位图。 有没有办法将位图设置为自定义通知?
所有答案都与位于资源 remoteView.setInt(R.id.viewid, "setBackgroundResource", R.color.your_color)
中的设置颜色或图像有关。
不幸的是,我无法将背景添加到 RelativeLayout,但我找到了解决方法。我做了这样的布局
<FrameLayout>
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent"/>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
ImageView 现在用作背景,因为它在 FrameLayout 中排在第一位。