Android 菜单主页项目

发布于 2024-12-17 02:25:09 字数 214 浏览 0 评论 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.

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

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

发布评论

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

评论(1

奢欲 2024-12-24 02:25:09

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

  <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 和您的相关数据。
原文