配置构建以便App启动,而不是活动

时间:2016-03-03 00:28:32

标签: android android-studio android-gradle android-launcher

我目前正在从Android Studio部署启动我的应用,但随后尝试打开名为EditOrCreateEvent的活动,显示:

enter image description here

即使启动器在登录活动中:

    <activity
        android:name=".app.Session.LoginActivity"
        android:configChanges="orientation|keyboardHidden"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

此外,该应用程序无法自动启动,因此我必须导航并在手机上找到该应用程序才能打开它。

就在几天前,从Android Studio运行后,该应用程序将在手机上打开,没有任何问题,唯一的变化是切换到Gradle 1.5。

如何减轻这种情况?谢谢!

1 个答案:

答案 0 :(得分:1)

需要使用以下步骤更改应用的配置:

1。转到编辑配置... - &gt; Edit Configurations...

2. 。选择应用选项,然后选择常规标签。有启动选项。然后选择默认活动并保存您的应用配置。

Edit Configurations...

DONE。 我希望它可以帮助你。