将 Seekbar 进度增加 25% with textview display 25%
Increment Seekbar progress by 25% with textview display 25%
我在 application.I 中使用搜索栏可以将进度增加 25% 并在文本视图中显示。但我真正想要的是我需要搜索栏进度也增加 25%,但它只像往常一样增加。仅增加1%。
您可以使用 API of SeekBar
class :
public synchronized void setProgress (int progress)
Added in API level 1
Set the current progress to the specified value. Does not do anything
if the progress bar is in indeterminate mode.
Parameters progress the new progress, between 0 and getMax()
我在 application.I 中使用搜索栏可以将进度增加 25% 并在文本视图中显示。但我真正想要的是我需要搜索栏进度也增加 25%,但它只像往常一样增加。仅增加1%。
您可以使用 API of SeekBar
class :
public synchronized void setProgress (int progress) Added in API level 1
Set the current progress to the specified value. Does not do anything if the progress bar is in indeterminate mode.
Parameters progress the new progress, between 0 and getMax()