2012-05-30 72 views

回答

2

一種方式是: 使意圖從圖庫顯示圖像:該代碼是:

intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); 
startActivityForResult(intent, TFRequestCodes.GALLERY); 

後覆蓋的方法onActivityResult():

@Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 


     } 
在於

方法,你可以得到圖像ID和任何你想要獲取: ,你也可以在它的活動中顯示:

相關問題