1

我知道这是一个常见的问题.. 我读了这个网站和很多教程很多次但没有机会做工作。

那么代码是这样的:

public class mostraRisultatiActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mostra_risultati);

    int cnt = 0;
    final TableLayout tl = (TableLayout) findViewById(R.id.tabellaRisultati);

    for (Esame e : Db.risposteDate){
        TableRow tr = new TableRow(this);

        TextView lbl1 = new TextView(this);
        TextView lbl2 = new TextView(this);
        TextView lbl3 = new TextView(this);
        tr.setGravity(Gravity.CENTER);
        lbl1.setGravity(Gravity.CENTER_VERTICAL);
        lbl3.setGravity(Gravity.CENTER);

        lbl1.setTextColor(android.graphics.Color.RED);
        lbl2.setTextColor(android.graphics.Color.RED);
        lbl3.setTextColor(android.graphics.Color.RED);

        lbl1.setLayoutParams( new TableRow.LayoutParams( 0, android.view.ViewGroup.LayoutParams.WRAP_CONTENT, 1 ) );
        lbl2.setLayoutParams( new TableRow.LayoutParams( 0, android.view.ViewGroup.LayoutParams.WRAP_CONTENT, 7 ) );
        lbl3.setLayoutParams( new TableRow.LayoutParams( 0, android.view.ViewGroup.LayoutParams.WRAP_CONTENT, 1 ) );

        lbl1.setText(e.getDomandaNum()+"");
        lbl2.setText(Html.fromHtml(e.getTesto()+"<br />"));
        lbl3.setText(e.getRispostaData());

        tr.addView(lbl1);
        tr.addView(lbl2);
        tr.addView(lbl3);
        tl.addView(tr);
        if (e.getRispostaData() != null && e.getRispostaData().equals(e.getRispostaReale())){
            cnt++;
            lbl1.setTextColor(android.graphics.Color.GREEN);
            lbl2.setTextColor(android.graphics.Color.GREEN);
            lbl3.setTextColor(android.graphics.Color.GREEN);
        }
    }
    double percentualeSucceso = (cnt*100)/Db.risposteDate.size();

    final TextView risposteTotTV = (TextView) findViewById(R.id.risultatiTot);
    final TextView riassuntorisTV = (TextView) findViewById(R.id.risRiassunto);
    final TextView esitoTV = (TextView) findViewById(R.id.esito);

    risposteTotTV.setText(Html.fromHtml("<b><big>TOT</big></b>" +  "<br />" + 
            Db.risposteDate.size()));
    riassuntorisTV.setText(Html.fromHtml("<b>Risposte corrette: </b>" +cnt+  "<br />" + 
            "Percentuale: "+percentualeSucceso+"%"));
    if (percentualeSucceso >= 90) {
        esitoTV.setText(Html.fromHtml("<b><big>Esito</big></b>  <br />" + 
                                      "<small>PROMOSSO</small>"));
    } else {
        esitoTV.setText(Html.fromHtml("<b><big>Esito</big></b>  <br />" + 
                                      "<small>BOCCIATO</small>"));
    }

}

}

我在加载 ui 时想要一个进度条(特别是 for 循环)

我尝试了一个线程:所有工作,但没有进度显示,直到加载 ui(无用)我尝试使用 asyncTask 并且我总是异常崩溃。

任何的想法?

4

2 回答 2

0

答案是你不能!要查看 ProgressDialog 的进度,它必须在 UI 线程上运行。并且创建您的 UI 已经在 UI 线程上运行,这就是您的进度对话框出现无响应的原因。你也不能使用 AsyncTask 来创建 UI,你总是会得到“从错误的线程调用”异常。这意味着您必须在 UI 线程上构建您的 UI。

我通常做的是在加载 UI 时显示启动画面,并在其他一切准备就绪时将其删除

于 2012-09-24T17:39:14.953 回答
0

好吧,我只用一个非常基本的方法测试了这个解决方案Button,但它确实有效,所以这里是:

您可以Views使用AsyncTask. View我尝试了一个按钮,以及在 AsyncTask中修改/创建一个没有问题的工作的任何调用,直到您将视图添加到布局中。添加后,必须在 UI 线程上进行任何修改。因此,您的所有设置都将在 中进行doInBackground(),所有addView()调用都将在onPostExecute(). 之后onPostExecute(),必须在 AsyncTask 中对视图进行更多更改。

于 2012-09-24T18:09:39.777 回答