Android Seekbar Thumb位置

时间:2011-11-11 06:45:19

标签: android

我想把搜索条的拇指放在android的右下角,这是默认情况下最左边的角落。这可能吗?

1 个答案:

答案 0 :(得分:6)

是的。你可以试试这个:

xml中的

<SeekBar android:id="@+id/seek"
        android:layout_width="fill_parent"
        android:layout_height="90dip"
        android:max="80"
        android:progress="80"      
        /> 

另外,以编程方式设置它:

SeekBar sb=(SeekBar)findViewById(R.id.seek);
sb.setProgress(80); //you must set your maximum progress here,which you specified in your xml