我正在尝试显示标注。我的主要布局中有一个按钮。点击此Button
我需要显示一个窗口弹出窗口,其中箭头指向单击的按钮。我尝试使用PopupWindow
,但是这显示了一个正常的弹出窗口,我需要将它显示为一个标注,从按钮出来。有什么建议吗?
到目前为止这是我的系数
LayoutInflater inflater = getLayoutInflater();
View mView= inflater.inflate(R.layout.lt_popupwindow,(ViewGroup)findViewById(R.id.ltPopUpParent));
View mView2= inflater.inflate(R.layout.main,(ViewGroup)findViewById(R.id.ltMainParent));
PopupWindow mPopupWindow = new PopupWindow(mView,LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT,false);
mPopupWindow.setAnimationStyle(android.R.style.Animation_Dialog);
mPopupWindow.showAtLocation(mView2, Gravity.NO_GRAVITY, 0, 0);
答案 0 :(得分:4)
看看这里如果你之前没有,这可能对你有帮助。
答案 1 :(得分:0)
这是一个PopupWindow风格的喜欢小部件可能会帮助你。