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"/>
我在这里遗漏了什么吗?请让我知道你的意见。
由于 拉吉
答案 0 :(得分:6)
Android是否有针对Vertical Seekbar的内置配置?
没有。对于API 11+,您可以使用android:rotation="270"
,正如您在答案中指出的那样,对于早期版本,您需要查看开源实现。
这是我发现的另一个实现,可能对您有用:
https://github.com/AndroSelva/Vertical-SeekBar-Android
以下是使用android:rotation="270"
时的样子: