Android 安卓应用程序在点击按钮时停止

Android 安卓应用程序在点击按钮时停止,android,Android,我正在尝试编写一个应用程序,它在主屏幕上有4个菜单按钮。单击每个菜单按钮,将出现一个新屏幕。目前,我只编写代码来满足第一个按钮被点击的需求,但它会导致应用程序崩溃/停止。 我认为问题在于,我没有在Android清单文件中声明公司的活动,但我不知道该如何做。 我正在Eclipse中编写应用程序,到目前为止,我有以下文件/代码集: MainActivity.Java: public class MainActivity extends Activity { public final stat

我正在尝试编写一个应用程序,它在主屏幕上有4个菜单按钮。单击每个菜单按钮,将出现一个新屏幕。目前,我只编写代码来满足第一个按钮被点击的需求,但它会导致应用程序崩溃/停止。
我认为问题在于,我没有在Android清单文件中声明公司的活动,但我不知道该如何做。 我正在Eclipse中编写应用程序,到目前为止,我有以下文件/代码集: MainActivity.Java:

public class MainActivity extends Activity {
    public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        View button = findViewById(R.id.TheCompany);
        button.setOnClickListener(new OnClickListener(){
            public void onClick (View v){
                startIntent();
            }
        });

       //getSupportActionBar().setDisplayHomeAsUpEnabled(true);
       // If your minSdkVersion is 11 or higher, instead use:
       // getActionBar().setDisplayHomeAsUpEnabled(true);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
         // Inflate the menu items for use in the action bar
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.main_activity_actions, menu);
        return super.onCreateOptionsMenu(menu);
    }

    /** Called when the user clicks the Company button */
    private void startIntent() {
        // Do something in response to button
        Intent intent = new Intent(this, TheCompany.class);
        startActivity(intent);
    }
}
活动_main.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"
android:padding="10dp" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="The Company" 
        android:id="@+id/TheCompany"/>

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Services"/>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Contacts" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Structure" />
</LinearLayout>
</LinearLayout>
Android.Manifest看起来像:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

<application
    android:allowBackup="true"        
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:icon="@drawable/logo"
        android:name="com.example.myfirstapp.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="com.example.myfirstapp.DisplayMessageActivity"
        android:label="@string/title_activity_display_message"
        android:parentActivityName="com.example.myfirstapp.MainActivity" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.myfirstapp.MainActivity" />
    </activity>
 </application>
 </manifest>

只需将其添加到清单“应用程序”标记中:


您需要在清单文件中声明每个活动

结果是:

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

<application
    android:allowBackup="true"        
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:icon="@drawable/logo"
        android:name="com.example.myfirstapp.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="com.example.myfirstapp.TheCompany"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.example.myfirstapp.DisplayMessageActivity"
        android:label="@string/title_activity_display_message"
        android:parentActivityName="com.example.myfirstapp.MainActivity" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.myfirstapp.MainActivity" />
    </activity>
 </application>
 </manifest>

您没有在activity_main.xml中创建任何类似“公司”的id,您必须为按钮声明id,然后使用findViewById(…)获取id


“我认为问题在于,我没有在Android清单文件中声明公司的活动,但我不知道该怎么做。”像处理其他
活动一样进行操作。你试过添加它了吗?看看文档怎么样?解释得很清楚。西蒙,谢谢,什么文件?如果我能找到它,我会读的。谢谢!我现在读。谢谢昆汀!我现在明白了!非常感谢!它起作用了。
<activity
    android:name="com.example.myfirstapp.TheCompany"
    android:label="@string/app_name" >
</activity>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

<application
    android:allowBackup="true"        
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:icon="@drawable/logo"
        android:name="com.example.myfirstapp.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="com.example.myfirstapp.TheCompany"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.example.myfirstapp.DisplayMessageActivity"
        android:label="@string/title_activity_display_message"
        android:parentActivityName="com.example.myfirstapp.MainActivity" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.myfirstapp.MainActivity" />
    </activity>
 </application>
 </manifest>
View button = findViewById(R.id.button1);