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,425 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
- 15,672
- 28
- 94
- 206