我正在寻找一种将活动数据传递到对话框的方法。我试图调用showDialog(int);
,但是我没有看到将任何数据传递到对话框的方法。
我需要将一个字符串传递给对话框以显示确认信息:)
干杯
答案 0 :(得分:13)
如果您的目标是Android 2.2(API级别8或更高级别),则可以使用
public final boolean showDialog (int id, Bundle args)
并在Bundle
中传递你的论点。请参阅documentation。
如果您想支持较旧的Android版本,则应将参数保存在Activity
班级成员中,然后通过onPrepareDialog
功能访问它们。请注意,onCreateDialog
不符合您的需求,因为它仅在对话框创建时调用一次。
class MyActivity {
private static int MY_DLG = 1;
private String m_dlgMsg;
private showMyDialog(String msg){
m_dlgMsg = msg;
showDialog(MY_DLG);
}
private doSomething() {
...
showMyDlg("some text");
}
protected void onCreateDialog(int id){
if(id == MY_DLG){
AlertDialog.Builder builder = new AlertDialog.Builder(this);
....
return builder.create();
}
return super.onCreateDialog(id);
}
@Override
protected void onPrepareDialog (int id, Dialog dialog){
if(id == MY_DLG){
AlertDialog adlg = (AlertDialog)dialog;
adlg.setMessage(m_dlgMsg);
} else {
super.onPrepareDialog(id, dialog);
}
}
}
答案 1 :(得分:1)
当您执行showDialog(int)时,将调用Activity的onCreateDialog方法。在那里你必须创建一个对话框实例并将其返回,它将被显示。
然后,您正在创建一个对话框,您可以完全访问类的字段,并可以使用它们的值来调整创建的对话框的参数和内容。
答案 2 :(得分:1)
//`enter code here`I used shared preferences and it worked.
**in your activity:**
//your field: public static final String GAME_PREFERENCES = null;
String template = selectedItem.getProduct().getName();
String num = selectedItem.getNumber();
String id = selectedItem.getId();
String location = selectedItem.getLocationName();
SharedPreferences settings = getSharedPreferences(GAME_PREFERENCES,
MODE_PRIVATE);
SharedPreferences.Editor prefEditor = settings.edit();
prefEditor.putString("template", template);
prefEditor.putString("num", num);
prefEditor.putString("id", id);
prefEditor.putString("location", location);
prefEditor.commit();
**in your dialog class:**
//In my case I needed to add activity because how i created dialog:
public MyDialog(Context context, int theme) {
super(context, theme);
init(context);
}
private void init(Context context) {
setContentView(R.layout.dialog);
this.context = context;
final Activity activity = (Activity) context;
// If you dont call activity you can try context.getpreferences(......)
SharedPreferences prefs = ((Activity) context)
.getPreferences(Context.MODE_PRIVATE);
String template = prefs.getString("template", "");
String num = prefs.getString("num", "");
String id = prefs.getString("id", "");
String location = prefs.getString("location", "");
}`enter code here`
答案 3 :(得分:0)
我知道这个问题已经过时了,但如果您使用的是自定义对话框,则可以使用setArguments
方法。
String myString = "How to do it"
DialogFragment newFragment = new AddUserDialog();
Bundle args = new Bundle();
args.putString("number", myString); //The first parameter is the key that will be used to retrieve the value, which is the second parameter.
newFragment.setArguments(args);
newFragment.show(getSupportFragmentManager(), "add_a_member");