In Android Application I want to Customize Alert Dialog Box shown below.Alert Dialog contain a Tab Layout With 3 Tabs.
Asked
Active
Viewed 2,293 times
2 Answers
0
Create a XML with the desired views (including the table) and call
View view = // instantiate it. Maybe with LayoutInflater(?)
new AlertDialog.Builder(myContext)
.setView(view);
.create();
Christopher Francisco
- 14,798
- 28
- 86
- 202