菜单上的 Android 启动器页面

发布于 2024-12-18 10:45:52 字数 298 浏览 3 评论 0原文

我正在我的 droid x2 设备上运行我的 Android 应用程序。该应用程序有一个包含一些项目的菜单,其中之一是主页(应用程序启动时启动的屏幕)。

问题是,当我点击“主页”项目时,它会弹出此菜单,

在此处输入图像描述

我不知道为什么会这样以及我该如何解决它。

它在模拟器上运行良好,我猜测这是需要在设备上设置的东西。

我需要知道是否有人以前见过这个菜单,如果见过的话,它是什么以及什么时候出现?

I'm running my android app on my droid x2 device. this app has a menu with some items, one of which is the Home (the screen that launches when the app starts).

the problem is that when I tap on the Home item it brings up this menu,

enter image description here

I don't know why it does that and how i can fix it.

It works fine on the simulator, I'm gussing this is something that needs to be set up on the device.

I need to know if some has seen this menu before and if so what it is and when it shows up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骷髅 2024-12-25 10:45:52

实际上,我通过向清单文件添加新活动来解决此问题。所以我为启动器活动所做的是

  <activity
        android:label="@string/app_name"
        android:name=".Home" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

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

,我还添加了以下活动,它将充当正常活动,并且在我的菜单选择中,我使用了这个新活动的操作名称。

    <activity
        android:label="@string/app_name"
        android:name=".Home" >
        <intent-filter >
            <action android:name="com.mywebsite.app.HOME" />

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

I actually fix this issue by adding a new activity to my manifest file. so what I had for the launcher activity was

  <activity
        android:label="@string/app_name"
        android:name=".Home" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

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

and I also added the following activity which would act just as a normal activity and in my menu selection I used the action name of this new activity.

    <activity
        android:label="@string/app_name"
        android:name=".Home" >
        <intent-filter >
            <action android:name="com.mywebsite.app.HOME" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文