I am trying to create a popup window like facebook notification. In which when i click it should popup and comenormal position 开发者_如何学Gowhen click again.My Screen shot shows below
I am trying to create a popup window like facebook notification. In which when i click it should popup and come normal position
开发者_如何学Gowhen click again.My Screen shot shows below

Regards Augustine
Please Help me
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..
精彩评论