开发者

android:popup window like facebook?

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

android:popup window like facebook?

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..

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