0
我想在用戶點擊時更改安卓部件的可視元素之一。這是在widget的XML安卓更新部件外觀
<ImageView
android:id="@+id/bg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="false"
android:layout_marginLeft="20dp"
android:layout_marginTop="18dp"
android:src="@drawable/seal" />
我想根據一個ID的改變src,所以從小工具我打算送遠程視窗點擊listener
Intent bgSwitch = new Intent(widgetContext, MainActivity.class);
bgSwitch.putExtra("jurisdiction", "bg");
PendingIntent bgIntent = PendingIntent.getActivity(widgetContext,
6, bgSwitch, PendingIntent.FLAG_UPDATE_CURRENT);
remoteView.setOnClickPendingIntent(R.id.bg, bgIntent);
和透明性(或小部件本身)我想以某種方式更改imageview
的來源。
我不想只翻轉一堆imageviews
的可見性。
這將如何實現?
@CQM如果它適合你。您可以將其標記爲答案。和rpl我是否適用於你。 – Rahil2952