asynctaskのおかげでUIが動的に更新されます。 onpreexecuteメソッドでは、progressdialogを表示しますが、それは最後まで表示されます。progressdialogが最後まで表示される(非同期タスク)
つまり、ボタンをクリックしてアクティビティを変更すると、UIがフリーズして、簡単にprogressdialogが表示され、最後にUIが更新されます。
私のコードで何が間違っていますか?
private ProgressDialog pd ;
@Override
protected void onCreate (Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.sqlview);
new taskDoSomething().execute();
}
private class taskDoSomething extends AsyncTask<Long, Integer, Integer>
{
protected void onPreExecute() {
// TODO Auto-generated method stub
pd = ProgressDialog.show(SQLView.this, "Working..", "Calculating", true,true);
}
protected Integer doInBackground(Long... params) {
UpdateIHM();
return 0;
}
protected void onPostExecute(Integer result) {
Toast.makeText(SQLView.this,"onPostExecute", Toast.LENGTH_LONG).show();
}
}
public void UpdateIHM()
{
runOnUiThread(new Runnable() {
@Override
public void run() {
LinearLayout my_layout = (LinearLayout) findViewById(R.id.lil_content);
HotorNot info = new HotorNot(SQLView.this);
my_table data = new my_table();
Log.i("Test","ok 0");
info.open();
Log.i("Test","ok 0.1");
for(int i =0; i<3; i++){
data = info.getData();
for (int j=0; j<50; j++){
LinearLayout lil_temp = new LinearLayout(SQLView.this);
lil_temp.setOrientation(LinearLayout.HORIZONTAL);
lil_temp.addView(buildText(data.row), getParams(WRAP, WRAP));
lil_temp.addView(buildText(data.name), getParams(WRAP, WRAP));
lil_temp.addView(buildText(data.hotness), getParams(WRAP, WRAP));
my_layout.addView(lil_temp);
}
}
info.close();
handler.sendEmptyMessage(102);
}
});
}
問題を解決した場合は、答えを記入してください。私は同じ問題に直面しています。 – Hemant