Android:在TextView上使用setText时出错

Android:在TextView上使用setText时出错,android,nullpointerexception,Android,Nullpointerexception,这里怎么了 堆栈跟踪: public class MainActivity extends Activity { private TextView tx1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tx1= (TextView) fi

这里怎么了

堆栈跟踪:

 public class MainActivity extends Activity {
private TextView tx1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tx1= (TextView) findViewById(R.id.txtexample);
    try{
    tx1.setText("Hello testing");
    Log.i("Correct","No error");
    }
    catch(Exception e){

        Log.i("Error","Error here");
        e.printStackTrace();
    }
}
PS

活动\u main.xml

08-21 06:19:43.713: E/Trace(3883): error opening trace file: No such file or directory (2)
08-21 06:19:43.892: I/Error(3883): Error here
08-21 06:19:43.902: W/System.err(3883): java.lang.NullPointerException
08-21 06:19:43.902: W/System.err(3883):     at com.example.textview.MainActivity.onCreate(MainActivity.java:18)
08-21 06:19:43.902: W/System.err(3883):     at android.app.Activity.performCreate(Activity.java:5104)
08-21 06:19:43.902: W/System.err(3883):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
08-21 06:19:43.902: W/System.err(3883):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
08-21 06:19:43.913: W/System.err(3883):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
08-21 06:19:43.913: W/System.err(3883):     at android.app.ActivityThread.access$600(ActivityThread.java:141)
08-21 06:19:43.913: W/System.err(3883):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
08-21 06:19:43.923: W/System.err(3883):     at android.os.Handler.dispatchMessage(Handler.java:99)
08-21 06:19:43.923: W/System.err(3883):     at android.os.Looper.loop(Looper.java:137)
08-21 06:19:43.923: W/System.err(3883):     at android.app.ActivityThread.main(ActivityThread.java:5041)
08-21 06:19:43.923: W/System.err(3883):     at java.lang.reflect.Method.invokeNative(Native Method)
08-21 06:19:43.923: W/System.err(3883):     at java.lang.reflect.Method.invoke(Method.java:511)
08-21 06:19:43.933: W/System.err(3883):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
08-21 06:19:43.933: W/System.err(3883):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
08-21 06:19:43.943: W/System.err(3883):     at dalvik.system.NativeStart.main(Native Method)
08-21 06:19:44.103: D/(3883): HostConnection::get() New Host Connection established 0x2a15efa0, tid 3883


检查布局活动\u main是否有id为txtexample的文本视图。

您必须在xml文件中进行更改:

<TextView android:name="@+id/txtexample" 
 android:layout_width="wrap_content" 
  android:layout_height="wrap_content" />

改变

检查

<TextView android:id="@+id/txtexample" 

改为

<TextView android:name="@+id/txtexample" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" />


Check layout activity\u main是否有id为txtexample的TextView只需检查xml文件中TextView的id是否为txtexample?您尚未为TextView定义id,请为此定义一个id,然后它应该可以工作谢谢,我没有在那里查看。这完全是我的错。
<TextView android:name="@+id/txtexample" 
<TextView android:id="@+id/txtexample" 
<TextView android:name="@+id/txtexample" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" />
 <TextView android:id="@+id/txtexample" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" />