android:popup window like facebook?
You can use dialog with setContetnView()
Dialog _dialog = new Dialog(this);
_dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
_dialog.setContentView(R.layout.yourxml);
_dialog.show();
with for this and by using a boolean flag you can get this feature..
精彩评论