Android:如何创建音乐播放器?

时间:2015-11-25 05:02:00

标签: android listview audio-player android-music-player

如何设置显示底部此类型布局的每个页面? 一页进来管理播放和停止歌曲。

enter image description here

3 个答案:

答案 0 :(得分:3)

您可以在Activity中实施底栏,并在活动中为其他布局设置Fragments

以下是从头开始在Android中实施音乐播放器的精彩教程:Create a Music Player on Android

另一个很酷的功能:Android Sliding Up Panel模仿与Google Play音乐相同的功能,同时滑动当前正在播放的音乐。

Android Sliding Up Panel

答案 1 :(得分:0)

您可以通过setVisibility(View.GONE / View.VISIBLE / View.INVISIBLE)以及FrameLayout更改视图。 另一种方式,了解碎片。希望你能发现这有用。

答案 2 :(得分:0)

你可以这样轻松地做到:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button"
        android:layout_alignParentBottom="true" />
    <ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/button">
    </ListView>
</RelativeLayout>