中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

在Android 中利用Seekbar可以實現哪些功能

發布時間:2020-12-02 15:48:04 來源:億速云 閱讀:142 作者:Leah 欄目:移動開發

在Android 中利用Seekbar可以實現哪些功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

Android 中Seekbar詳解及簡單實例

做到音頻播放和音樂播放時,大多數都要用到Seekbar。現在我先簡單介紹下Seekbar的幾個重要屬性。

  • android:max 設置值的大小 .
  • android:thumb=”@drawable/” 顯示的那個可拖動圖標,如果沒有設置該參數則為系統默認,如果自己需要重新定義,則將自己需要的圖標存放在資源目錄 /res/drawable下,然后調用即可.
  • android:thumbOffset 拖動圖標的偏量值,可以讓拖動圖標超過bar的長度.
  • android:progress 設置seekbar當前的默認值,范圍0到max之間.
  • android:secondaryProgress 用過的迅雷的都知道拖動圖標隨著當前的播放時間的走動而走動,同時我們也注意到了也有個緩沖看到的進度條,這個屬性就是用來設置默認顯示的值為多少,范圍為0到max.
  • android:progressDrawable 當我們不想使用系統默認的SeekBar時可以自己定義一個,這個資源文件就是用來調用我們自己定義的Seekbar圖標的一般是在drawable下建立一個.xml文件s用layer-list來組織這些圖標.
     

一般情況下,Seekbar的所有配置是寫在style里的,而不是xml里。下面貼出我的代碼:

<SeekBar
            android:id="@+id/sb"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:max="100"
            />

style的代碼:

<style name="Widget.SeekBar.Normal" parent="@android:style/Widget.SeekBar">
    <item name="android:thumbOffset">8dip</item>
    <item name="android:maxHeight">8dip</item>
    <item name="android:indeterminateOnly">false</item>
    <item name="android:indeterminateDrawable">@android:drawable/progress_indeterminate_horizontal</item>
    <item name="android:progressDrawable">@drawable/po_seekbar</item>
    <item name="android:minHeight">8dip</item>
    <item name="android:thumb">@mipmap/cricle</item>
  </style>

progressdrawable的代碼:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:id="@android:id/background">
    <shape>
      <solid android:color="#E6E6E6" />
      <stroke
        android:width="1dp"
        android:color="#cccccc" />
      <corners android:radius="5dp" />
    </shape>
  </item>
  <item android:id="@android:id/secondaryProgress">
    <clip>
      <shape>
        <corners android:radius="5dp" />
        <solid android:color="#E6E6E6" />
      </shape>
    </clip>
  </item>
  <item android:id="@android:id/progress">
    <clip>
      <shape>
        <corners android:radius="5dp" />
        <solid android:color="#7DBF60" />
      </shape>
    </clip>
  </item>

</layer-list>

這樣一個Seekbar就解決了。

Seekbar有的監聽,就是你拖動到哪播放到哪(差不多這個意思)。

代碼很簡單:

 sb.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

      public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
        int process = seekBar.getProgress();
        if (player != null) {
          player.seekTo(process);
        }
      }

      public void onStartTrackingTouch(SeekBar seekBar) {

      }

      public void onStopTrackingTouch(SeekBar seekBar) {

      }
    });

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

措勤县| 鄂托克前旗| 鄄城县| 龙陵县| 吴堡县| 临安市| 云阳县| 南昌县| 新河县| 英超| 华安县| 塔城市| 开阳县| 凤阳县| 南和县| 崇义县| 林芝县| 嘉义县| 夹江县| 阿克苏市| 安溪县| 乳山市| 红原县| 元谋县| 乌拉特后旗| 丰宁| 卓尼县| 商洛市| 万盛区| 冕宁县| 来凤县| 明溪县| 邹城市| 昂仁县| 双桥区| 富顺县| 绍兴市| 壶关县| 雅江县| 尚义县| 黔江区|