要設置Android SeekBar(拖動條)的按鈕樣式,可以使用SeekBar的setThumb方法來設置按鈕的樣式。具體步驟如下:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FF0000" /> <!-- 按鈕的顏色 -->
<size android:width="20dp" android:height="20dp" /> <!-- 按鈕的大小 -->
</shape>
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@drawable/thumb_style" /> <!-- 設置按鈕的樣式 -->
SeekBar seekBar = findViewById(R.id.seekBar);
seekBar.setMax(100); // 設置拖動條的最大值
seekBar.setProgress(50); // 設置拖動條的當前值
以上步驟中,可以根據需要自定義thumb_style.xml文件中的屬性來調整按鈕的樣式,例如顏色、大小等。