gpt4 book ai didi

android - 在另一个布局中添加布局

转载 作者:IT老高 更新时间:2023-10-28 23:40:27 25 4
gpt4 key购买 nike

如何在另一个布局中添加一个布局。我在 tblrow.XML 中创建了这个布局。所以我想在 menu.XML 中添加这些行。我想根据行数添加这些行。我该怎么做那。如果我添加它,我如何识别每一行。请帮助我。我需要 Java 中的解决方案而不是 XML 中的解决方案。我的代码是

<TableRow android:id="@+id/tblRowMovies" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/btn_backgrnd"  android:clickable="true" android:focusable = "true" android:layout_weight="1.0">
<ImageView android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/movie" android:layout_gravity="center_vertical|center_horizontal"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="MOVIES" android:layout_gravity="center_vertical" android:paddingLeft="20dp" android:textColor="@android:color/white" android:textSize="20sp" android:textStyle="bold">
</TextView>

.

最佳答案

您可以在另一个布局文件中包含一个布局文件,这种技术称为使用包含标签重用 Android 布局。例如:

<include android:id="@+id/myid1" layout="@layout/workspace_screen" />

这在 a blogpost by Android developers. 中有很好的解释.

关于 Android developer site explains the layout re-usability 的另一篇文章.

关于android - 在另一个布局中添加布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4791822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com