如何在Android中的xml文件中加载特定的布局

时间:2013-03-04 06:37:38

标签: android xml android-layout

我不知道我的问题是否正确。它只是我的想法。如果有可能请发表您的意见.. 我的问题是我有一个xml文件。它包含几个布局......

是否可以只加载给定xml文件中的某些布局部分? 我的确切要求是,看看我的xml代码,它包含3种类型的布局。 在java部分,当我点击一个按钮,然后只有一些要显示的布局和其他隐藏,这是否可能???

查看我的xml代码

                 <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:background="@drawable/background" >

<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="122dp"
    android:layout_y="208dp" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </TableRow>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </TableRow>

    <TableRow
        android:id="@+id/tableRow4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </TableRow>
</TableLayout>

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="91dp"
    android:layout_y="90dp" >
</RelativeLayout>

</AbsoluteLayout>

2 个答案:

答案 0 :(得分:2)

将可见性设置为xml代码,并将其设置为

<android:visibility="gone"> to remove the layout 

并设置

 <android:visibility="invisible">   to make the layout invisible

答案 1 :(得分:1)

您可以使用ViewFlipper显示整个布局的一部分。 ViewFlipper可以有多个子布局,以便在不同的情况下显示,如...

<ViewFlipper android:id="@+id/ViewFlipper01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dip">

    <TextView android:id="@+id/TextView01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="First view is now displayed"></TextView>

    <TextView android:id="@+id/TextView02"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Second view is now displayed"></TextView>

    <TextView android:id="@+id/TextView03"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Third view is now displayed"></TextView>
</ViewFlipper> 

将鳍状肢发现为..

ViewFlipper flipper = (ViewFlipper)findViewById(R.id.flipper);

ViewFlipper一次显示一个孩子(第一个),其他孩子仍然隐藏。现在向其他孩子展示你可以写的......

flipper.setDisplayedChild(index);

此处索引是指从0,1,2 ......开始的子号码。

希望它会对你有所帮助。