4

我正在尝试仅使用 java创建一个 progressBar (不是一个progressBar 对话框)。

我不能让它工作,我得到的是:

在此处输入图像描述

(不断转圈的图像)

这是我的代码:

    b4 = new Button(this);
    t4 = new ProgressBar(this);

    b4.setId(4);
    b4.setText(SensorData.sensorName[4]);
    b4.setTypeface(null, 1);
    b4.setTextSize(15);
    b4.setGravity(Gravity.LEFT);
    b4.setTextColor(R.color.black);
    b4.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.icon, 0); // down

    // t4.setId(4);
    t4.setPadding(20, 10, 10, 10);
    t4.setIndeterminate(false);
    t4.setProgress(0);
    t4.setScrollBarStyle(ProgressBar.SCROLLBARS_OUTSIDE_INSET);
    t4.setMax(100);
    t4.setVisibility(t4.VISIBLE);


    sensorsView.addView(b4, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    sensorsView.addView(t4, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

    b4.setOnClickListener(this);

我想要的是一个水平进度条,你知道我该怎么做吗?谢谢。

4

2 回答 2

5

改变这个:

t4 = new ProgressBar(this);

对此:

t4 = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);
于 2012-04-14T11:41:00.247 回答
-1

你可以这样做:

t4.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL)
于 2012-04-14T11:42:10.803 回答