0
我正在創建一個對話框,但我不知道如何編輯該消息。setMessage(String)方法未定義類型Dialog
Dialog d2 = new Dialog(this);
d2.setTitle("title ok");
d2.setMessage("error here");
d2.show();
我應該使用什麼函數? 非常感謝:)
我正在創建一個對話框,但我不知道如何編輯該消息。setMessage(String)方法未定義類型Dialog
Dialog d2 = new Dialog(this);
d2.setTitle("title ok");
d2.setMessage("error here");
d2.show();
我應該使用什麼函數? 非常感謝:)
使用生成器內部類,你在做什麼,你可能想要一個AlertDialog所以製作一張新AlertDialog.Builder
b = new AlertDialog.Builder(context);
b.setMessage(...);
...
b.build().show()