Android-ToggleButton&CheckTextView&CheckBox

來源:互聯網
上載者:User

標籤:android   控制項   

Android-ToggleButton&CheckTextView&CheckBox 一 定義
ToggleButton:單個選擇框
就是類似於選擇開關的按鈕


CheckBox:複選框
與ToggleButton功能類似,實現方法類似


CheckTextView:點擊文本後選中,
與CheckBox功能類似,時間機制也相同


二 使用方法
1 xml檔案中定義ToggleButton控制項,設定預設的屬性,例如textOn和textOff
 <ToggleButton
        android:id="@+id/toggleButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView"
        android:layout_below="@+id/button3"
        android:textOn="close"
        android:textOff="open"
        android:background="@drawable/button5"
        android:text="ToggleButton" />
2 源檔案中調用,和設定監聽:mtoggleButton.setOnCheckedChangeListener


三 自訂實現
1 代碼實現:
private void showToggleButton()
{
mtoggleButton = (ToggleButton)findViewById(R.id.toggleButton1);
mtoggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener()
{

@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1)
{
// TODO Auto-generated method stub
if (arg1)
{
mtoggleButton.setBackgroundResource(R.drawable.button5);//改變按鈕的背景為button5
Log.i("chengzhi log", "open");
}
else
{
mtoggleButton.setBackgroundResource(R.drawable.button6)//改變按鈕的背景為button6
Log.i("chengzhi log", "close");

}
}
});


2 xml檔案實現:
<item android:state_checked="true" android:drawable="@drawable/button5"></item>開關為true,改變按鈕的背景為button5
<item android:state_checked="false" android:drawable="@drawable/button6"></item>開關為false,改變按鈕的背景為button6

Android-ToggleButton&CheckTextView&CheckBox

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.