Android應用實例之----基於Service與ContentProvider的音樂播放實例!

你們好今天我將爲你們分享基於Service與ContentProvider的音樂播放實例,對於接觸Android有一些時日的人來講,Android的核心也就是Activity,Service,ContentProvider,BroadCastReceiver,以及串聯它們的Intent五大模塊,Activity我就不用多說了,而我將就這個例子來講一下Service,以及ContentProvider.java

Service:android

Android中的服務,它與Activity不一樣,它是不能與用戶交互的,運行在後臺的程序,若是咱們退出應用時,沒有結束進程,它仍然在後臺運行,那咱們何時會用到Service呢?好比咱們播放音樂的時候,有可能想邊聽音樂邊幹些其餘事情,當咱們退出播放音樂的應用,若是不用Service,咱們就聽不到歌了,因此這時候就得用到Service了,又好比當咱們一個應用的數據是經過網絡獲取的,不一樣時間(一段時間)的數據是不一樣的這時候咱們能夠用Service在後臺定時更新,而不用每打開應用的時候在去獲取。數據庫

CotentProvider:網絡

Android中的內容提供者,它讓咱們能夠經過一個URL跨應用獲取數據(一般是SQLite數據庫),我以爲Android這個仍是機制仍是很是不錯的,特別是咱們想獲取Sdcard裏一些數據時,好比咱們想獲取全部Sdcard裏的音頻,視頻,圖片等,咱們只要經過一個URL就能夠輕鬆搞定,其實咱們在開機或者插入Sdcard時,Android會作一些事情,就是它自動建庫,將咱們卡里全部音頻,視頻,圖片等信息存在相應的表中,咱們能夠用DDMS打開看一下以下圖(data/data目錄下),紅線是我手機當前卡創建的數據庫(不一樣卡會創建不一樣的數據庫)app

 

而後咱們能夠將這個數據庫導出,用能夠打開.db的工具打開瀏覽數據庫的相關信息以下圖所示(我這裏打開了音頻的數據表,能夠看到我手機裏全部音頻文件,固然還有數據表字段):ide

 

原本這個應用是我用來寫播放音樂Widget的代碼,可是佈局有點多,我就簡單化了,作了一個比較 簡單的Demo,老規矩Step by Step.工具

 

第一步:新建一個Android工程命名爲MusicDemo.佈局

第二步:候改main.xml佈局文件(我這裏增長了四個按鈕,上一首,播放,下一首,暫停)代碼以下:this

  
  
  
  
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:orientation="vertical" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" 
  6.     > 
  7.     <TextView    
  8.         android:layout_width="fill_parent"   
  9.         android:layout_height="wrap_content"   
  10.         android:text="Welcome to Mr Wei's blog." 
  11.         /> 
  12.     <LinearLayout 
  13.         android:orientation="horizontal" 
  14.         android:layout_width="fill_parent" 
  15.         android:layout_height="wrap_content" 
  16.     > 
  17.         <Button 
  18.             android:id="@+id/previous" 
  19.             android:layout_height="fill_parent" 
  20.             android:layout_width="wrap_content" 
  21.             android:layout_weight="1" 
  22.             android:text="上一首" 
  23.         /> 
  24.         <Button 
  25.             android:id="@+id/play" 
  26.             android:layout_height="fill_parent" 
  27.             android:layout_width="wrap_content" 
  28.             android:layout_weight="1" 
  29.             android:text="播放" 
  30.         /> 
  31.         <Button 
  32.             android:id="@+id/next" 
  33.             android:layout_height="fill_parent" 
  34.             android:layout_width="wrap_content" 
  35.             android:layout_weight="1" 
  36.             android:text="下一首" 
  37.         /> 
  38.         <Button 
  39.             android:id="@+id/pause" 
  40.             android:layout_height="fill_parent" 
  41.             android:layout_width="wrap_content" 
  42.             android:layout_weight="1" 
  43.             android:text="暫停" 
  44.         /> 
  45.     </LinearLayout> 
  46. </LinearLayout> 

