如何在代码而不是 XML 中动态地执行此操作?

发布于 2024-09-10 16:57:53 字数 748 浏览 5 评论 0原文

我想在我的代码中动态定义以下布局(当前是一个 xml 文件)。

最终目标是能够有条件地将某些页面包含在我的视图翻转器中。

谢谢!

<?xml version="1.0" encoding="utf-8"?>
<com.gtosoft.dash.MyViewFlipper
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/vFlipper" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">

    <!--  Page 01 -->
        <include android:id="@+id/flipperPage01" layout="@layout/page01" />

    <!--  Page 02 -->
        <include android:id="@+id/flipperPage02" layout="@layout/page02" />

    <!--  Page 03 -->
        <include android:id="@+id/flipperPage03" layout="@layout/page03" />

</com.gtosoft.dash.MyViewFlipper>

I would like to define the following layout (which is currently an xml file) dynamically in my code.

The end goal is to have the ability to conditionally include certain pages in my viewflipper.

Thanks!

<?xml version="1.0" encoding="utf-8"?>
<com.gtosoft.dash.MyViewFlipper
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/vFlipper" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">

    <!--  Page 01 -->
        <include android:id="@+id/flipperPage01" layout="@layout/page01" />

    <!--  Page 02 -->
        <include android:id="@+id/flipperPage02" layout="@layout/page02" />

    <!--  Page 03 -->
        <include android:id="@+id/flipperPage03" layout="@layout/page03" />

</com.gtosoft.dash.MyViewFlipper>

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

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

发布评论

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

评论(1

心奴独伤 2024-09-17 16:57:53

您可以使用 LayoutInflater 并将元素动态添加到自定义视图中。另请参阅这篇文章:从布局查看

You can use LayoutInflater and add elements dynamically to your custom view. Also see this post: view from layout

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