加載特定的佈局,我不知道我的問題是正確與否。它只有我的思想。如果可能請給你的意見.. 我的問題是我有一個XML文件。它包含幾個佈局...如何在XML文件中的Android
是有可能只加載在給定的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>
不,你的問題不清楚。請詳細說明你正在嘗試做什麼。 – Rajesh 2013-03-04 06:39:13
嗨Rajesh,我的需求是,當這個XML文件加載,ineed顯示只有一些佈局在該XML ..有可能?? ?? – SibinF 2013-03-04 06:43:15
是的,這是可能的。 Sanket回答了你的問題。現在我的問題是:你爲什麼使用AbsoluteLayout?這對我來說並不合適。 – 2013-03-04 06:45:57