Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以建议代码在android的对话框中以网格方式(比如3 * 3)显示指定的应用程序图标吗?(单击应用程序图标时,应打开相应的应用程序)
-谢谢你。
创建一个DialogFragment类。在该onCreateDialog方法中,您可以创建一个AlertDialog并将其设置View为您的自定义视图(在本例中为 a GridView)。然后在你的Activity你可以创建一个你的实例DialogFragment并调用show它的方法。
DialogFragment
onCreateDialog
AlertDialog
View
GridView
Activity
show