运行 Android 模拟器没有给出任何结果

问题描述 投票:0回答:1

我有一个问题,说实话我不明白我做错了什么.. 每次我尝试在 Android 模拟器中运行我的布局时,它都会向我显示手机本身的主菜单。

我尝试编辑AndroidManifest.xml中的代码,但它不起作用,我更换了设备,冷启动,重新启动应用程序并删除了模拟器,但都不起作用。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.TATTOFOUNDLER"
        tools:targetApi="31">
        <activity
            android:theme="@style/LoginPage"
            android:windowSoftInputMode="adjustResize"
            android:name=".LoginActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".RegisterActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".LoginActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>


android kotlin android-studio android-emulator
1个回答
0
投票
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools">
<application
    android:allowBackup="true"
    android:dataExtractionRules="@xml/data_extraction_rules"
    android:fullBackupContent="@xml/backup_rules"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.TATTOFOUNDLER"
    tools:targetApi="31">
    <activity
        android:theme="@style/LoginPage"
        android:windowSoftInputMode="adjustResize"
        android:name=".LoginActivity"
        android:exported="false">
    </activity>
    <activity
        android:name=".RegisterActivity"
        android:exported="false">
    </activity>
    <activity
        android:name=".LoginActivity"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
        </activity>
       </application>

     </manifest>
© www.soinside.com 2019 - 2024. All rights reserved.