Android PopupWindow

ddddddddd多少
        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View inflaterView = inflater.inflate(R.layout.fuel_popup, null);
        PopupWindow popupWindow = new PopupWindow(inflaterView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);
        popupWindow.setBackgroundDrawable(new ColorDrawable(Color.GRAY));
        popupWindow.setOutsideTouchable(true);
        popupWindow.showAtLocation(composerButtonsShowHideButton, Gravity.CENTER, 0, 0);//定位

ceshi

        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View inflaterView = inflater.inflate(R.layout.fuel_popup, null);
        PopupWindow popupWindow = new PopupWindow(inflaterView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);
        popupWindow.setBackgroundDrawable(new ColorDrawable(Color.GRAY));
        popupWindow.setOutsideTouchable(true);
        popupWindow.showAtLocation(composerButtonsShowHideButton, Gravity.CENTER, 0, 0);//定位



你可能感兴趣的:(Android PopupWindow)