Android - 弹出窗口在片段中未显示

7

我正在创建一个popupWindow,但在调用时它没有显示在我的Fragment上。
下面是我的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;
        }});

在popupwindow对象上调用show方法。 - G_V
好的,它在public void popups()函数里面,在片段上调用popups,但还没有出现,先生。 - Mary
6个回答

9
以下代码可能符合您的规范。从分配给视图的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。


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

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

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

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


那不是一件事。其他的LayoutParams都从ViewGroup.LayoutParams继承了WRAP_CONTENTMATCH_PARENT,它们没有自己的值。 - j__m

0

R.layout.popup的根应该有

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

0

showAsDropDown 之后立即使用以下方式的 update

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

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接