【Android 开发】:UI控件之开关状态按钮 ToggleButton 的使用方法

ToggleButton控件和Button控件的功能基本相同,ToggleButton控件提供了可以表示“开/关”状态的功能,一般是用在设置wifi的开关,或者一些手电筒开关等之类的开发

程序主要代码:

        //获得当前的线性布局
        final LinearLayout linearLayout = (LinearLayout)findViewById(R.id.mylayout);
        //设置开关按钮的切换监听
        toggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                // TODO Auto-generated method stub
                if(isChecked){
                    linearLayout.setOrientation(1);//表示设置为垂直布局
                }else {
                    linearLayout.setOrientation(0);//表示设置为水平布局
                }
                
            }
        });
    }

布局文件:

<?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="vertical" >

    <ToggleButton
        android:id="@+id/togglebutton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true"
        android:textOff="横向排列"
        android:textOn="纵向排列" />

    <LinearLayout
        android:id="@+id/mylayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

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

        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
    </LinearLayout>

</LinearLayout>
程序执行结果:

【Android 开发】:UI控件之开关状态按钮 ToggleButton 的使用方法_第1张图片 <- 点击纵向排列按钮 -> 【Android 开发】:UI控件之开关状态按钮 ToggleButton 的使用方法_第2张图片


你可能感兴趣的:(android,控件,ToggleButton)