Android:选项卡中嵌套活动的选项菜单

发布于 2024-09-07 19:19:58 字数 207 浏览 3 评论 0原文

我有一个 TabActivity,其中包含一个 Activity。选择活动的选项卡时,如果按“菜单”按钮,则会在父 TabActivity 中调用 onPrepareOptionsMenu,但不会在所选选项卡的活动上调用。

除非我在选项卡内部单击,否则不会显示选项卡中活动的选项菜单,然后我会调用这两个选项卡(这就是我想要的)。当选择选项卡时,有什么方法可以“聚焦”选项卡中的活动吗?

I have a TabActivity which contains an Activity. When the tab for the activity is selected, if I press the Menu button, onPrepareOptionsMenu is called in the parent TabActivity, but not on the activity for the tab which was selected.

The options menu for the activity in the tab isn't shown unless I click inside the tab, then I get calls to both (which is what I want). Is there any way to 'focus' the activity in the tab when the tab is selected?

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

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

发布评论

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

评论(2

可遇━不可求 2024-09-14 19:19:58

只需将此代码用于所有选项卡活动,无需为 TabHost(主要活动)提供选项菜单,

    /**...........Context Menu........cg.*/
public boolean onCreateOptionsMenu (Menu menu) {
    menu.add(0, 0, Menu.NONE, "Refresh");
    menu.add(0, 1, Menu.NONE, "Exit");
    return true;
}

/**---------- Handles item selections ------------cg */
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case 0:
    System.out.println("Refresh");
    return true;

    case 1:

        System.out.println("Exit");

    return true;

    }
    return false;
}

我希望它会对您有所帮助。

谢谢你,
甘纳帕蒂。

Just use this code for all tab activity without giving option menu for TabHost (Main Activity)

    /**...........Context Menu........cg.*/
public boolean onCreateOptionsMenu (Menu menu) {
    menu.add(0, 0, Menu.NONE, "Refresh");
    menu.add(0, 1, Menu.NONE, "Exit");
    return true;
}

/**---------- Handles item selections ------------cg */
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case 0:
    System.out.println("Refresh");
    return true;

    case 1:

        System.out.println("Exit");

    return true;

    }
    return false;
}

I hope it will help you.

Thank you,
Ganapathy.

依 靠 2024-09-14 19:19:58

我不确定我是否理解这个问题。

如果您想刷新当前选项卡(焦点所在的选项卡),并且菜单来自父级(选项卡),请尝试以下操作:

在您使用的菜单内:

Activity MyActivity = this.getCurrentActivity();

if ( MyClassActivity.class.isInstance(MyActivity) == true )
{
     ((MyClassActivity)MyActivity).Refresh();   
}

您应该在活动中实现刷新功能。

希望这对您有帮助。

阿德里安.

I am not sure I understand the question.

IF you want to refresh the current TAB, the one that is in focus, and the menu is from the parent (Tabs), try this:

Inside the menu you use:

Activity MyActivity = this.getCurrentActivity();

if ( MyClassActivity.class.isInstance(MyActivity) == true )
{
     ((MyClassActivity)MyActivity).Refresh();   
}

You should have a refresh function implemented in your activity.

Hope this helps you.

Adrian.

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