我在我的应用程序中使用ACB,我在设置水平进度最大值的最大值时遇到了一些问题。我可以理解(并通过互联网找到/读取)有一种方法可以使用xml设置水平进度条在它自己的风格,如
<item name="android:max">value</item>
但在我的应用程序中,我正在下载数据,并且根据某些值,用户可以下载不同类型的数据包/信息,我需要以编程方式设置progressBar的最大值。并且每个数据包的最大值将根据其大小而变化。
任何想法如何每次都增加最大值并根据具体情况来计算进度条的当前值?
感谢您提供任何帮助。
答案 0 :(得分:1)
试试这段代码:
ProgressBar pg = new ProgressBar(getApplicationContext());
pg.setMax(100);
对于sherlock progressbar
,您可以使用此示例代码:在此代码中设置mProgress
的值以设置progressbar
的最大值
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.view.Window;
public class Progress extends SherlockActivity {
Handler mHandler = new Handler();
Runnable mProgressRunner = new Runnable() {
@Override
public void run() {
mProgress += 2;
//Normalize our progress along the progress bar's scale
int progress = (Window.PROGRESS_END - Window.PROGRESS_START) / 100 * mProgress;
setSupportProgress(progress);
if (mProgress < 100) {
mHandler.postDelayed(mProgressRunner, 50);
}
}
};
private int mProgress = 100;
@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(SampleList.THEME); //Used for theme switching in samples
super.onCreate(savedInstanceState);
//This has to be called before setContentView and you must use the
//class in com.actionbarsherlock.view and NOT android.view
requestWindowFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.progress);
findViewById(R.id.go).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
if (mProgress == 100) {
mProgress = 0;
mProgressRunner.run();
}
}
});
}
}
答案 1 :(得分:1)
因为我看到除了在xml样式中设置它之外没有办法在运行时更新水平进度条最大值。
如果有人为此找到解决方案,请回答。