只在android中需要时才能创建一个框架可见

时间:2011-10-02 03:28:02

标签: android android-layout

我想要做的是创建一个初始布局,它将有一个切换按钮,并在单击切换时,但它应该使框架可见,这将有几个按钮或textview。

有人知道如何在Android 2.2中执行此操作吗?

2 个答案:

答案 0 :(得分:0)

如果您正在为Android 3.0+开发,请查看fragments

答案 1 :(得分:0)

您可以使用视图上的visibility属性来控制它是否可见。这是一个应该做你正在寻找的小例子。

Activity

public class DynamicLayoutTestActivity extends Activity {
    private ToggleButton toggleButton;
    private View possiblyHiddenView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        toggleButton = (ToggleButton) findViewById(R.id.toggleButton);
        possiblyHiddenView = (View) findViewById(R.id.possiblyHiddenView);

        toggleButton.setOnCheckedChangeListener(toggleButtonOnCheckedChangeListener);
    }

    private final CompoundButton.OnCheckedChangeListener toggleButtonOnCheckedChangeListener
            = new CompoundButton.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (isChecked) {
                possiblyHiddenView.setVisibility(View.VISIBLE);
            } else {
                possiblyHiddenView.setVisibility(View.INVISIBLE);
            }
        }
    };
}

布局文件main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
>
    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textOff="Show"
        android:textOn="Hide" />
    <LinearLayout
        android:id="@+id/possiblyHiddenView"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="invisible"
    >
        <TextView
            android:text="Stuff that could be hidden."
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

如果您不希望隐藏视图占用任何空间,请使用可见性gone代替invisible

希望这有帮助!