这是我的意图发送数据的代码,但我不想打开另一个活动,我只是想发送数据而不打开它..
Bundle contain = new Bundle();
contain.putString("key4", item);
contain.putString("price", price);
Intent a = new Intent(Searchbydate.this, Searchbyitem.class);
a.putExtras(contain);
startActivity(a);
这里我不想打开这个Searchbyitem.class只是发送数据......
答案 0 :(得分:5)
是的,我也遇到过这个问题。
许多开发人员在通过Intent或Bundle将数据从对话框传递到另一个活动时也遇到了问题。它在检索时从另一个活动返回null。
唯一的解决方案是SharedPreferences。
但你必须将它放在解雇按钮内。(例如:确定/取消等)
通过相同的密钥轻松地从另一个活动中检索数据。不要使用广播意图后面的任何服务。
对话框活动中的代码如下:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setIcon(R.drawable.mailicon);
builder.setTitle(name);
builder.setView(view);
builder.setPositiveButton("Send Request",new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which) {
String mailID = id.getText().toString();
//Here define all your sharedpreferences code with key and value
SharedPreferences prefs = getSharedPreferences("my_prefs", MODE_PRIVATE);
SharedPreferences.Editor edit = prefs.edit();
edit.putString("MID", mailID );
edit.commit();
}
});
从另一个人那里获取这样的数据:
SharedPreferences bb = getSharedPreferences("my_prefs", 0);
String m = bb.getString("NUM", "");
Toast.makeText(this, m, Toast.LENGTH_SHORT).show();
添加一些检查以获得良好的标准。
谢谢
答案 1 :(得分:3)
您也可以使用SharedPreferences
来宣传
答案 2 :(得分:1)
您可能希望使用Service
而不是活动。
读: http://developer.android.com/guide/components/fundamentals.html#Components
答案 3 :(得分:1)