Android - 无法在Fragment中使用弹出窗口

时间:2014-05-08 10:58:02

标签: android popup fragment

我是android新手。现在我正在尝试创建一个滑块。现在我创建了一个滑块。现在我想在单击操作栏中的图标时显示弹出窗口。 当我扩展活动时,弹出窗口工作正常。但是当我更改为范围片段时,我无法使用弹出窗口。请在片段页面中告诉我任何想法或弹出窗口的任何示例。

public void popup_window() {
    View menuItemView = findViewById(R.id.menu_popup);
    PopupMenu popupMenu = new PopupMenu(this, menuItemView);
    popupMenu.getMenuInflater().inflate(R.menu.list_, popupMenu.getMenu());

    popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
        public boolean onMenuItemClick(MenuItem item) {
            switch (item.getItemId()) {  
                case R.id.action_ticket:  
                    Intent intdn = new Intent(List_Activity.this,List_Activity.class);
                    intdn.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK);                   
                    startActivity(intdn);
                  break;    

                case R.id.action_survey:  
                    Toast.makeText(getApplicationContext(),"Under Construction ",Toast.LENGTH_LONG).show();  
                    break;      
                case R.id.action_service_request:  
                    Toast.makeText(getApplicationContext(),"Under Construction ",Toast.LENGTH_LONG).show();  
                    break;  

                  default: 
                      break;  

            }  
             return true;
        }
    });
    popupMenu.show();
}

我收到错误: - Error Image

很多错误。请帮我解决这个问题。提前谢谢。

LogCat错误消息: -

    FATAL EXCEPTION: main
java.lang.IllegalStateException: MenuPopupHelper cannot be used without an anchor
at com.android.internal.view.menu.MenuPopupHelper.show(MenuPopupHelper.java:101)
at android.widget.PopupMenu.show(PopupMenu.java:108)
at com.example.sample.Testing_Fragment1.popup_window(Testing_Fragment1.java:262)
at com.example.sample.Testing_Fragment1.onOptionsItemSelected(Testing_Fragment1.java:227)
at android.app.Fragment.performOptionsItemSelected(Fragment.java:1801)
at android.app.FragmentManagerImpl.dispatchOptionsItemSelected(FragmentManager.java:1959)
at android.app.Activity.onMenuItemSelected(Activity.java:2551)
at com.android.internal.policy.impl.PhoneWindow.onMenuItemSelected(PhoneWindow.java:980)
at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:735)
at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:149)
at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:874)
at com.android.internal.view.menu.ActionMenuView.invokeItem(ActionMenuView.java:547)
at com.android.internal.view.menu.ActionMenuItemView.onClick(ActionMenuItemView.java:115)
at android.view.View.performClick(View.java:4204)
at android.view.View$PerformClick.run(View.java:17355)
at android.os.Handler.handleCallback(Handler.java:725)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5041)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
at dalvik.system.NativeStart.main(Native Method)

6 个答案:

答案 0 :(得分:11)

  

当我扩展活动时,弹出窗口工作正常。但是当我改变的时候   进入范围片段我不能使用弹出窗口。

