1
我想將搜索欄的拇指放在android的最右端角落,這是默認情況下在最左側的角落。是否有可能?Android Seekbar拇指位置
我想將搜索欄的拇指放在android的最右端角落,這是默認情況下在最左側的角落。是否有可能?Android Seekbar拇指位置
yes.you可以試試這個:
在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