我正在尝试设置多个按钮,但是这样做似乎有些麻烦。我在同一活动中有2个onClickListener函数。我这样做是对的还是应该以其他方式完成? btnChpt3可以正常工作,但是当我输入btnChpt3_1的onclicklistener时,它一打开就会强制关闭。谢谢。

MainMenu.java

 package com.th3ramr0d.learnar670_1;

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

 public class MainMenu extends Activity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button chapterThree = (Button) findViewById(R.id.btnChpt3);

    chapterThree.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            startActivity(new Intent(MainMenu.this, Chapter3.class));

        }
    });


    Button chapterThree_1 = (Button) findViewById(R.id.btnChpt3_1);

    chapterThree_1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            startActivity(new Intent(MainMenu.this, Chapter3_1.class));

        }
    });

 }


 @Override
 protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
 }

 }


因此,我添加了一个新类来处理子菜单页面上的按钮。但是现在我遇到了以前以前无法打开按钮的相同问题。我猜是因为代码由于某种原因没有被运行。

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

 <uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="21" />

 <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainMenu"
        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=".SubMenuChapter3"
        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=".Chapter3"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.th3ramr0d.learnar670_1.CHAPTER3" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        </activity>



    <activity
        android:name=".Chapter4"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.th3ramr0d.learnar670_1.CHAPTER4" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        </activity>


 </application>

 </manifest>


您可以在这里看到我的.MainMenu启动。我猜这意味着它会在启动时启动。因此该按钮起作用。但是,现在我希望启动与.SubMenuChapter3关联的按钮,并且它什么也不做。在Program runs with no errors but button wont open中,您可以看到我遇到了同样的问题,直到codepg足以告诉我我哪里错了。但是我想使用其中几个子菜单,那么我该怎么做呢?

最佳答案

阅读后的问题是,您引用的是在其他布局中创建的按钮,该按钮没有膨胀。

setContentView(R.layout.activity_main);中,您要夸大activity_main,以便只能对该XML中的按钮和元素使用onclick侦听器。

确保在此xml中添加btnChpt3,或者如果该按钮也应该位于其他布局中,则通过对它进行膨胀来使另一个活动或片段控制该布局。

现在,此方法Button chapterThree = (Button) findViewById(R.id.btnChpt3);返回空指针异常。

10-08 14:54