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

溫馨提示×

溫馨提示×

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

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

Android數字選擇器NumberPicker使用詳解

發布時間:2020-09-16 06:25:49 來源:腳本之家 閱讀:446 作者:Fly_Elephant 欄目:移動開發

數字選擇器NumberPicker是Android3.0之后引入的一個控件,比較常用,比如說手機常用的鬧鐘,可以選擇小時和分鐘,如果你需要兼容3.0之前版本,GitHub上有開源的項目,具體的下載地址。本人就沒有使用開源的項目,就簡單的使用了NumberPicker顯示一下效果,開始正題吧:

基礎維護

開發東西先看下效果吧:

Android數字選擇器NumberPicker使用詳解

NumberPicker和TextView顯示一下時間,線性布局,看下布局文件吧:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical"
  tools:context="com.example.googlenumberpicker.MainActivity" >
 
  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="30dp"
    android:layout_marginLeft="50dp"
    android:layout_gravity="center_horizontal" >
 
    <NumberPicker
      android:id="@+id/hourpicker"
      android:layout_width="40dp"
      android:layout_height="wrap_content" />
 
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_vertical"
      android:text="時" />
 
    <NumberPicker
      android:id="@+id/minuteicker"
      android:layout_width="40dp"
      android:layout_height="wrap_content" />
 
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_vertical"
      android:text="分" />
  </LinearLayout>
 
</LinearLayout>

Demo實現

字選擇是可以滑動,所以需要定義一個OnValueChangeListener事件,OnScrollListener滑動事件,Formatter事件:

Formatter事件:

public String format(int value) {
    String tmpStr = String.valueOf(value);
    if (value < 10) {
      tmpStr = "0" + tmpStr;
    }
    return tmpStr;
  }

OnValueChangeListener事件:

public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
   Toast.makeText(
       this,
       "原來的值 " + oldVal + "--新值: "
           + newVal, Toast.LENGTH_SHORT).show();
 }

OnScrollListener滑動事件,滑動事件有三個狀態:

SCROLL_STATE_FLING:手離開之后還在滑動

SCROLL_STATE_IDLE:不滑動

SCROLL_STATE_TOUCH_SCROLL:滑動中

public void onScrollStateChange(NumberPicker view, int scrollState) {
   switch (scrollState) {
   case OnScrollListener.SCROLL_STATE_FLING:
     Toast.makeText(this, "后續滑動(飛呀飛,根本停下來)", Toast.LENGTH_LONG)
         .show();
     break;
   case OnScrollListener.SCROLL_STATE_IDLE:
     Toast.makeText(this, "不滑動", Toast.LENGTH_LONG).show();
     break;
   case OnScrollListener.SCROLL_STATE_TOUCH_SCROLL:
     Toast.makeText(this, "滑動中", Toast.LENGTH_LONG)
         .show();
     break;
   }
 }

初始化:

hourPicker=(NumberPicker) findViewById(R.id.hourpicker);
  minutePicker=(NumberPicker) findViewById(R.id.minuteicker);
  init();

init方法中,設置數字的最大值,最小值,以及滑動事件:

private void init() {
   hourPicker.setFormatter(this);
   hourPicker.setOnValueChangedListener(this);
   hourPicker.setOnScrollListener(this);
   hourPicker.setMaxValue(24);
   hourPicker.setMinValue(0);
   hourPicker.setValue(9);
   
   minutePicker.setFormatter(this);
   minutePicker.setOnValueChangedListener(this);
   minutePicker.setOnScrollListener(this);
   minutePicker.setMaxValue(60);
   minutePicker.setMinValue(0);
   minutePicker.setValue(49);
 }

還差一步,Activity需要繼承一下OnValueChangeListener,OnScrollListener,Formatter:

public class MainActivity extends Activity implements OnValueChangeListener,OnScrollListener,Formatter{...}

最后說一點就是NumberPicker也是可以顯示文字的,重新定義一個NumberPicker,加載一下:

valuepicker = (NumberPicker) findViewById(R.id.valuepicker);
    String[] city = {"立水橋","霍營","回龍觀","龍澤","西二旗","上地"};
    valuepicker.setDisplayedValues(city);
    valuepicker.setMinValue(0);
    valuepicker.setMaxValue(city.length - 1);
    valuepicker.setValue(4);

最后顯示的效果:

Android數字選擇器NumberPicker使用詳解

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

平度市| 江山市| 应城市| 衡山县| 乐都县| 商丘市| 博兴县| 碌曲县| 平湖市| 石家庄市| 建湖县| 富蕴县| 斗六市| 沐川县| 三门峡市| 静海县| 清水县| 齐河县| 台北县| 溆浦县| 阿城市| 永寿县| 通化县| 常德市| 镇巴县| 广宗县| 慈溪市| 五指山市| 宁安市| 兴安盟| 稷山县| 新绛县| 收藏| 柏乡县| 六盘水市| 遵化市| 白河县| 梁平县| 汝城县| 望都县| 黄平县|