当前位置:编程学习 > wap >>

系统自带音乐播放器问题!!!!!

有没有人修改过系统自带的音乐播放器,我现在想在里面添加一些功能,但是初步修改之后,有一些bug。 --------------------编程问答-------------------- 这个问题问得很晕,都不知道啥问题。 --------------------编程问答--------------------
引用 1 楼 sundesheng125 的回复:
这个问题问得很晕,都不知道啥问题。

我放几张图片给你看看,
1,我打开我已经改好的音乐播放器,点击播放列表的时候会出现这个,不知道哪里还需要改?
点击哪一个都是到播放列表
2,分辨率问题,我改的打开之后 自适应到了低分辨率

这个是系统的 --------------------编程问答-------------------- 1, IntentFilter的问题。
2,资源位置的问题。 --------------------编程问答--------------------
引用 3 楼 wensefu 的回复:
1, IntentFilter的问题。
2,资源位置的问题。

这是系统本身的一些资源,不知道为什么会自适应错误

 IntentFilter 是在AndroidManifest.xml里面改么?这是PlaylistBrowserActivity,我把pick去掉的话就会直接跳到系统本身的playlist
<activity android:name="com.a_bin.music.PlaylistBrowserActivity"
                android:label="@string/musicshortcutlabel"
                android:exported="false" >
            <intent-filter>
                <action android:name="android.intent.action.PICK" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.dir/playlist"/>
            </intent-filter>
            <intent-filter>
                
                <!-- 
                <action android:name="android.intent.action.VIEW" />
                 -->
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.dir/playlist"/>
            </intent-filter>
        </activity>
补充:移动开发 ,  Android
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,