我是Android开发的新手,我的代码无法正常工作。以下内容不会更新我在名为otp1的字符串中的文本。我认为这是解雇异常,有没有办法看看它是不是?此外,任何关于它不起作用的提示都会很棒。
package com.josephflynn.HelloWorld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
try {
final TextView textViewToChange = (TextView) findViewById(R.string.otp1);
textViewToChange.setText("otp");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
这是我的main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/otp1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is my first Android Application!" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Add this clickable button!" />
</LinearLayout>
答案 0 :(得分:3)
您需要在此处指定有效的视图ID:
findViewById(R.string.otp1)
你的意思是这样做吗?
findViewById(R.id.otp1)
如果你无法弄明白,也可以发布你的布局。如果您正在尝试查看异常,请删除try / catch。在崩溃之后,查看LogCat(Window - &gt; Show View - &gt; LogCat)。