アンドロイドSOLUTION:他のスレッドは私にアクティビティレイアウトを変更させません!
それが最善か、きれいな解決策ではないかもしれませんが、それは動作します。新しいスレッドを開始して、新しいスレッドがメインスレッドに新しい実行可能プログラムを取得、割り当て、中断して、ビューを開始する間に、メインスレッドがProgressDialogを表示できるようにします。 ProgressDialogを新しいスレッドのすべてのアクティビティが実行されている間に表示するには、前述のようにProgressDialogをメインスレッドで開始し、もちろん新しいスレッドの最後に終了する必要があります。 ProgressDialogは、新しいスレッドが始まる直前に開始されなければならず、待つ必要があるのは新しいスレッドに入る必要があります。また、ProgressDialogを待っている間にUIの変更を行いたい場合は、メインスレッドを新しい実行可能ファイルで中断する必要があります。run()
メソッドの変更をrunOnUiThread
で行います。
public void onCreate(Bundle savedInstanceState) {
...
((ScrollView) findViewById(R.id.contentContainer)).addView(getLayoutInflater().inflate(R.layout.myCustomContentLayout, null));
((TextView) findViewById(R.id.name)).setText(customer.getProperty("name").getValue().toString());
final ProgressDialog progressDialog = ProgressDialog.show(this, "Loading", "Please wait...");
new Thread(new Runnable() {
protected void run() {
... //get some data, fill some lists and assign some variables...
runOnUiThread(new Runnable() {
public void run() {
initiateActivity();
}
});
progressDialog.dismiss();
return true;
}
}).start();
}
オリジナルのポスト:読書のための
こんにちはすべて、多くの感謝。 :)
メインUIスレッドとは別のスレッドからアクティビティレイアウトを変更することは本当に不可能ですか?
ProgressDialogの実行中に別のスレッドからテーブルにデータを書き込もうとしています。このような。
public void onCreate(Bundle savedInstanceState) {
...
((ScrollView) findViewById(R.id.contentContainer)).addView(getLayoutInflater().inflate(R.layout.myCustomContentLayout, null));
((TextView)findViewById(R.id.name)).setText(customer.getProperty("name").getValue().toString());
new Thread(new Runnable() {
public void run() {
... //get some data, fill some lists and assign some variables...
initiateActivity();
}
}).start();
progressDialog = ProgressDialog.show(this, "Loading", "Please wait...");
}
private void initiateActivity() {
fillOrderTable();
initiateGestureview();
fillCustServiceForCustomer();
progressDialog.dismiss();
}
しかし、すぐに私は何を変更するか、私は例外を取得テーブルにデータを追加始めると「アクティビティcustomerapp.customercentral.Overviewが漏れた窓[email protected]こともともと。ここ
を添加し、そして、彼らが私の活動の他の部分から再利用されているので、私は本当にたくはスレッド内のinitationメソッドを移動しないでください。
これに対する解決策はありますか?
ビッグありがとう!:)
EDIT:
はこれを試みたが、その後、ProgressDialogが表示されません...
public void onCreate(Bundle savedInstanceState) {
...
((ScrollView) findViewById(R.id.contentContainer)).addView(getLayoutInflater().inflate(R.layout.myCustomContentLayout, null));
((TextView)findViewById(R.id.name)).setText(customer.getProperty("name").getValue().toString());
new Thread(new Runnable() {
public void run() {
runOnUiThread(new Runnable() {
public void run() {
... //get some data, fill some lists and assign some variables...
initiateActivity();
}
});
}
}).start();
progressDialog = ProgressDialog.show(this, "Loading", "Please wait...");
}
同じことが、このために行く...
public void onCreate(Bundle savedInstanceState) {
...
((ScrollView) findViewById(R.id.contentContainer)).addView(getLayoutInflater().inflate(R.layout.myCustomContentLayout, null));
((TextView)findViewById(R.id.name)).setText(customer.getProperty("name").getValue().toString());
new AsyncTask<Boolean, Boolean, Boolean>() {
protected void onPreExecute() {
progressDialog = ProgressDialog.show(this, "Loading", "Please wait...");
}
protected Boolean doInBackground(Boolean... unused) {
runOnUiThread(new Runnable() {
public void run() {
... //get some data, fill some lists and assign some variables...
initiateActivity();
}
});
return true;
}
protected void onPostExecute(Boolean unused) {
progressDialog.dismiss();
}
}).execute(true);
}
本当にスレッドに何かをさせたい場合は、ハンドラを使用できます。しかし要するに、UIスレッドだけがUIに触れることができます。 –