- 1
Can anyone help me
Confusing how it works to shows something on application from admin panel. Like i want to show a pop up banner on application when user opens an app.plz help
2 Respuestas
+ 4
Do you mean showing a Custom dialogue.
-Dialogues
https://developer.android.com/guide/topics/ui/dialogs
For creating a dialogue with your own custom view you need to create a separate layout for your dialogue.
Dialogue dialogue=new Dialogue(activity);
//First Request window feature and then set content view
dialogue.setContentView(R.layout.your_layout);
0
Thanks for sharing a link, like this which is like banner image displays on screen when we open application. this will also help me.