我正在尝试编写一个Android应用程序,该应用程序在您单击按钮时会记录日志,它将把文本放到控制台中,但是当我将其编译并在运行7.0 API版本24的Galaxy S7 edge上运行时,却出现错误。

I've read that I need to add something into the manifest file但是我不确定需要添加什么。


  致命异常:主要
                                                                                进程:me.adamstephenson.test.test1,PID:16405
                                                                                java.lang.RuntimeException:无法实例化活动ComponentInfo {me.adamstephenson.test.test1 / me.adamstephenson.test.test1.MainActivity}:java.lang.ClassCastException:me.adamstephenson.test.test1.MainActivity无法转换为android.app.Activity


package me.adamstephenson.test.test1;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;

public class MainActivity {
    public class MyActivity extends Activity {
        protected void onCreate(Bundle icicle) {
            super.onCreate(icicle);

            setContentView(R.layout.activity_main);

            final Button button = (Button) findViewById(R.id.RequestKey);
            button.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    Log.d("RequestKey", "Clicked");
                }
            });
        }
    }
}


Source

这是布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="me.adamstephenson.test.test1.MainActivity">

<Button
    android:id="@+id/RequestKey"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button"
    tools:layout_editor_absoluteX="196dp"
    tools:layout_editor_absoluteY="129dp" />
</android.support.constraint.ConstraintLayout>


最后是清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.adamstephenson.test.test1">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

</manifest>

最佳答案

您在清单中指的是错误的类。 MyActivity是活动,而不是MainActivity。将清单更改为以下内容:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="me.adamstephenson.test.test1">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity$MyActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>




您还应该将内部活动设置为static

public class MainActivity {
    public static class MyActivity extends Activity {
        ...
    }
}

09-25 21:57