编辑:顺便说一句,如果我在范围内将edt4.setText(“ any text”)硬编码,它将显示值
EDIT2:尝试重建/清理项目,这可能是settext方法中的错误,看起来好像im做得对。当我用settext查看其他代码时
EDIT3:startactivityforresult可能是我的答案? ,我提出了与我想尝试的问题有关的另一个问题,我仍然没有找到另一个解决方案,现在已经坚持了一个星期:( 这是我的问题Can i use startActivityForResult , with one activity?
的链接EDIT4:现在尝试使视图可见和不可见
我已经阅读了每一篇有关stackoverflow,dreamincode等相关内容的文章,但找不到任何知道我问题答案的人。
我有一个qr扫描仪,成功扫描后,需要将结果放入名称为editText4的EDIT TEXT字段中,我的代码未引发任何错误,但未显示任何值。
我已在不同的论坛上发帖,但无济于事(https://www.dreamincode.net/forums/topic/412000-settext-is-not-showing-set-value-in-edittext-in-gui/page__st__15__gopid__2372214&#entry2372214) ,就像您看到的注释代码一样。这几乎也是我尝试过的方法,我认为我必须以某种方式将我的handle结果方法放入范围内。
注意:Log.v可以很好地输出结果,但是当我尝试使用其他任何结果时,它根本无法正常工作或无法显示
ps:我是Java的初学者
感谢您的帮助
这是我的主要活动
` public class MainActivity extends Activity implements
ZXingScannerView.ResultHandler {
Button sendButton;
EditText edt4;
EditText edt2;
private ZXingScannerView mScannerView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edt4 = findViewById(R.id.editText4);
mScannerView = findViewById(xmlScannerView);
mScannerView.setFormats(ZXingScannerView.ALL_FORMATS);
mScannerView.setResultHandler(this);
mScannerView.startCamera();
EditText delete2;
Button button3;
button3 = findViewById(R.id.button3);
delete2 = findViewById(R.id.editText2);
final EditText finalEdittext = delete2;
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Clear EditText
finalEdittext.getText().clear();
}
});
EditText delete4;
Button button4;
delete4 = findViewById(editText4);
button4 = findViewById(R.id.button4);
final EditText finalEdittext1 = delete4;
button4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Clear EditText
finalEdittext1.getText().clear();
}
});
}
@Override
public void onPause() {
super.onPause();
mScannerView.stopCamera(); // Stop camera on pause
}
public void onClick(View v){
RelativeLayout someid = findViewById(R.id.someId);
mScannerView.setVisibility(View.VISIBLE);
someid.setVisibility(View.INVISIBLE);
}
// EditText edt4;
@Override
public void handleResult(final Result result) {
//handle result
Log.v("handleResult", result.getText());
edt4 = findViewById(editText4);
edt4.setText(result.getText());
//edt4.setText(String.valueOf(result.getText()));
// edt4.setText(new
StringBuilder().append("Resultaat:").append(result.getText()).toString());
}
`
这是xml:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:background="@mipmap/ic_launcher_foreground">
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true">
<me.dm7.barcodescanner.zxing.ZXingScannerView
android:id="@+id/xmlScannerView"
android:visibility="gone"
android:layout_height="match_parent"
android:layout_width="match_parent" />
<RelativeLayout
android:id="@+id/someId"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/editText4"
android:layout_width="match_parent"
android:layout_height="62dp"
android:layout_marginTop="67dp"
android:ems="10"
android:hint="@string/scan_locatie"
android:inputType="text"
android:text=""
tools:backgroundTint="@android:color/holo_red_light" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/editText4"
android:layout_centerHorizontal="true"
android:background="@android:color/holo_red_light"
android:onClick="onClick"
android:text="@string/scan_qr"
tools:text="scan qr code" />
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="61dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="197dp"
android:ems="10"
android:hint="@string/scan_order"
android:inputType=""
android:visibility="visible"
tools:backgroundTint="@android:color/holo_red_light" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/editText2"
android:layout_centerHorizontal="true"
android:background="@android:color/holo_red_light"
android:onClick="onClick"
android:text="@string/scan_qr"
tools:text="scan qr code" />
<Button
android:id="@+id/sendButton"
android:layout_width="157dp"
android:layout_height="32dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="72dp"
android:background="@android:color/holo_red_light"
android:text="@string/button"
tools:text="Versturen.." />
<Button
android:id="@+id/button3"
android:layout_width="40dp"
android:layout_height="38dp"
android:layout_alignBaseline="@+id/editText2"
android:layout_alignParentEnd="true"
android:background="@android:drawable/ic_delete" />
<Button
android:id="@+id/button4"
android:layout_width="39dp"
android:layout_height="37dp"
android:layout_alignBaseline="@+id/editText4"
android:layout_alignParentEnd="true"
android:background="@android:drawable/ic_delete" />
</RelativeLayout>
EDIT:5还更改了XML,并且main仍然不起作用:(
答案 0 :(得分:3)
尝试删除recreate();
您要在设置值后重新创建活动,因此先前的值会丢失
答案 1 :(得分:1)
我认为result.getText()
仍然是String
,因此您可以更改以下行:
edt4.setText(String.valueOf(result.getText()));
收件人:
edt4.setText(result.getText());
此后,您调用updateScannerData
,它也再次从EditText
写入UI-Thread
。我建议也删除UI-Thread
代码,因为我假设代码仍然在该Thread
上运行。
答案 2 :(得分:0)
您可以使用
edt4.clear();
或
edt4.setText("");