Android: 如何从不同的按钮充气不同的布局?

Android: How to inflate different layout from different buttons?

我想做一些标签,但使用按钮。

但每次我点击按钮时它都会给我添加一行。 我希望它将所有布局更改为另一个..

MainActivity

public class MainActivity extends Activity {
Button btn1;
Button btn2;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    btn1 = (Button) findViewById(R.id.button1);
    btn1.setOnClickListener(switchListener);
    btn2 = (Button) findViewById(R.id.button2);
    btn2.setOnClickListener(switchListener);

}

private OnClickListener switchListener = new OnClickListener() {

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub

        //ScrollView sv = (ScrollView) findViewById(R.id.MyScrollView);

        LinearLayout ll = (LinearLayout) findViewById(R.id.MyLinearLayout);

        LayoutInflater inflater = LayoutInflater
                .from(getApplicationContext());

        if (btn1 == v) {

            View v1 = inflater.inflate(R.layout.firstview, null);

            ll.addView(v1);

        } else {

            View v2 = getLayoutInflater().inflate(R.layout.secondview, null);

            ll.addView(v2);
        }

    }
};

}

这是我的主要 XML 文件

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

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

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Layout 1" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Layout 2" />
</TableRow>

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

    <ScrollView
        android:id="@+id/MyScrollView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <LinearLayout
            android:id="@+id/MyLinearLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

        </LinearLayout>

    </ScrollView>
</TableRow>

这是我要膨胀的另外两个布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="First View"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:gravity="center" 
    android:background="@android:color/holo_blue_light"/>

和第二个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Second View"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:gravity="center" 
    android:background="@android:color/holo_red_light"/>

在将视图添加到您的 ll 线性布局检查之前,因为

if(ll.getChildCount() > 0) {
    ll.removeAllViews(); 
}

然后执行:

ll.addView(view) v1 or v2 as required.

首先匹配您的父级 tableview

现在对您的代码执行以下操作:-

   if(ll.getChildCount() > 0) {
       ll.removeAllViews(); 
   }

   if (btn1 == v) {

        View v1 = inflater.inflate(R.layout.firstview, null);

        ll.addView(v1);

    } else {

        View v2 = getLayoutInflater().inflate(R.layout.secondview, null);

        ll.addView(v2);
    }

问题是你只是在布局上一个一个地添加子项,所以你需要先删除然后添加到布局中,所以请尝试上面的代码。