如何分配数据以包含 xml 中的布局?

发布于 2024-12-10 06:27:31 字数 632 浏览 0 评论 0原文

假设我们有一个包含 TextView 的布局:

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

  <TextView android:id="@+id/text1"
    style="@style/text_style"/>

</LinearLayout>

然后多次包含该布局:

<include android:id="@+id/info1" layout="@layout/myLayout" />
<include android:id="@+id/info2" layout="@layout/myLayout" />
<include android:id="@+id/info3" layout="@layout/myLayout" />

是否可以将文本分配到包含这些布局的 xml 文件中的每个 TextView 中?
如果不是,那么如何在运行时分配?

Assume we have a layout contains a TextView:

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

  <TextView android:id="@+id/text1"
    style="@style/text_style"/>

</LinearLayout>

and then include this layout several times:

<include android:id="@+id/info1" layout="@layout/myLayout" />
<include android:id="@+id/info2" layout="@layout/myLayout" />
<include android:id="@+id/info3" layout="@layout/myLayout" />

Is it possible to assign text into each TextView in the xml file which contains these layouts?
If not, then how to assign in runtime?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-12-17 06:27:31

您可以,为此您需要识别您的布局

LinearLayout info1 = (LinearLayout)findViewById(R.id.info1);

然后使用此布局对象您需要识别您的 TextView

TextView text1 = (TextView)info1.findViewById(R.id.text1);
text1.setText("Your text");

You can, For this you need to identify you layout

LinearLayout info1 = (LinearLayout)findViewById(R.id.info1);

Then with this layout object you need to identify you TextView

TextView text1 = (TextView)info1.findViewById(R.id.text1);
text1.setText("Your text");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文