91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android UI中使用Switch控件

發布時間:2021-03-30 16:20:33 來源:億速云 閱讀:149 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關如何在Android UI中使用Switch控件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

首先,在布局中添加上Switch控件:

<Switch
    android:id="@+id/s_v"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:switchMinWidth="20dp"
    android:textOn="on"
    android:textOff="off"
    android:thumb="@drawable/thumb"
    android:track="@drawable/track" />

以下是該控件的常用屬性:

textOn:控件打開時顯示的文字
textOff:控件關閉時顯示的文字
thumb:控件開關的圖片
track:控件開關的軌跡圖片
typeface:設置字體類型
switchMinWidth:開關最小寬度
switchPadding:設置開關 與文字的空白距離
switchTextAppearance:設置文本的風格
checked:設置初始選中狀態
splitTrack:是否設置一個間隙,讓滑塊與底部圖片分隔(API 21及以上)
showText:設置是否顯示開關上的文字(API 21及以上)

我們一般不會用該控件原本的樣式,那么我們就需要自己修改樣式了:

gray_thumb.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >

  <!-- 高度40 -->
  <size android:height="40dp" android:width="40dp"/>
  <!-- 圓角弧度 20 -->
  <corners android:radius="20dp"/>

  <!-- 變化率 -->
  <gradient
    android:endColor="#ffffff"
    android:startColor="#ffffff" />

  <stroke android:width="1dp"
    android:color="#9e9e9e"/>

</shape>

green_thumb.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >

  <!-- 高度40 -->
  <size android:height="40dp" android:width="40dp"/>
  <!-- 圓角弧度 20 -->
  <corners android:radius="20dp"/>

  <!-- 變化率 -->
  <gradient
    android:endColor="#ffffff"
    android:startColor="#ffffff" />

  <stroke android:width="1dp"
    android:color="#33da33"/>

</shape>

gray_track.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >

  <!-- 高度  此處設置寬度無效-->
  <size android:height="20dp"/>
  <!-- 圓角弧度 15 -->
  <corners android:radius="25dp"/>

  <!-- 變化率 定義從左到右的顏色不變 -->
  <gradient
    android:endColor="#9e9e9e"
    android:startColor="#9e9e9e" />

</shape>

green_track.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

  <!-- 高度40 -->
  <size android:height="20dp"/>
  <!-- 圓角弧度 20 -->
  <corners android:radius="25dp"/>

  <!-- 變化率 -->
  <gradient
    android:endColor="#33da33"
    android:startColor="#33da33" />

</shape>

thumb.xml:

<?xml version="1.0" encoding="utf-8"?>
<!-- 設置按鈕在不同狀態下的時候,按鈕不同的顏色 -->
<selector xmlns:android="http://schemas.android.com/apk/res/android" >

  <item android:state_checked="true" android:drawable="@drawable/green_thumb" />
  <item android:drawable="@drawable/gray_thumb" />

</selector>

track.xml:

<?xml version="1.0" encoding="utf-8"?>
<!-- 控制Switch在不同狀態下,底下下滑條的顏色 -->
<selector xmlns:android="http://schemas.android.com/apk/res/android" >

  <item android:state_checked="true" android:drawable="@drawable/green_track" />
  <item android:drawable="@drawable/gray_track" />

</selector>

在styles.xml中添加如下style:

<style name="s_true" parent="@android:style/TextAppearance.Small">
  <item name="android:textColor">#33da33</item>
</style>

<style name="s_false" parent="@android:style/TextAppearance.Small">
  <item name="android:textColor">#9b9b9b</item>
</style>

最后,只需要將控件實例化出來進行相應操作就可以了:

MainActivity.class:

public class MainActivity extends Activity{

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final Switch aSwitch = (Switch) findViewById(R.id.s_v);
    aSwitch.setChecked(false);
    aSwitch.setSwitchTextAppearance(MainActivity.this,R.style.x1);
    aSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
      @Override
      public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
        //控制開關字體顏色
        if (b) {
          aSwitch.setSwitchTextAppearance(MainActivity.this,R.style.s_true);
        }else {
          aSwitch.setSwitchTextAppearance(MainActivity.this,R.style.x1);
        }
      }
    });
  }
}

上述就是小編為大家分享的如何在Android UI中使用Switch控件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江孜县| 乌苏市| 沂水县| 喀喇沁旗| 射阳县| 崇义县| 大新县| 西乌珠穆沁旗| 明溪县| 武冈市| 托克逊县| 平阳县| 涟源市| 吴旗县| 将乐县| 鱼台县| 鄯善县| 新建县| 长乐市| 福建省| 芜湖市| 嘉善县| 贵州省| 海原县| 景谷| 宕昌县| 清徐县| 青冈县| 清水河县| 安达市| 西乡县| 霍邱县| 新宾| 吉水县| 沙河市| 鄯善县| 涪陵区| 酒泉市| 大安市| 达日县| 微山县|