2

enter image description here In Android Application I want to Customize Alert Dialog Box shown below.Alert Dialog contain a Tab Layout With 3 Tabs.

Rahul
  • 161
  • 1
  • 11

2 Answers2

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
0

Create a transparent Activity with Tab Layout.. Check this link for creating tab layout clickhere

Check this out for transparent activity clickhere

Community
  • 1
  • 1
sharry
  • 370
  • 1
  • 5
  • 15