我想把搜索条的拇指放在android的右下角,这是默认情况下最左边的角落。这可能吗?
答案 0 :(得分:6)
:
<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