我终于从
获得了垂直搜索栏样本How can I get a working vertical SeekBar in Android?
(感谢Paul Tsupikoff)
但我现在有一个垂直线性布局,只实现了垂直搜索条看起来
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.example.layouts.VerticalSeekbar
android:id="@+id/v_seekbar"
android:layout_width="wrap_content"
android:layout_height="fill_parent"/>
</LinearLayout>
而不是在屏幕结束之前绘制垂直搜索栏,而是无限制地绘制它。也许在工作的Vertical SeekBar类中有什么东西负责这种行为? (How can I get a working vertical SeekBar in Android?) 或者有什么我想念的东西?
更新: 将layout_height更改为40dip还可以使垂直搜索栏从屏幕中绘制出来并且无限制
答案 0 :(得分:2)
我的垂直搜索栏只能使用从Modifying the Android seekbar widget to operate vertically派生的不同类来工作(感谢鹏旺)这里有解压缩的zip文件。
http://560b.sakura.ne.jp/android/VerticalSlidebarExample.zip
这些垂直搜索栏现在可以执行fill_parent