Android:带标注的PopUp窗口

时间:2011-03-15 10:40:08

标签: android

我正在尝试显示标注。我的主要布局中有一个按钮。点击此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);

2 个答案:

答案 0 :(得分:4)

看看这里如果你之前没有,这可能对你有帮助。

Android Quick Actions UI Pattern

答案 1 :(得分:0)

这是一个PopupWindow风格的喜欢小部件可能会帮助你。

PointerPopupWindow