答案 0 :(得分:3)
您可以在Activity
中实施底栏,并在活动中为其他布局设置Fragments
。
以下是从头开始在Android中实施音乐播放器的精彩教程:Create a Music Player on Android。
另一个很酷的功能:Android Sliding Up Panel模仿与Google Play音乐相同的功能,同时滑动当前正在播放的音乐。
答案 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>