0
A
回答
4
我使用此代碼
<ProgressBar
android:id="@+id/progressBarSell"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="80dp"
android:layout_height="10dp"
android:max="26"
android:progress="12" />
---------------------------------------- -----
progressBarSell.setProgress(Total - Remaining);
progressBarSell.setMax(Total);
這就是做工精細
0
您可以使用搜索欄,而不是進度,以獲取更多信息,請訪問該鏈接:
http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/ https://github.com/AndroSelva/Vertical-SeekBar-Android http://united-coders.com/nico-heid/an-android-seekbar-for-your-mediaplayer/
///////
seek6.setOnSeekBarChangeListener(new OnSeekBarChangeListener(){
public void onStopTrackingTouch(SeekBar seekBar) {
//TODO My code goes here
int CurrentLevel = seek6.getProgress();
if (CurrentLevel < 30) CurrentLevel = 30;
seek6.setProgress(CurrentLevel);
}
public void onStartTrackingTouch(SeekBar seekBar){
}
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser){
}
});
相關問題
- 1. 與Android的XDebug
- 2. 圈與Android的
- 3. 與Android的
- 4. 與Android的
- 5. 與Android的
- 6. 與Android的
- 7. 與Android的
- 8. 與Android的
- 9. 與Android的
- 10. 與Android的
- 11. 的SAXParser與Android
- 12. 與Android的
- 13. 與Android的
- 14. 與Android的
- 15. 與Android的
- 16. 與Android的
- 17. 與Android的
- 18. 與Android的
- 19. 的Android與側
- 20. Dividor與Android的
- 21. 與Android的
- 22. 與Android的
- 23. 與Android
- 24. 與Android
- 25. 與Android
- 26. 與Android
- 27. 與Android
- 28. 與Android
- 29. 與Android
- 30. 與Android
我有網上銷售,並有此進步 – Saeed
@ ben75我不知道如何實現一個 – Saeed
你會找到最好的資源是谷歌/#1。在提出問題之前,檢查答案是不容易的。這本可以通過谷歌搜索輕鬆解決。 – Doomsknight