Android tabs in AlertDialog

后端 未结 1 1828
执念已碎
执念已碎 2021-01-21 22:27

Can I have tabs in AlertDialog?

I\'ve gone through a lot of online tutorials and they usually place the intent from one activity to another in the tabs. However the aler

相关标签:
1条回答
  • 2021-01-21 23:15

    Can I have tabs in AlertDialog?

    Presumably you can use TabHost and TabWidget in an AlertDialog, using views for the tabs. This sample shows views-as-tabs in an activity: https://github.com/commonsguy/cw-omnibus/tree/master/WidgetCatalog/Tab In your case, you would use the same sort of layout, but use LayoutInflater to create the View that you then use with AlertDialog.Builder to create the dialog.

    I've gone through a lot of online tutorials and they usually place the intent from one activity to another in the tabs.

    Those tutorials are obsolete now IMHO. The whole technique of embedding activities in tabs has been deprecated.

    0 讨论(0)
提交回复
热议问题