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