APP_Intents

old/API_Demo 2010. 3. 23. 13:16
[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"));
        }
    };


'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
Posted by jazzlife
,