我有大約60個片段「ListFragment
」,現在我使用每個Listfragment與另一個片段在同一個佈局文件中,像這樣。設置片段類在通貨膨脹時間
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/carDetailedFragment"
android:name="com.ui.fragment.CarDetailedFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<fragment
android:id="@+id/carcategorylistfragment"
android:name="com.ui.fragment.CarCategoryListFragment"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" />
</LinearLayout>
的問題是:我是否需要使60佈局文件對每個片段或我可以使含有2片段,並設置其類
android:name
屬性在充氣時間,如設置一個templete佈局屬性爲視圖前
setContentView(R.layout.somelayout);
View v = findViewById(R.id.src);
v.setVisibility(View.GONE);
你能改述你的問題......它沒有多大意義。 –