启动Gallery应用Kotlin

时间:2018-07-26 14:40:48

标签: android kotlin gallery

我想知道如何在Kotlin中启动android设备的Gallery应用程序。

我发现的所有东西都是关于选择器的(我犯了这个错误,我以为是画廊,但是是选择器...)。

解决方案:

查看此帖子:https://stackoverflow.com/a/23821227/9192925

Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_VIEW);  
intent.setType("image/*");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

0 个答案:

没有答案