첨부해놓은 파일을 보시면 알다시피 ..
저런 오류가뜹니다..
어디서 오류가 나는지도 모르겠구요 T_T

in.java file ▽
package im.com;

import android.app.Activity;
import android.os.Bundle;
import android.content.Intent;
import android.view.View;
import android.widget.Button;

public class in extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        Button launch = (Button)findViewById(R.id.staa);
        launch.setOnClickListener(new Button.OnClickListener(){  
         public void onClick(View v) {
          Intent intent = new Intent(in.this, rne.class);  
          startActivity(intent);        
         }
        });
     }
}

rne.java file ▽
import android.widget.ImageView;

public class rne extends Activity {

 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        ImageView _Image = (ImageView) findViewById(R.id.ImageView01);
        _Image.setImageResource(R.drawable.tnraus);

     
    
     // TODO Auto-generated method stub
 }

}

저두개를 연결하는데가 문제인것 같기도 한데..
뭐가 문제일까요오

------------- 공지를읽지못하고 올렸네요ㅠㅠ 죄송해요;;

06-03 03:59:25.792: ERROR/AndroidRuntime(246): Uncaught handler: thread main exiting due to uncaught exception
06-03 03:59:25.822: ERROR/AndroidRuntime(246): java.lang.RuntimeException: Unable to start activity ComponentInfo{im.com/im.com.rne}: java.lang.NullPointerException
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread.access$2200(ActivityThread.java:119)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.os.Handler.dispatchMessage(Handler.java:99)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.os.Looper.loop(Looper.java:123)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread.main(ActivityThread.java:4363)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at java.lang.reflect.Method.invokeNative(Native Method)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at java.lang.reflect.Method.invoke(Method.java:521)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at dalvik.system.NativeStart.main(Native Method)
06-03 03:59:25.822: ERROR/AndroidRuntime(246): Caused by: java.lang.NullPointerException
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at im.com.rne.onCreate(rne.java:17)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
06-03 03:59:25.822: ERROR/AndroidRuntime(246):     ... 11 more

 로그 올렸어요 ㅠㅠ