您好,登錄后才能下訂單哦!
小編給大家分享一下Android中ToggleButton開關(guān)狀態(tài)按鈕控件怎么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
ToggleButton開關(guān)狀態(tài)按鈕控件使用方法,具體內(nèi)容如下
一、簡介
1、
2、ToggleButton類結(jié)構(gòu)
父類是CompoundButton,引包的時候注意下
二、ToggleButton開關(guān)狀態(tài)按鈕控件使用方法
1、新建ToggleButton控件及對象
private ToggleButton toggleButton1;
toggleButton1=(ToggleButton) findViewById(R.id.toggleButton1);
2、設(shè)置setOnCheckedChangeListener方法
toggleButton1.setOnCheckedChangeListener(new OnCheckedChangeListener() {})
3、根據(jù)是否checked方法實(shí)現(xiàn)操作
if(isChecked){//開 linearLayout1.setOrientation(LinearLayout.VERTICAL); } else{//關(guān) linearLayout1.setOrientation(LinearLayout.HORIZONTAL); }
三、代碼實(shí)例
1、效果圖:
開狀態(tài)
關(guān)狀態(tài)
2、代碼:
fry.Activity01
package fry; import com.example.ToggleButtonDemo1.R; import android.app.Activity; import android.os.Bundle; import android.widget.CompoundButton; import android.widget.CompoundButton.OnCheckedChangeListener; import android.widget.LinearLayout; import android.widget.ToggleButton; public class Activity01 extends Activity{ private LinearLayout linearLayout1; private ToggleButton toggleButton1; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity01); linearLayout1=(LinearLayout) findViewById(R.id.linearLayout1); toggleButton1=(ToggleButton) findViewById(R.id.toggleButton1); /* * ToggleButton開關(guān)狀態(tài)按鈕控件使用方法 * 1、新建ToggleButton控件及對象 * 2、設(shè)置setOnCheckedChangeListener方法 * 3、根據(jù)是否checked方法實(shí)現(xiàn)操作 * */ toggleButton1.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){//開 linearLayout1.setOrientation(LinearLayout.VERTICAL); } else{//關(guān) linearLayout1.setOrientation(LinearLayout.HORIZONTAL); } } }); } }
/ToggleButtonDemo1/res/layout/activity01.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ToggleButton android:id="@+id/toggleButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true" android:textOn="橫向排列" android:textOff="縱向排列" /> <LinearLayout android:id="@+id/linearLayout1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="button" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="button" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="button" /> </LinearLayout> </LinearLayout>
四、獲得
1、
android:checked="true"
設(shè)置ToggleButton 狀態(tài)
2、
android:textOn="橫向排列"
設(shè)置ToggleButton打開文本
3、
toggleButton1.setOnCheckedChangeListener(new OnCheckedChangeListener() {})
設(shè)置ToggleButton的setOnCheckedChangeListener方法
4、
if(isChecked)
判斷ToggleButton狀態(tài)開關(guān)
看完了這篇文章,相信你對“Android中ToggleButton開關(guān)狀態(tài)按鈕控件怎么用”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。