gpt4 book ai didi

java - Android TextView

转载 作者:行者123 更新时间:2023-12-01 19:16:30 24 4
gpt4 key购买 nike

嗨,我是 Android 编程新手,我正在尝试制作一个简单的程序,通过单击按钮来更改文本。这是我的代码:

public class HelloAndroidActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final Button button_scan = (Button) findViewById(R.id.button_scan);

button_scan.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
buttonBeenPressed();
}
});

}

public void buttonBeenPressed(){

final Button button_scan = (Button) findViewById(R.id.button_scan);
TextView tv_barcode = (TextView)findViewById(R.id.textview_barcode);
if (tv_barcode != null){
tv_barcode.setText("been pressed.");
} else {
button_scan.setText("it's null dawg.");
}
}
}

还有我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:text="Scan" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/button_scan"></Button>
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="TextView" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/textview_barcode"></TextView>
</LinearLayout>

但是 TextView 返回 NULL,我不知道为什么。有什么建议么?谢谢。

最佳答案

嗯,我的代码没有任何问题,运行没有任何错误!你正在使用 eclipse 吗?然后尝试清理您的项目。

关于java - Android TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6428322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com