Android - Popup window not showing in fragment

半腔热情 提交于 2020-01-06 02:33:15

问题


I'm creating a popupWindow but it is not showing on my Fragment when I call it.
Here is my code for the popupWindow:

LayoutInflater layoutInflater = 
            (LayoutInflater)getActivity()
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View popupView = layoutInflater.inflate(R.layout.popup, null);
    final PopupWindow popupWindow = new PopupWindow(
            popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);


    Button btnDismiss = (Button)popupView.findViewById(R.id.dismiss);
    btnDismiss.setOnClickListener(new Button.OnClickListener(){

        @Override
        public void onClick(View v) {
            popupWindow.dismiss();
        }});

    popupWindow.showAsDropDown(getView());
    //popupWindow.showAsDropDown(btnOpenPopup, 50, -30);
    //popupWindow.showAsDropDown(getCurrentFocus());
    popupView.setOnTouchListener(new OnTouchListener() {
        int orgX, orgY;
        int offsetX, offsetY;

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                orgX = (int) event.getX();
                orgY = (int) event.getY();
                break;
            case MotionEvent.ACTION_MOVE:
                offsetX = (int)event.getRawX() - orgX;
                offsetY = (int)event.getRawY() - orgY;
                popupWindow.update(offsetX, offsetY, -1, -1, true);
                break;
            }
            return true;
        }});

回答1:


The following code may be work your specification. Call this method from inside onClick(View v) of OnClickListener assigned to the View:

public void showPopup(View anchorView) {

    View popupView = getLayoutInflater().inflate(R.layout.popup_layout, null);

    PopupWindow popupWindow = new PopupWindow(popupView, 
                           LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

    // Example: If you have a TextView inside `popup_layout.xml`    
    TextView tv = (TextView) popupView.findViewById(R.id.tv);

    tv.setText(....);

    // Initialize more widgets from `popup_layout.xml`
    ....
    ....

    // If the PopupWindow should be focusable
    popupWindow.setFocusable(true);

    // If you need the PopupWindow to dismiss when when touched outside 
    popupWindow.setBackgroundDrawable(new ColorDrawable());

    int location[] = new int[2];

    // Get the View's(the one that was clicked in the Fragment) location
    anchorView.getLocationOnScreen(location);

    // Using location, the PopupWindow will be displayed right under anchorView
    popupWindow.showAtLocation(anchorView, Gravity.NO_GRAVITY, 
                                     location[0], location[1] + anchorView.getHeight());

}

here anchorView is the v from onClick(View v).




回答2:


Use following code to show Pop Up window.It will work for you.

View popupView = layoutInflater.inflate(R.layout.popup, null);
    final PopupWindow popupWindow = new PopupWindow(
            popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
popupWindow.showAtLocation(popupView , Gravity.CENTER, 0, 0);



回答3:


final PopupWindow popupWindow = new PopupWindow(
        popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

Check the LayoutParams you are using is matching with the parent of the view. e.g. use if the parent is a LinearLayout, use LinearLayout.LayoutParams.WRAP_CONTENT




回答4:


Here is the sample code to show and hide a popup window.

    TextView popupWindowTextView = new TextView(getActivity()); 
    Button popupWindowButton = new Button(getActivity()); 
    LinearLayout layout = new LinearLayout(getActivity()); 
    popupWindowButton.setText("OK"); 
    popupWindowTextView.setText("Popup Window. Click on OK to dismiss."); 
    popupWindowTextView.setPadding(0, 0, 0, 20); 
    layout.setOrientation(1); 
    layout.addView(popupWindowTextView); 
    layout.addView(popupWindowButton);

    int popupWindowWidth = 200;
    int popupWindowHeight = 150;
    final PopupWindow popupWindow = new PopupWindow(context);
    popupWindow.setContentView(layout);
    popupWindow.setWidth(popupWidth);
    popupWindow.setHeight(popupHeight);
    popupWindow.setFocusable(true);
    popupWindow.showAtLocation(layout, Gravity.NO_GRAVITY,    popupWindowWidth, popupWindowHeight);
    popupWindowButton.setOnClickListener(new OnClickListener() {

         @Override
         public void onClick(View v) {
           popupWindow.dismiss();
         }
    });



回答5:


The root of R.layout.popup should have

android:layout_width="wrap_content"
android:layout_height="wrap_content"



回答6:


Just use the update like below immediately after the showAsDropDown :

pop.showAsDropDown(anchor);
pop.update(0,0, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);


来源:https://stackoverflow.com/questions/28191127/android-popup-window-not-showing-in-fragment

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!