Android Studio使启动器无法在华为上运行

时间:2018-07-29 10:18:25

标签: android-studio launcher huawei

我正在尝试在Android Studio中开发家庭启动器,但我停留在第一步,使应用程序检测到主页按钮按下。 androidmanifest.xml:

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

    <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>
                <category android:name="android.intent.category.HOME" />
                <category android:name="android.intent.category.DEFAULT" />
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

我添加了
          到MainActivity标签,我想在按下主屏幕时打开它,但是在我的Huawei Mate 9 Pro上根本无法检测到主屏幕。 我已经在Pixel 2 XL Android模拟器上试用过该应用程序,该应用程序运行正常,我可以按Home键,然后打开应用程序。

那么我需要做一些额外的事情来增加对华为的支持吗?

多谢指教!

0 个答案:

没有答案