当前位置: 首页 > 知识库问答 >
问题:

找不到默认活动,即使它已在清单中声明

锺离高丽
2023-03-14

我还没有在网上找到解决方案。我的所有活动都是声明的,但Android Studio经常会告诉我它找不到它们。它并不总是发生,而且似乎是随机发生的。我已经清理、无效并重新启动、重建,有时这会得到修复,然后在一段时间后再次发生。我在这个项目的团队中工作,我似乎是唯一一个有bug的人:

<?xml version="1.0" encoding="utf-8"?>
<manifest package="fall2018.csc2017.GameCentre"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar">
    <activity android:name=".LoginActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".SlidingTiles.SlidingGameActivity" />
    <activity android:name=".Score.MenuScoreboardsActivity" />
    <activity android:name=".Score.UserScoreboardActivity" />
    <activity android:name=".Score.ScoreScreenActivity" />
    <activity android:name=".Score.GameScoreboardActivity" />
    <activity android:name=".GameLauncherActivity" />
    <activity android:name=".RegisterActivity" />
    <activity android:name=".SlidingTiles.SlidingTilesStartingActivity" />
    <activity android:name=".Simon.SimonGameActivity" />
    <activity android:name=".Simon.SimonStartingActivity" />
    <activity android:name=".ChooseDimensionActivity"></activity>
</application>

这是我的毕业生

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "fall2018.csc2017.GameCentre"
        minSdkVersion 27
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    testOptions {
        unitTests.returnDefaultValues = true
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:support-v4:27.1.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

共有1个答案

淳于慎之
2023-03-14

很难根据您提供的唯一信息来判断确切的问题是什么。但是,您可以尝试找到问题的几件事:

>

  • 请尝试在其他物理设备或模拟器上运行应用程序。如果它修复了,这意味着这是一个设备问题
  • 在所有onCreate methods活动以及活动将启动以下活动的前一个代码段上设置断点,例如:

    Intent-Intent=新的意图(上下文、类名)<意图。setFlags(intFlag)<背景。起始触觉(意图);

    并尝试调试以查看该活动是正在创建还是正在启动。这可能是缩小问题范围的良好开端。祝你好运!

    仅供参考,切换此行:

    <activity android:name=".ChooseDimensionActivity"/>
    

  •  类似资料:
    • 我有这个SpringBoot的代码。它加载mybatis和冬眠。我得到一个异常类型EntityManagerFactory不可用,但它是在这里定义。记录输出包含'xxx'全部打印。 在SpringBoot中,我遇到了以下异常:

    • 我刚刚升级到Android Studio0.2.8,当我尝试编辑运行配置时,出现了一个错误,上面写着“找不到默认活动”。 请让我知道我能做些什么来解决这个问题。

    • 这似乎是明显的合并错误。我正在尝试将现有代码移植到即时应用程序模块。我所尝试的是: > 已将主应用程序模块更改为BaseFeatuRemodule。 创建了新模块CompleteApp。 清空了CompleteAppModule的清单: 我试过重建/无效缓存和重新启动/重新启动studio,但没有帮助。有谁能帮我一下吗?

    • 我在android studio中创建了一个新的项目,当我试图运行它时,它显示缺省活动找不到。我检查了我的清单文件,这不包含任何问题。运行时有红色X标记android studio应用

    • 我刚刚安装了Android Studio0.6.1并从Eclipse导入了一个项目。当我尝试运行项目时,我得到。 我研究了这两个StackOverflow问题: 在Android Studio中找不到默认活动 按照建议,我尝试使缓存无效+重新启动,并确保我的是正确的。两个都不起作用。 我也尝试过这个解决方案,但没有效果: 如何修复这个问题? 在Android Studio0.6.1中是否有与sou

    • 最近我更新了我的android studio到3.2,但当旧的打开项目时,我得到错误“缺省活动找不到”。