一个活动android内的多个布局

时间:2015-03-05 13:04:27

标签: android xml android-activity layout layout-inflater

在我的活动中IndividualActivity我已将individual.xml的上下文视图设置为现在我还想在活动中添加另一个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" />
    ...

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

您可以在xml中使用它 在第一个xml中使用“include”标记,并在此标记中添加第二个xml。