运行我的应用程序时,它总是进入编辑配置。 我在here找到了一个解决方案但在开放模块设置中找不到源选项卡。有没有其他方法可以解决这个问题?我正在使用最新版本的android studio。 感谢您的帮助。
这是我的AndroidManifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mobapp.yurin.hkt">
<application android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan">
</activity>
</application>
答案 0 :(得分:2)
您没有为应用程序设置默认启动器。试试这个:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>