我希望在我的主视图中有两个用于选择时间的滚轮,一个包含01-24的数字,另一个包含00-60,跳跃为5(0,5,10..55) 有没有准备好这样的东西? 类似于http://code.google.com/p/mobiscroll/,只是android内置。 时间选择器非常烦人..我需要按+ - 直到我选择我想要的。我更喜欢触摸直观的东西。 我有什么选择存在这样的事情?
答案 0 :(得分:0)
没有内置任何东西,但你可以试试这个: http://code.google.com/p/android-wheel/
答案 1 :(得分:0)
在这里,您将找到一个包含源代码的完整项目。 TestWheel.zip
TestWheel.zip
。is library
复选框。)
答案 2 :(得分:0)
这是你的hour_listView。只需为它设置一个字符串适配器。假设您可以使用ArrayAdapter填充listView。
hr_list.setOnScrollListener(new OnScrollListener() {
int currentcount,topitem,firstitem,lastitem;
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
if (scrollState == SCROLL_STATE_IDLE && currentcount == 4) {
while (scrollState == SCROLL_STATE_TOUCH_SCROLL) {
}
LinearLayout item = (LinearLayout) view.getChildAt(0);
int height = item.getHeight();
int top = Math.abs(item.getTop()); // top is a negative value
if (top <= height/2){
view.smoothScrollToPositionFromTop(topitem, 0, 3000);
Log.d("Switch", "up");
}
if(top> height/2){
view.smoothScrollToPositionFromTop(topitem+1, 0,3000);
Log.d("Switch", "down");
}
}
}
然后在button.clickListener上设置,你将得到可见listView的中心行号。
int list_hr = hr_list.getFirstVisiblePosition() - hr_list.getHeaderViewsCount();
几个关键点。 *为listView 1dp设置分隔符高度。 *使用线性布局在listView中进行渗透 行高应为listview heigth总数的1/3(以dp为单位)。
列表视图的XML和按钮
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Snap List"
android:textSize="25sp" />
<ListView
android:id="@+id/listView1"
android:layout_width="100dp"
android:layout_height="120dp"
android:fadingEdgeLength="33dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginTop="73dp"
android:background="@drawable/lisbg"
android:scrollbars="none" >
</ListView>
<StackView
android:id="@+id/stackView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/listView1"
android:layout_marginLeft="103dp"
android:layout_marginTop="57dp"
android:layout_toRightOf="@+id/textView1" >
</StackView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/textView1"
android:layout_marginRight="58dp"
android:text="OK" />
<Button
android:id="@+id/button2"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button1"
android:layout_below="@+id/button1"
android:text="Scroll 5" />
行的XML。
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:textSize="25sp"
android:gravity="center_vertical|center_horizontal"
android:layout_gravity="center_vertical|center_horizontal"
android:text="TextView" />