Android: 如何制作音乐播放器?
Android: How to create music player?
如何设置每个页面都显示在底部这种类型的布局中?
一页管理播放和停止歌曲。
您可以通过 setVisibility(View.GONE/View.VISIBLE/View.INVISIBLE) 和 FrameLayout 来更改视图。
另一种方式,了解片段。希望你会发现这有帮助。
您可以在 Activity
中实现底部栏,并且在 activity 中的其他布局应该有 Fragments
。
这是从头开始在 Android 中实现 Music Player 的精彩教程:Create a Music Player on Android.
另一个很酷的功能:Android Sliding Up Panel 模仿与 Google 播放音乐相同的功能,向上滑动当前播放的音乐。
你可以像这样轻松做到:
<?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>
如何设置每个页面都显示在底部这种类型的布局中? 一页管理播放和停止歌曲。
您可以通过 setVisibility(View.GONE/View.VISIBLE/View.INVISIBLE) 和 FrameLayout 来更改视图。 另一种方式,了解片段。希望你会发现这有帮助。
您可以在 Activity
中实现底部栏,并且在 activity 中的其他布局应该有 Fragments
。
这是从头开始在 Android 中实现 Music Player 的精彩教程:Create a Music Player on Android.
另一个很酷的功能:Android Sliding Up Panel 模仿与 Google 播放音乐相同的功能,向上滑动当前播放的音乐。
你可以像这样轻松做到:
<?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>