android开发之ToggleButton控件

时间:2021-11-14 17:32:36

ToggleButton可以认为是一个开关,每单击依次一次在“开”和“关”之间进行切换。


ToggleButton的几个常用方法:

1.setTextOff()

当未被选中时,显示的文本。

2.setTextOn()

当被选中时,显示的文本。

3.setCheaked()

设置控件的状态。

4.setBackgroundDrawable()

设置控件的的背景。


控件使用很简单。


演示实例:

MainActivity.java

public class MainActivity extends Activity {


	ToggleButton toggleButton;
	
	@Override
	public void onCreate(Bundle savedInstanceState) {

		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		toggleButton = (ToggleButton) findViewById(R.id.tbut);
		
		
		
		toggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener() {
			
			@Override
			public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
				if(arg1){
					toggleButton.setBackgroundResource(R.drawable.open);
					
				}else{
					toggleButton.setBackgroundResource(R.drawable.close);
				}
			}
		});
		

	}
}
activity_main.xml

<LinearLayout 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"
    android:orientation="vertical"
    tools:context="${relativePackage}.${activityClass}" >

    <!--
    	显示文本为空
          android:textOff=""
          android:textOn=""
                   设置初始的背景,否则显示默认的背景
          android:background="@drawable/close"
    -->

    <ToggleButton
        android:id="@+id/tbut"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_gravity="center_horizontal"
        android:background="@drawable/close"
        android:textOff=""
        android:textOn="" />

</LinearLayout>



图:

*****************************************

按钮图片找了好几个,不好看,怎么看怎么丑,这个就凑合吧。

*******************************************

未按下:

android开发之ToggleButton控件

按下:

android开发之ToggleButton控件