安卓第三次作业

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
        android:name="com.example.musicActivity.WelcomActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    
    <activity android:name=".function1Activity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
     <activity android:name=".function3Activity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
     <activity android:name=".function4Activity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
    <activity android:name=".function2Activity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
    
    <activity android:name=".MusicMenuActivity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
    
    <activity android:name=".MusicListActivity"
              android:label="@string/app_name"
              android:hardwareAccelerated="false"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
    
    <activity android:name=".MusicPlayActivity"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar">
    </activity>
    
    <service android:name="com.example.musicActivity.Service.MusicService"
        android:persistent="true">
        <intent-filter>
    		<action android:name = "com.example.service.musicservices"/>
    	</intent-filter>
    </service>
    
    <service android:name="com.example.equalizer.EqualizerService">
        <intent-filter>
            <action android:name="com.example.EqualizerService"/>
        </intent-filter>  
    </service>
    
    <receiver android:name=".MusicPlayActivity$EqualizerBrocast">
        <intent-filter>
            <action android:name="com.example.equalizer"/>
        </intent-filter>
    </receiver>
    
    <receiver android:name=".MusicListActivity$IndexBrocast">
        <intent-filter>
            <action android:name="getIndex.Brocast"></action>
            <action android:name="Other_getIndex.Brocast"></action>
        </intent-filter>
    </receiver>
    
    <receiver android:name="com.example.headset.HeadSetReceiver" >
        <intent-filter android:priority="2147483647">
            <action android:name="android.intent.action.MEDIA_BUTTON" >
            </action>
        </intent-filter>
    </receiver> 
</application>

代码地址:https://coding.net/u/Zhangbin1500802051/p/Android/git/tree/master
apk地址:https://coding.net/u/Zhangbin1500802051/p/Android/git/blob/master/MusicPlayer.apk

posted @ 2018-12-11 20:18  萌萌哒奇点  阅读(145)  评论(0编辑  收藏  举报