1. 程式人生 > >android intent.setType("type");的含義

android intent.setType("type");的含義

intent.setType(“image/*”);

//intent.setType(“audio/*”); //選擇音訊

//intent.setType(“video/*”); //選擇視訊 (mp4 3gp 是android支援的視訊格式)

//intent.setType(“video/;image/”);//同時選擇視訊和圖片
例如,我要實現獲取手機相簿功能可用如下程式碼:

public void gallery(View view) {

//button屬性為android:onClick="gallery",點選事件
        Intent intent = new Intent(Intent.ACTION_PICK);//intent  action屬性
intent.setType("image/*");//選擇圖片 startActivityForResult(intent, PHOTO_REQUEST_GALLERY); }