我正在尝试制作类似弹出窗口的内容,单击片段中的视图时会出现这种情况。我想要这个弹出窗口或其他什么,不要让片段变暗,就像Dialog Fragment那样。 而且我还希望弹出窗口位于单击视图的位置。 如果它有自己的活动和布局会很好,所以我可以做一些自定义的更改。 你能告诉我一些示例代码吗?
答案 0 :(得分:47)
以下内容应符合您的规范。从分配给视图的onClick(View v)
OnClickListener
内部调用此方法:
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
是来自v
的{{1}}。