gpt4 book ai didi

具有轮状旋转的Android水平列表

转载 作者:行者123 更新时间:2023-11-29 14:38:48 25 4
gpt4 key购买 nike

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

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

我的 Activity

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>

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

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

谁能帮我解决这个问题,或者至少告诉我应该在 Google 中搜索什么。

编辑:

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

最佳答案

你要找的小部件类似于android水平轮。在 android-spinnerwheel 处有一个实现这可能是您需要的。

enter image description here

关于具有轮状旋转的Android水平列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19628464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com