wheelview滾動效果的View
這段時間需要用到一個時間選擇器,但是不能使用日期對話框,
因為它是篩選條件架構下的,隻能是View!這個WheelView改造後可以達到要求!
這個wheelview架構使用的類不多,就幾個,還有一些資源檔案。
我根據這個架構設計了日期的選擇器。
首頁面:
第一種日期選擇器頁面:
動态效果:
使用:
具體的實作是一個LoopView的類,這是一個繼承View的類!
了解LoopView的公開方法就可以了。
1.布局檔案
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
>
<com.example.wheelview.loopview.LoopView
android:layout_marginTop="50dp"
android:id="@+id/loopView"
android:layout_width="match_parent"
android:layout_height="150dp"
app:awv_textsize="18"
/>
</LinearLayout>
2.控制代碼
package com.example.wheelview.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import com.example.wheelview.R;
import com.example.wheelview.loopview.LoopView;
import com.example.wheelview.loopview.OnItemSelectedListener;
import java.util.ArrayList;
public class MyActivity extends Activity {
private Toast toast;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final LoopView loopView = (LoopView) findViewById(R.id.loopView);
ArrayList<String> list = new ArrayList<String>();
for (int i = ; i < ; i++) {
list.add("item " + i);
}
//設定是否循環播放
// loopView.setNotLoop();
//滾動監聽
loopView.setListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(int index) {
if (toast == null) {
toast = Toast.makeText(MyActivity.this, "item " + index, Toast.LENGTH_SHORT);
}
toast.setText("item " + index);
toast.show();
}
});
//設定原始資料
loopView.setItems(list);
}
}
那個日期選擇器就是使用三個LoopView結合而成的!
LoopView類裡面控制字型顔色和橫線顔色的地方:
//中間選中的字型顔色: 灰色:,橙色:
centerTextColor = typedArray.getInteger(R.styleable.androidWheelView_awv_centerTextColor, );
//沒被選中的字型的顔色
outerTextColor = typedArray.getInteger(R.styleable.androidWheelView_awv_outerTextColor, );
//中間字型上下兩條橫線的顔色
dividerColor = typedArray.getInteger(R.styleable.androidWheelView_awv_dividerTextColor, );
其他的控制可以參考我的代碼
我的項目的代碼:https://github.com/liwenzhi/wheelview
我的代碼中有一個時間的工具類,可以很友善的取到任何時間,你也可以在日期選擇器中多加一個按鈕,設定到今天的日期。