感謝您成爲一個了不起的資源,我有一個關於實施了Android SDK apidemo AlertDialogSamples.java問題。基本上,我想要的AlertDialogSamples類添加到我的應用程序,並在其上呼籲從我的任何活動的各個alertdialogs(即DIALOG_YES_NO_MESSAGE
,DIALOG_PROGRESS
,...)。我很驚訝所有的在線示例在每個活動類中都有alertdialog代碼。機器人實現AlertDialogSamples類
我想這個想法幾次迭代:
public class My1Activity extends SherlockActivity implements View.OnClickListener {
...
AlertDialogSamples alert = new AlertDialogSamples();
...
private void changeEmailCommand(){
alert.showAlertDialog(My1Activity.this, DIALOG_TEXT_ENTRY, title);
然後:
public class AlertDialogSamples extends Activity {
...
public void showAlertDialog(Context context, int i, String title) {
showAlertDialog(context, i, title);
... (rest is existing code and modifying the .setTitle to accept title message)
}
,也沒有運氣得到的alertdialog出現(只是崩潰)
是否有如何用意向去做? ASYNCH?
請在回答中提供描述。 –