我有一个应用程序,我在其中使用蓝牙扫描仪扫描输入。当我当前的意图收到输入时,我设置结果并完成活动,然后启动另一个意图。但是,当我的活动收到输入并关闭时,然后当新活动开始时,它不允许我扫描新输入,而是接受旧输入并继续前进。我该如何阻止这个。这就是我在 onCreate() 中所做的:
barcodeEntry = (EditText) findViewById(R.id.barcode_input);
barcodeEntry.requestFocus();
barcodeEntry.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void afterTextChanged(Editable s) {
Toast toast = Toast.makeText(getApplicationContext(),
"Received Scan", Toast.LENGTH_SHORT);
toast.show();
Intent returnIntent = new Intent();
returnIntent.putExtra(WorkflowUtil.EXTRA_ACTION, barcodeEntry.getText().toString());
setResult(RESULT_OK, returnIntent);
finish();
}
});
这是我在布局中的 EditText 声明的样子:
<EditText
android:id="@+id/barcode_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10dp"
android:background="#000000"
android:enabled="true"
android:inputType="text"
android:textColor="#000000"
android:textSize="20sp"
android:visibility="visible" />
我该如何阻止这个。如果我在加载视图时阻止视图接收焦点,它会起作用吗?