第三步:新建一個MusicService.java類,播放音樂都是在這個類裏進行的哦,代碼以下:spa

  
  
  
  
  1. package com.tutor.music;  
  2. import java.io.IOException;  
  3. import android.app.Service;  
  4. import android.content.Intent;  
  5. import android.database.Cursor;  
  6. import android.media.MediaPlayer;  
  7. import android.net.Uri;  
  8. import android.os.IBinder;  
  9. import android.provider.MediaStore;  
  10. import android.widget.Toast;  
  11. public class MusicService extends Service {  
  12.       
  13.     String[] mCursorCols = new String[] {  
  14.             "audio._id AS _id"// index must match IDCOLIDX below  
  15.             MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM,  
  16.             MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA,  
  17.             MediaStore.Audio.Media.MIME_TYPE, MediaStore.Audio.Media.ALBUM_ID,  
  18.             MediaStore.Audio.Media.ARTIST_ID, MediaStore.Audio.Media.DURATION  
  19.     };  
  20.     private MediaPlayer mMediaPlayer;  
  21.     private Cursor mCursor;  
  22.     private int mPlayPosition = 0;  
  23.       
  24.     public static final String PLAY_ACTION = "com.tutor.music.PLAY_ACTION";  
  25.     public static final String PAUSE_ACTION = "com.tutor.music.PAUSE_ACTION";  
  26.     public static final String NEXT_ACTION = "com.tutor.music.NEXT_ACTION";  
  27.     public static final String PREVIOUS_ACTION = "com.tutor.music.PREVIOUS_ACTION";  
  28.     @Override 
  29.     public IBinder onBind(Intent arg0) {  
  30.         // TODO Auto-generated method stub  
  31.         return null;  
  32.     }  
  33.     @Override 
  34.     public void onCreate() {  
  35.         super.onCreate();  
  36.         mMediaPlayer = new MediaPlayer();  
  37.         //經過一個URI能夠獲取全部音頻文件  
  38.         Uri MUSIC_URL = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;  
  39.         //這裏我過濾了一下,由於我機裏有些音頻文件是遊戲音頻,很短  
  40.         //播放不到一秒鐘,我這裏做了處理,默認大於10秒的能夠看做是歌  
  41.         mCursor = getContentResolver().query(MUSIC_URL, mCursorCols, "duration > 10000"nullnull);  
  42.     }  
  43.       
  44.     @Override 
  45.     public void onStart(Intent intent, int startId) {  
  46.         super.onStart(intent, startId);  
  47.           
  48.         String action = intent.getAction();  
  49.         if(action.equals(PLAY_ACTION)){  
  50.             play();  
  51.         }else if(action.equals(PAUSE_ACTION)){  
  52.             pause();  
  53.         }else if(action.equals(NEXT_ACTION)){  
  54.             next();  
  55.         }else if(action.equals(PREVIOUS_ACTION)){  
  56.             previous();  
  57.         }  
  58.     }  
  59.       
  60.     //play the music  
  61.     public void play() {      
  62.         inite();  
  63.     }  
  64.       
  65.     //暫停時,結束服務  
  66.     public void pause() {  
  67.         stopSelf();  
  68.     }  
  69.     //上一首  
  70.     public void previous() {  
  71.         if (mPlayPosition == 0) {  
  72.             mPlayPosition = mCursor.getCount() - 1;  
  73.         } else {  
  74.             mPlayPosition--;  
  75.         }  
  76.         inite();  
  77.     }  
  78.     public void next() {  
  79.         if (mPlayPosition == mCursor.getCount() - 1) {  
  80.             mPlayPosition = 0;  
  81.         } else {  
  82.             mPlayPosition++;  
  83.         }  
  84.         inite();  
  85.     }  
  86.     public void inite() {  
  87.         mMediaPlayer.reset();  
  88.         String dataSource = getDateByPosition(mCursor, mPlayPosition);  
  89.         String info = getInfoByPosition(mCursor, mPlayPosition);  
  90.         //用Toast顯示歌曲信息  
  91.         Toast.makeText(getApplicationContext(), info, Toast.LENGTH_SHORT).show();  
  92.         try {  
  93.             mMediaPlayer.setDataSource(dataSource);  
  94.             mMediaPlayer.prepare();  
  95.             mMediaPlayer.start();  
  96.         } catch (IllegalArgumentException e1) {  
  97.             e1.printStackTrace();  
  98.         } catch (IllegalStateException e1) {  
  99.             e1.printStackTrace();  
  100.         } catch (IOException e1) {  
  101.             e1.printStackTrace();  
  102.         }  
  103.     }  
  104.     //根據位置來獲取歌曲位置  
  105.     public String getDateByPosition(Cursor c,int position){  
  106.         c.moveToPosition(position);  
  107.         int dataColumn = c.getColumnIndex(MediaStore.Audio.Media.DATA);       
  108.         String data = c.getString(dataColumn);  
  109.         return data;  
  110.     }  
  111.     //獲取當前播放歌曲演唱者及歌名  
  112.     public String getInfoByPosition(Cursor c,int position){  
  113.         c.moveToPosition(position);  
  114.         int titleColumn = c.getColumnIndex(MediaStore.Audio.Media.TITLE);  
  115.         int artistColumn = c.getColumnIndex(MediaStore.Audio.Media.ARTIST);  
  116.         String info = c.getString(artistColumn)+" " + c.getString(titleColumn);  
  117.         return info;  
  118.           
  119.     }  
  120.     //服務結束時要釋放MediaPlayer  
  121.     public void onDestroy() {  
  122.         super.onDestroy();  
  123.         mMediaPlayer.release();  
  124.     }  
  125. }  

