我参考了这个问题: 当我多次重用布局时,如何访问布局内的视图?
我有以下两种布局:
<!-- layout_to_include.xml -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
和
<!-- widget.xml -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/included_layout_1"
layout="@layout/layout_to_include"/>
<include
android:id="@+id/included_layout_2"
layout="@layout/layout_to_include"/>
</LinearLayout>
通常,您可以在包含的布局中以编程方式访问 TextView,如下所示:
LinearLayout l1 = (LinearLayout) findViewById(R.id.included_layout_1);
((TextView) l1.findViewById(R.id.text_view)).setText("test1");
LinearLayout l2 = (LinearLayout) findViewById(R.id.included_layout_2);
((TextView) l2.findViewById(R.id.text_view)).setText("test2");
但就我而言,我有一个只能通过 RemoteViews 访问的 Android AppWidget:
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
views.setTextViewText(R.id.text_view, "test1");
这只会更改第一个 TextView 的文本。
我还没有找到任何解决方案,所以我的问题是是否可以在多个包含的布局中设置 TextView 的文本。