5

我正在创建一个,但当我调用它时popupWindow它没有显示在我的身上。 这是我的弹出窗口代码:Fragment

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;
        }});
4

6 回答 6

8

以下代码可能适用于您的规范。从分配给视图的 OnClickListener 的 onClick(View v) 内部调用此方法:

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());

}

这里的anchorView 是来自onClick(View v) 的v。

于 2015-01-28T11:39:48.200 回答
3

使用以下代码显示弹出窗口。它将为您工作。

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);
于 2015-01-28T11:39:22.560 回答
2

这是显示和隐藏弹出窗口的示例代码。

    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();
         }
    });
于 2016-07-12T11:53:48.597 回答
1
final PopupWindow popupWindow = new PopupWindow(
        popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

检查您使用的 LayoutParams 是否与视图的父级匹配。例如,如果父级是 LinearLayout,则使用LinearLayout.LayoutParams.WRAP_CONTENT

于 2015-01-28T11:55:41.663 回答
0

的根R.layout.popup应该有

android:layout_width="wrap_content"
android:layout_height="wrap_content"
于 2018-12-04T11:02:58.607 回答
0

只需update在 之后立即使用以下类似showAsDropDown

pop.showAsDropDown(anchor);
pop.update(0,0, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
于 2019-10-02T09:33:56.407 回答