Android:如何显示在 1 个类中创建的动态表以在另一个类中显示

发布于 2024-12-15 06:09:54 字数 100 浏览 2 评论 0原文

我正在制作一个 Android 应用程序,我想在其中制作动态表格布局和行。 现在我想在另一个活动中使用表格布局,也就是说我不想在第二个活动中制作相同的表格。 我该如何实现这个目标? 谢谢

I am making an android app in which i want to make a dynamic table layout and rows into it.
Now i want to use the table layout in another activity That is I dont want to make same table in the second activity.
How shall i accomplish this?
Thanks

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

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

发布评论

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

评论(1

无远思近则忧 2024-12-22 06:09:55

试试这个...

在一个 xml 文件中定义您的布局。 ex one.xml

使用以下代码,在您想要的任何 xml 中。

<include android:id="@+id/one" layout="@layout/one"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />

Try this...

Define your layout in one xml file. ex one.xml

use following code, in which ever xml you want.

<include android:id="@+id/one" layout="@layout/one"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文