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.
SDカードに一連の画像パスがあり、それらをリストに表示します。onitemclick を画像の視覚化に関連付けたいのですが、独自のアクティビティを作成するのではなく、画像パスを指定してそれを表示する意図があるかどうかを知りたいと思いました。
このソリューションは、イメージのパスがあることを前提としています:
Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File(path)), "image/png"); startActivity(intent);