I ned to create a custom pop in which i can show any layout containing buttons, textviews, edittexts and any other control but the view has to appear like dropdown/popup. An example of view I want to create is shown in the image below. I know about popup menus, spinners, lists ets but I don't think that these things will help me to create the view shown in the Image
Asked
Active
Viewed 1,034 times
1

Furqan Ali
- 137
- 2
- 13
-
1see [quick action grid menu in android](http://mayanklangalia.blogspot.in/2014/04/how-to-create-quick-action-grid-menu-in.html) probably help – ρяσѕρєя K Dec 17 '14 at 09:26
-
You have to use animations.Its possible in animation concept. – vijay Dec 17 '14 at 09:51
1 Answers
2
You can use Custom Dialogs, with a background image like in the provided image.
Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.custom);
You can get more from this link

droid
- 414
- 2
- 7
- 21
-
Dialog can not give me the view like above like when I have to show them on particular locations . See the image I have given – Furqan Ali Dec 19 '14 at 11:48
-
2Hope this helps. http://stackoverflow.com/questions/5469005/show-alertdialog-in-any-position-of-the-screen – droid Dec 22 '14 at 05:07