我想從數據庫中獲取圖像並顯示在圖庫或其他可以顯示圖像的應用程序中可以爲該圖像設置一個uri?如何在Android圖庫中的圖庫中打開位圖圖片
,我收到了從圖像數據庫是這樣的:
公共位圖retrive(字符串表,字符串noeDastor,詮釋行){ 光標CUR = mydb.rawQuery(「SELECT * FROM 」+表+「,其中noeDastor = '「+ noeDastor +」'「,null); cur.moveToPosition(row); photo = cur.getBlob(5);ByteArrayInputStream imageStream = new ByteArrayInputStream(photo); 位圖theImage = BitmapFactory.decodeStream(imageStream); return theImage; }
,我想表現出的手機畫廊theImage ...
格式化您的代碼:) – JohanShogun
你有任何輸出代碼,你已經嘗試過? –