吹き出しを表示しようとしています。私はメインレイアウトにボタンがあります。 Onclick of this Button
クリックしたボタンをpoitingしているウィンドウのポップアップを表示する必要があります。私はPopupWindow
を使ってみましたが、これは通常のポップアップを示しています。ボタンから出てくる吹き出しのように表示する必要があります。助言がありますか?Android:吹き出しのポップアップウィンドウ
これは、これまで
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);
おかげで、私はそれをチェックアウトします、座っていました。 –