로그인이 되면 로그인된 정보를 가지고 다음페이지로 넘어가는 화면을 구상중인데요

계속적으로 오류가 떠서 올립니다 ㅜㅜ

startActivity(myintent);

에서 계속 에러가 난다고 뜨는데요 혹시 아시는분 답변좀 해주세요



---------------------------------이벤트발생시 진행되는 코드 --------------------------------


loginBtn.setOnClickListener(new OnClickListener(){

public void onClick(View v) {

//c = getBaseContext();

getLoginInfo();

//Toast.makeText(getBaseContext() , infoList.toString() , 1000).show();

boolean successLogin = false;

for( int i=0; i<infoList.size(); i++){

loginInfo tmp = infoList.get(i);

if( tmp.getId().equals(ID_et.getText().toString()) 

&& tmp.getPw().equals(PW_et.getText().toString())){


successLogin = true;

//Toast.makeText(getBaseContext(), "로그인성공"+tmp.getId()+"로 로그인하셨습니다" ,3000).show();

Intent nextIntent = new Intent(getApplicationContext() , MidllePage.class);

Log.d("tag", "Pre intent");

startActivity(nextIntent);  // 여기서 에러가 나는듯해요 ..

break;

}

}





-------------------------------------넘어가는 액티비티java파일



package org.midllePage;


import java.util.Vector;


import org.androidtown.sns.faceapp.R;


import android.app.Activity;

import android.content.Context;

import android.os.Bundle;

import android.util.Log;

import android.widget.Button;


public class MidllePage extends Activity{


public void onCreate(Bundle savedInstanceState) {

Log.d("tag", "proPage");

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Log.d("tag", "post Page");

}

}




------------------------------------넘어간 xml파일
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="none"
        android:id="@+id/authority"
        />

</LinearLayout>


------------------------------메니페스트
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      android:versionCode="1"
      android:versionName="1.0" package="org.androidtown.sns.faceapp">
    <uses-sdk android:minSdkVersion="8" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
       <activity android:name=".Midllepage"></activity>
        <activity android:name=".loginPage"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>


    <uses-permission android:name="android.permission.INTERNET" />


</manifest>





위에껀 코드구요 , 

메니페스트와 이동하는 엑티비티파일과   xml파일도 뒤져봤는데 문제를 찾을수가 없습니다..

ㅜㅜㅜㅜㅜㅜㅜ

제발요 ㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜㅜ