1

我目前正在开发小型应用程序,在某些时候用户需要选择一个选项。我收到的规范说的是水平列表,有可供选择的选项。该选项在箭头指针下方时被选中 - 类似于命运之轮。

这是我到目前为止所做的:

我的活动

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        LinearLayout tl = (LinearLayout) findViewById(R.id.index);
        for (int i = 0; i < 10; i++) {
            TextView textview = new TextView(this);
            textview.setLayoutParams(new LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
            textview.setText("Text " + i);
            tl.addView(textview);
        }
    }
}

我的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world" />
        ... the rest of normal layout
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/value" />

        <HorizontalScrollView
            android:id="@+id/horizontalScrollView"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:scrollbars="none" >

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:id="@+id/index"
                android:orientation="horizontal" >
                ... there i put all the elements
            </LinearLayout>
        </HorizontalScrollView>
    </LinearLayout>

</RelativeLayout>

还有一张图片解释了它的样子: 样本

因此,当箭头在 18cm 以上时,textview(值)文本应该是 18cm。

有人可以帮我解决这个问题,或者至少说我应该在 Google 中搜索什么。

编辑:

我刚刚意识到我没有提到的一件事 - 整个应用程序必须与 API 10+ 兼容。

4

2 回答 2

6

您正在寻找的小部件类似于 android 水平轮。android-spinnerwheel有一个实现,可以是您需要的。

在此处输入图像描述

于 2013-10-28T06:47:22.047 回答
1

这可能没有那么有用。但这应该可以帮助您入门。

Android中有一个名为Gallery的类可以用于这种实现。它具有水平滚动的子元素的中心锁定。但这在 Android API 16 中已被弃用。

图库已弃用。所以不推荐使用这个。

话虽如此,很少有开源项目可以帮助您实现这种实现。一种这样的解决方案是https://stackoverflow.com/a/12240387/603744。你可以从这里开始,我想你可以通过你的方式。

于 2013-10-28T06:44:14.053 回答