其他分享
首页 > 其他分享> > AlertDialog中的Android选项卡

AlertDialog中的Android选项卡

作者:互联网

我可以在AlertDialog中有选项卡吗?

我已经阅读了很多在线教程,并且通常将意图从一种活动转移到另一种活动中.但是,警报对话框都在单个活动中.

我想在一个警报对话框中有两个选项卡.

解决方法:

Can I have tabs in AlertDialog?

大概您可以在AlertDialog中使用TabHost和TabWidget,使用选项卡的视图.此示例显示活动中的“选项卡视图”:https://github.com/commonsguy/cw-omnibus/tree/master/WidgetCatalog/Tab在您的情况下,您将使用相同的布局,但使用LayoutInflater创建视图,然后将其与AlertDialog.Builder一起使用以创建对话框.

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

这些教程现在已经过时了恕我直言.在选项卡中嵌入活动的整个技术已被弃用.

标签:android-alertdialog,android,tabs,android-intent
来源: https://codeday.me/bug/20191012/1899554.html