一个 activity android 中的多个布局
Multiple layout within one activity android
在我的 activity IndividualActivity
中,我已经设置了 individual.xml
的上下文视图,现在我还想在 activity [=25] 中添加另一个 sub_individual.xml
=]不移除、替换或隐藏 individual.xml
,以便它们保持在一起。
public class IndividualActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.individual);
...
}
}
individual.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".IndividualActivity"
android:background="@drawable/default_wall" >
<ListView
android:id="@+id/listx"
android:layout_width="fill_parent"
android:layout_height="380dp"
android:dividerHeight="1dp"/>
...
sub_individual.xml
<?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="40dip"
android:layout_marginLeft="0dp"
android:background="#323331"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="5dip"
android:text="custom title bar" >
<ImageView
android:id="@+id/bk_btn"
android:layout_width="35dip"
android:layout_height="35dip"
android:background="#DDD" />
...
使用片段支持此功能。参见 http://developer.android.com/guide/components/fragments.html
您可以使用 xml
在第一个 xml 中使用 "include" 标签,并在此标签中添加第二个 xml。
在我的 activity IndividualActivity
中,我已经设置了 individual.xml
的上下文视图,现在我还想在 activity [=25] 中添加另一个 sub_individual.xml
=]不移除、替换或隐藏 individual.xml
,以便它们保持在一起。
public class IndividualActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.individual);
...
}
}
individual.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".IndividualActivity"
android:background="@drawable/default_wall" >
<ListView
android:id="@+id/listx"
android:layout_width="fill_parent"
android:layout_height="380dp"
android:dividerHeight="1dp"/>
...
sub_individual.xml
<?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="40dip"
android:layout_marginLeft="0dp"
android:background="#323331"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="5dip"
android:text="custom title bar" >
<ImageView
android:id="@+id/bk_btn"
android:layout_width="35dip"
android:layout_height="35dip"
android:background="#DDD" />
...
使用片段支持此功能。参见 http://developer.android.com/guide/components/fragments.html
您可以使用 xml 在第一个 xml 中使用 "include" 标签,并在此标签中添加第二个 xml。