2

Android没有为垂直搜索栏提供内置配置的原因是什么?我必须使用http://560b.sakura.ne.jp/android/VerticalSlidebarExample.zip中的代码才能使其工作。

我在 stackoverflow 上阅读了一些线程,他们建议如下,这显然不适用于我的三星 S4 和 Droid Razr4:

<SeekBar
 android:id="@+id/seekBar1"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:rotation="270"/>

我在这里错过了什么吗?请让我知道你的意见。

谢谢拉吉

4

1 回答 1

6

Android 是否有针对 Vertical Seekbar 的内置配置?

不。对于 API 11+,您可以使用android:rotation="270",正如您在回答中指出的那样,对于早期版本,您需要查看开源实现。

这是我发现的另一个实现,可能对您有用:

https://github.com/AndroSelva/Vertical-SeekBar-Android

这是使用时的样子android:rotation="270"

于 2013-06-26T15:48:54.423 回答