[Intents.java]
private OnClickListener mGetMusicListener = new OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));
}
};
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));
}
};
'old > API_Demo' 카테고리의 다른 글
APP_Menu_InflateFromXML (0) | 2010.03.23 |
---|---|
APP_LauncherShortcuts (0) | 2010.03.23 |
APP_Dialog_AlertDialogSamples (0) | 2010.03.22 |
APP_Alarm_AlarmService (0) | 2010.03.22 |
APP_Alarm_AlarmController (0) | 2010.03.16 |