Android - 避免在onResume与onActivityResult中设置文本字段值的冲突

时间:2010-11-17 03:03:09

标签: java android onresume

我正在编写一个允许用户维护产品列表的Android应用程序。在EnterProductData活动中,用户可以在表单字段中输入有关产品的信息,然后将信息保存到SQLite DB。 EnterProductData活动还允许用户通过条形码扫描仪应用程序启动条形码扫描,以捕获UPC代码。

我遇到的问题是在条形码扫描活动完成后尝试在onActivityResult()中设置UPC文本字段的值并返回该值。最后发生的事情是我的onResume()方法正在调用一个函数(populateFields()),它将文本字段的值设置为当前保存在数据库中的任何值。在 onActivityResult()被调用之后,这似乎正在发生。这意味着扫描的UPC被设置为文本字段值,仅用于之后立即设置的空值。责备的代码行旁边是星号。

我想如果我立即将扫描的UPC保存到onActivityResult()方法中的数据库,我可以避免这个问题,但在我看来,这似乎不是最好的做法。有人可以告诉我应该做什么吗?

EnterProductData.java

public class EnterProductData extends Activity {

    private Button mScanButton;
    private EditText mUPC;
    private Button mSaveButton;
    private Long mRowId;
    private DbAdapter mDbHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mDbHelper = new DbAdapter(this);
        mDbHelper.open();

        setContentView(R.layout.enter_product_data);

        mUPC = (EditText) findViewById(R.id.UPC);
        mScanButton = (Button) findViewById(R.id.scanButton);
        mSaveButton = (Button) findViewById(R.id.saveButton);

        mRowId = (savedInstanceState == null) ? null :
        (Long) savedInstanceState.getSerializable(DbAdapter.KEY_PRODUCT_ROWID);
        if (mRowId == null) {
            Bundle extras = getIntent().getExtras();
            mRowId = extras != null ? extras.getLong(DbAdapter.KEY_PRODUCT_ROWID): null;
        }

        populateFields();

        mScanButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                IntentIntegrator.initiateScan(EnterProductData.this);
            }
        });

        mSaveButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                setResult(RESULT_OK);
                finish();
            }
        });

    }

    private void populateFields() {
        if (mRowId != null) {
            Cursor product = mDbHelper.fetchProduct(mRowId);
            startManagingCursor(product);
            mUPC.setText(product.getString(
                product.getColumnIndexOrThrow(DbAdapter.KEY_UPC))); //******
        }
    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        saveState();
        outState.putSerializable(DbAdapter.KEY_PRODUCT_ROWID, mRowId);
    }

    @Override
    protected void onPause() {
        super.onPause();
        saveState();
    }

    @Override
    protected void onResume() {
        super.onResume();
        populateFields();
    }

    private void saveState() {
     String upc= mUPC.getText().toString();
        if (mRowId == null) {
            long id = mDbHelper.createProduct(mRowId, UPC);
            if (id > 0) {
                mRowId = id;
            }
        } else {
            mDbHelper.updateProduct(mRowId, UPC);
        }
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  switch(requestCode) {
   case IntentIntegrator.REQUEST_CODE: {
    if (resultCode != RESULT_CANCELED) {
     IntentResult scanResult =
     IntentIntegrator.parseActivityResult(requestCode, resultCode, data);
     if (scanResult != null) {
      String upc = scanResult.getContents();
      mUPC.setText(upc);
     }
    }
    break;
   }
  }
 }
}

1 个答案:

答案 0 :(得分:1)

您可以在启动时从数据库中读取值,即在onCreate中读取并存储在成员变量中。需要时更新这些值。退出应用程序时将值存储回数据库。这不仅可以解决您的问题,还可以防止许多数据库交互。