第四步:修改Musicdemo.java代碼以下(代碼比較簡潔易懂):

  
  
  
  
  1. package com.tutor.music;  
  2. import android.app.Activity;  
  3. import android.content.ComponentName;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.widget.Button;  
  9. public class MusicDemo extends Activity implements OnClickListener {  
  10.       
  11.     private Button mPrevious,mPlay,mNext,mPause;  
  12.     private ComponentName component;  
  13.     public void onCreate(Bundle savedInstanceState) {  
  14.         super.onCreate(savedInstanceState);  
  15.         setContentView(R.layout.main);  
  16.         //oncreate裏代碼一如既往的少  
  17.         setupViews();  
  18.     }  
  19.     //初始化一些工做  
  20.     public void setupViews(){  
  21.         component = new ComponentName(this,  
  22.                 MusicService.class);  
  23.           
  24.         mPrevious = (Button)findViewById(R.id.previous);  
  25.         mPlay = (Button)findViewById(R.id.play);  
  26.         mNext = (Button)findViewById(R.id.next);  
  27.         mPause = (Button)findViewById(R.id.pause);  
  28.           
  29.         mPrevious.setOnClickListener(this);  
  30.         mPlay.setOnClickListener(this);  
  31.         mNext.setOnClickListener(this);  
  32.         mPause.setOnClickListener(this);  
  33.     }  
  34.     //按鈕點擊事件響應  
  35.     public void onClick(View v) {  
  36.         if(v == mPrevious){  
  37.             Intent mIntent = new Intent(MusicService.PREVIOUS_ACTION);  
  38.             mIntent.setComponent(component);  
  39.             startService(mIntent);  
  40.         }else if(v == mPlay){  
  41.             Intent mIntent = new Intent(MusicService.PLAY_ACTION);  
  42.             mIntent.setComponent(component);  
  43.             startService(mIntent);  
  44.         }else if(v == mNext){  
  45.             Intent mIntent = new Intent(MusicService.NEXT_ACTION);  
  46.             mIntent.setComponent(component);  
  47.             startService(mIntent);  
  48.         }else{  
  49.             Intent mIntent = new Intent(MusicService.PAUSE_ACTION);  
  50.             mIntent.setComponent(component);  
  51.             startService(mIntent);  
  52.         }  
  53.           
  54.     }  

第五步:修改AndroidManifest.xml,這裏只是把咱們的MusicService申明進去,否則會報錯(第14行代碼),代碼以下:

  
  
  
  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  3.       package="com.tutor.music" 
  4.       android:versionCode="1" 
  5.       android:versionName="1.0">  
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">  
  7.         <activity android:name=".MusicDemo" 
  8.                   android:label="@string/app_name">  
  9.             <intent-filter>  
  10.                 <action android:name="android.intent.action.MAIN" />  
  11.                 <category android:name="android.intent.category.LAUNCHER" />  
  12.             </intent-filter>  
  13.         </activity>  
  14.     <service android:name=".MusicService" android:exported="true" />  
  15.     </application>  
  16.     <uses-sdk android:minSdkVersion="7" />  
  17. </manifest>  
相關文章
相關標籤/搜索