-1
我已經在ImageView中設置了一個圖像,並有它的uri和路徑。 現在我想要在ImageView中單擊該圖像時,它應該彈出或在圖庫中以orignl大小顯示。在ImageView中打開的圖像設置到圖庫上點擊圖像
每個可用的代碼用於從圖庫中拾取圖像,但我想查看圖庫中的已知圖像。 請幫忙。
我已經在ImageView中設置了一個圖像,並有它的uri和路徑。 現在我想要在ImageView中單擊該圖像時,它應該彈出或在圖庫中以orignl大小顯示。在ImageView中打開的圖像設置到圖庫上點擊圖像
每個可用的代碼用於從圖庫中拾取圖像,但我想查看圖庫中的已知圖像。 請幫忙。
組驗證碼上clicklistner:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("filepath"), "image/*");
startActivity(intent);
** **畫廊或'galleryView'? – Gattsu 2014-09-24 06:36:17