I just started learning Android application programming, I follow the instructions on the basics of the official Android framework, but I don’t understand why I have a mistake, but I make an intention, and the application throws me this error.
public class MainActivity extends ActionBarActivity {
public static final String EXTRA_MESSAGE = "com.panagetstudios.androidapp.MESSAGE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void sendMessage(View view){
Intent inte = new Intent(this, DisplayMessageActivity.class);
EditText edittext = (EditText) findViewById(R.id.edit_message);
String text = edittext.getText().toString();
inte.putExtra(EXTRA_MESSAGE, text);
startActivity(inte);
}
}
This is my manifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.panagetstudios.androidapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DisplayMessageActivity"
android:label="@string/title_activity_display_message" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.panagetstudios.androidapp.MainActivity" />
</activity>
</application>
</manifest>
Please help me, I am lost, I can provide you with additional information if necessary.
Hi
source
share