Unfortunately (nom aplicatio) has stopped
Bonjour,
Je fais une application android avec Eclipse.
Je n'ai aucune erreur dans mon code , mais sur le simulateur android il ya marqué "Unfortunately Tp1 has stopped"
Voyez vous le problème:
1ére page d'affichage
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
package com.example.t1;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class PageAcc extends Activity implements OnClickListener {
Button btApropos;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btApropos=(Button) findViewById(R.id.apropos);
btApropos.setOnClickListener(this);
}
public void onClick(View v){
// TODO Auto-generated method stub
if(v==btApropos){
Intent IntentApropos= new Intent(this,APropos.class);
startActivity(IntentApropos);
}
}
} |
2éme page:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| package com.example.t1;
import android.app.Activity;
import android.os.Bundle;
public class APropos extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.pageacc);
}
} |
Manisfest.xml
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.t1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.t1.Pageacc"
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>
</manifest> |