国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android ToggleButton 詳解及實例代碼

2019-12-12 03:41:31
字體:
來源:轉載
供稿:網友

Android ToggleButton 詳解

在Android的開發過程中,對于ToggleButton的使用頻率也是相當的高的,下面我就來說一下,這個組件的兩種使用方式。

第一種是簡單的使用,利用Toast的方式彈出提示語句

需要注意的是要想自定義ToggleButton的顯示的內容,就需要設置其TextOn和TextOff的內容。

<ToggleButton    android:id="@+id/toggleButton1"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_alignBaseline="@+id/toggleButton2"    android:layout_alignBottom="@+id/toggleButton2"    android:textOn="開"    android:textOff="關"    android:layout_alignRight="@+id/imageview"    android:text="Simple test" />

然后是主要的顯示代碼:

case R.id.toggleButton1:      if(SimpleTest.isChecked()){        Toast.makeText(getApplication(), "你打開了開按鈕", Toast.LENGTH_SHORT).show();      }else{        Toast.makeText(getApplication(), "你打開了關按鈕", Toast.LENGTH_SHORT).show();      }      break;      //應該注意的是,先聲明ToggleButton并初始化,然后注冊偵聽方法

接下來是一個較為復雜一點的使用案例,那就是配合ImageView來實現不同的圖片顯示狀態

<ToggleButton    android:id="@+id/toggleButton2"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_alignLeft="@+id/imageview"    android:layout_alignParentTop="true"    android:layout_marginTop="46dp"    android:textOn="美女"    android:textOff="圖標"    android:text="With Image" /> <ImageView     android:id="@+id/imageview"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:src="@drawable/note"    android:layout_below="@id/toggleButton2"    />

然后是活動代碼

case R.id.toggleButton2:      if(WithImage.isChecked()){        imageview.setImageResource(R.drawable.note);      }else{        imageview.setImageResource(R.drawable.ic_launcher);      }      break;

需要注意的是,我們同樣需要先進行聲明,才能對其使用,否則會報空指針的錯誤。

下面是程序運行之后的結果

總結與設想:

在使用過程中使用到的ToggleButton 一般來說不會這么的簡單,但是主要的思想和框架還是基于這里的。我們可以在相關的偵聽方法中添加比如靜音的處理,或者status的改變等等。這樣,我們的應用就會變得更加的靈活了。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 山丹县| 家居| 正阳县| 三台县| 石河子市| 石渠县| 黔西县| 长岛县| 永登县| 疏勒县| 兴隆县| 阿拉善右旗| 眉山市| 邵阳县| 青浦区| 蒲江县| 鲁甸县| 达州市| 马尔康县| 淮滨县| 香河县| 剑河县| 金秀| 米林县| 阳城县| 南安市| 米易县| 县级市| 开化县| 南宁市| 锡林郭勒盟| 天峨县| 大冶市| 鸡泽县| 石嘴山市| 沙田区| 田东县| 吴堡县| 辉县市| 阳朔县| 宁海县|