我正在开发一个列表应用程序,它根据行ID从数据库中获取信息。在此页面上还有一个添加事务按钮,单击该按钮可加载新活动。
如果用户点击顶部导航上的主页按钮但是当它返回我的变量时,此活动使用NavUtils类返回列表。我可以在两个屏幕之间保持这个变量完整,甚至可以用NatUtils.navigateUpFromSameTask()传回吗?
public class DisplayAccountActivity extends Activity {
private long account_id;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_account);
// Show the Up button in the action bar.
setupActionBar();
// Receive the intent
Intent intent = getIntent();
account_id = intent.getLongExtra(MainActivity.ACCOUNT_ID, 0);
}
public void addTransaction (View view) {
Intent intent = new Intent(this, AddTransactionActivity.class);
startActivity(intent);
}
/**
* Set up the {@link android.app.ActionBar}, if the API is available.
*/
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private void setupActionBar() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
protected void onResume() {
super.onResume();
System.out.println("On resume the ID is: "+this.account_id);
}
@Override
protected void onPause() {
super.onPause();
System.out.println("On pause the ID is: "+this.account_id);
}
}
答案 0 :(得分:0)
您可以将变量设为静态。然后,您可以在需要重置时重置它,例如在onCreate中,如果这是您想要的。
答案 1 :(得分:0)
您可以使用意图在激活之间传递数据。
在您的第一个活动中:
Intent i= new Intent("com.example.secondActivity");
// Package name and activity
// Intent i= new Intent(MainActivity.this,SecondActivity.Class);
// Explicit intents
i.putExtra("key",mystring);
// Parameter 1 is the key
// Parameter 2 is your value
startActiivty(i);
在你的第二个Activity中检索它:
Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("key");
//get the value based on the key
}
编辑:
如果您希望值继续使用共享首选项
http://developer.android.com/guide/topics/data/data-storage.html#pref