0

我希望在我的主视图中有两个用于选择时间的滚轮,一个包含 01-24 的数字,另一个包含 00-60,跳跃为 5 (0,5,10..55)事物?类似于http://code.google.com/p/mobiscroll/,只是 android 内置。时间选择器很烦人..我需要按 +- 直到我选择我想要的。我更喜欢更直观的东西。对于这样的事情,我有什么选择?

4

3 回答 3

0

在这里,您将找到带有源代码的完整项目。 测试轮.zip

  1. TestWheel.zip从链接下载。
  2. 将其导入您的 Eclipse
  3. 将此项目转换为库项目(右键单击 testWheel 项目 ==> 属性 ==> android ==>is library选中复选框)。
  4. 将此库项目添加到您的项目中。
  5. 将以下代码复制并粘贴到您的 XML 文件中。

在此处输入图像描述

于 2013-02-22T11:31:39.540 回答
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 设置分隔线高度。*使用Linear layout infalte in a listView 行高应该是listview总高度的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" />

于 2013-02-22T13:28:28.500 回答
0

没有内置任何东西,但你可以试试这个: http ://code.google.com/p/android-wheel/

于 2013-02-22T11:16:49.500 回答