您可以直接为findViewById()致电Activity,但是当您使用Fragment时,您需要一个视图对象来呼叫findViewById()。 例如。 。getView()findViewById();

  1. View - findViewById()

  2. Activity - findViewById()

    getView() - 这将返回片段的根视图,您可以调用findViewById()

  3.   

    new PopupMenu(this,menuItemView);

    此处弹出菜单需要Context,作为第一个参数传递。如果您正在使用活动,则可以使用this,但在片段中,您需要使用getActivity()代替this

    PopupMenu(Context context, View anchor)

      

    new Intent(List_Activity.this,List_Activity.class);

    这是错误的,实际上它应该是包上下文和类

    packageContext ---实现此类的应用程序包的上下文。

    class ---用于意图的组件类。

    只要您希望getActivity().getApplicationContext()显示getApplicationContext()

    ,就可以使用Toast代替Fragment

    所以你的代码看起来像

    public void popup_window() {
    
    View menuItemView = getView().findViewById(R.id.menu_popup);
    PopupMenu popupMenu = new PopupMenu(getActivity(), menuItemView);
    popupMenu.getMenuInflater().inflate(R.menu.list_, popupMenu.getMenu());
    
    popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
        public boolean onMenuItemClick(MenuItem item) {
            switch (item.getItemId()) {  
                case R.id.action_ticket:  
                    Intent intdn = new Intent(getActivity(),List_Activity.class); // Your nxt activity name instead of List_Activity
                    intdn.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK);                   
                    getActivity().startActivity(intdn);
                  break;    
    
                case R.id.action_survey:  
                    Toast.makeText(getActivity().getApplicationContext(),"Under Construction ",Toast.LENGTH_LONG).show();  
                    break;      
                case R.id.action_service_request:  
                    Toast.makeText(getActivity().getApplicationContext(),"Under Construction ",Toast.LENGTH_LONG).show();  
                    break;  
    
                  default: 
                      break;  
    
            }  
             return true;
        }
    });
    popupMenu.show();
    }
    

    更新:

      

    java.lang.IllegalStateException:无法使用MenuPopupHelper   没有锚

    你得到这个异常,因为我猜这个弹出窗口的Anchor视图是null。因此,每当系统尝试显示弹出窗口时,它都会为您提供此异常。

    只需查看tryShow()即可 MenuPopupHelper

    另请参阅 Maxim Zaslavsky

    上的this post

答案 1 :(得分:0)

您可以使用而不是: getApplicationContext()

使用此: My_Activity.this

答案 2 :(得分:0)

在片段中使用getActivity().getApplicationContext()

答案 3 :(得分:0)

问题是弹出窗口或对话框与'活动' ,你需要这里的Activity上下文。但这指的是你的片段'。

一种方法是在创建Fragment实例时传递Activity上下文,或使用将返回活动上下文的getActivity Fragment方法。

所以改变你的代码

     public void popup_window() {
View menuItemView = getView().findViewById(R.id.menu_popup);
PopupMenu popupMenu = new PopupMenu(getActivity(), menuItemView);
popupMenu.getMenuInflater().inflate(R.menu.list_, popupMenu.getMenu());

popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
    public boolean onMenuItemClick(MenuItem item) {
        switch (item.getItemId()) {  
            case R.id.action_ticket:  
                Intent intdn = new Intent(getActivity(),List_Activity.class);
                intdn.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK);                   
                startActivity(intdn);
              break;    

            case R.id.action_survey:  
                Toast.makeText(getActivity(),"Under Construction ",Toast.LENGTH_LONG).show();  
                break;      
            case R.id.action_service_request:  
                Toast.makeText(getActivity(),"Under Construction ",Toast.LENGTH_LONG).show();  
                break;  

              default: 
                  break;  

        }  
         return true;
       }
    });
    popupMenu.show();
 }

答案 4 :(得分:0)

试试这个:

 PopupMenu popupMenu = new PopupMenu(getActivity, menuItemView);

答案 5 :(得分:0)

PopupMenus容易发生的另一个问题是调用菜单项隐藏在三个点(溢出菜单)中。这些条目无法锚定弹出菜单。

这是我首先得到的java.lang.IllegalStateException:没有锚点就不能使用MenuPopupHelper:

<item android:id="@+id/menu_entry_to_show_popupmenu"
 app:showAsAction="ifRoom" />

我需要的是

<item android:id="@+id/menu_entry_to_show_popupmenu"
 app:showAsAction="always" />

我从活动中获得的完整popupmenu设置功能如下所示:

PopupMenu popup = new PopupMenu(getActivity(), getActivity().findViewById(R.id.menu_filter));
    popup.getMenuInflater().inflate(R.menu.filter_tasks, popup.getMenu());
    popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
    [...]
    popup.show();
}