gpt4 book ai didi

java - 我可以在 ViewFlipper 中设置 contentView 吗?

转载 作者:行者123 更新时间:2023-12-01 05:54:13 24 4
gpt4 key购买 nike

我有一个包含布局的 ViewFlipper。

有没有办法可以连接一个类来单独管理每个布局?

有点像 setContentView(R.layout.main); 但我不确定如何在代码中引用 3 种不同的布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" >
<ListView android:layout_width="wrap_content" android:id="@+id/ListView" android:layout_height="220dp"></ListView>
<ViewFlipper android:id="@+id/ViewFlipper" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:id="@+id/LinearLayoutST" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/ImageView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/icon"></ImageView>
</LinearLayout>
<LinearLayout android:id="@+id/LinearLayoutChart" android:layout_height="fill_parent" android:layout_width="fill_parent">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="View 2"></TextView>
</LinearLayout>
<LinearLayout android:id="@+id/LinearLayoutDetails" android:layout_height="fill_parent" android:layout_width="fill_parent">
<TextView android:id="@+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="View 3"></TextView>
</LinearLayout>
</ViewFlipper>
</LinearLayout>

最佳答案

您可以通过两种方式执行此操作:

  1. 将相应的类实例附加到要操作的 View 或布局。如果您只想使用常规调用、设置 OnClickListeners 等,这就足够了:

    LinearLayoutlayoutChart = (LinearLayout)findViewById(R.id.LinearLayoutChart);

  2. 如果您需要覆盖默认类行为(即子类),请创建一个扩展类:

    公共(public)类 LinearLayoutChart 扩展 LinearLayout {...}

确保实现所有父构造函数(即使只是传递给调用 super...),尤其是那些采用属性的构造函数。

在扩展类中实现您的自定义代码。

然后,编辑您的布局 xml,并将 LinearLayout 标记和结束标记替换为您的特殊类的完全限定类名(包括其包名称)

<com.mycompany.mypackage.LinearLayoutChart>
<!-- layout definition as before -->
</com.mycompany.mypackage.LinearLayoutChart>

这将使布局充气器实例化您的类而不是库存类,因此您可以覆盖 protected 方法等。

关于java - 我可以在 ViewFlipper 中设置 contentView 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3622849/

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