안드로이드

[안드로이드] 내장 갤러리/음원/음악 불러오기

SojuMan 2011. 2. 17. 16:02
갤러리 불러오기

Uri uri = Uri.parse("content://media/internal/images/media");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

음언 파일 불러오기
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            intent.setType("audio/*");
            startActivity(Intent.createChooser(intent, "Select music"));