android内部のギャラリーアプリを起動するためには、暗黙的Intentを利用します。
1 2 3 |
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("image/*"); startActivity(intent); |
今回は、ギャラリーを起動するだけなので、ACTION_VIEWを指定。
setTypeはMINE TYPE形式です。
2017年3月12日 Intent
android内部のギャラリーアプリを起動するためには、暗黙的Intentを利用します。
1 2 3 |
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("image/*"); startActivity(intent); |
今回は、ギャラリーを起動するだけなので、ACTION_VIEWを指定。
setTypeはMINE TYPE形式です。
code
more code
~~~~