如何分配数据以包含 xml 中的布局?
假设我们有一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以,为此您需要识别您的布局
然后使用此布局对象您需要识别您的 TextView
You can, For this you need to identify you layout
Then with this layout object you need to identify you TextView