0

我正在开发一个列表应用程序,它根据行 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);
    }

   }
4

2 回答 2

0

您可以将变量设为静态。然后,您可以在需要重置它时重置它,例如在 onCreate 中,如果这是您想要的。

于 2013-04-21T16:22:18.830 回答
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);

在您的第二个活动中检索它:

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

于 2013-04-21T16:23:29.200 回答