所以我要做的是定制
MediaPlayer
我的应用程序内的布局。
结果应该是这样的
如图所示,底部的MediaPlayer控制器面板始终位于中间的滚动视图(ScrollView)的顶部。
你可以滚动中间的内容,也可以点击底部的按钮。
那么我能做些什么来实现这一点呢?
我自己的MediaPlayer控制面板
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/Stop1"
style="@android:style/Widget.Holo.Light.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="â¼" />
<Button
android:id="@+id/Play1"
style="@android:style/Widget.Holo.Light.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="â¶" />
<SeekBar
android:id="@+id/Seekbar1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
滚动条内容
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Some text here as title"
android:textColor="#000000"
android:textSize="18sp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/Handrail_ER"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ButtonName 1" />
<Button
android:id="@+id/Handrail_WR"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ButtonName 2" />
<Button
android:id="@+id/Handrail_AUS"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ButtonName 3" />
</LinearLayout>
</LinearLayout>
</ScrollView>
编辑:
这是我的目标
GOAL
编辑2:
源代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="to.epac.factorycraft.drawerlayouttest.KCRstationActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ä¹å»£æ±éµå»£æ"
android:textColor="#000000"
android:textSize="18sp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/AdultTickets"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æ人è»ç¥¨" />
<Button
android:id="@+id/BczOfTheRain"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="天é¨éä¿" />
<Button
android:id="@+id/CrossTrack"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æ©«éè·¯è»" />
<Button
android:id="@+id/LifeAnimals"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æ¬å
¬å¸" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/ER_NoSmoke"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="è«å¿å¸ç
" />
<Button
android:id="@+id/ER_PickPocket"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æé²ææ" />
<Button
android:id="@+id/ER_Slippers"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æé涼é" />
<Button
android:id="@+id/ER_SvcEnd"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="è»ç«éé" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/ER_WetFloor_1"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="å°å¿æ¿æ»å°é¢" />
<Button
android:id="@+id/ER_WetFloor_2"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ä¸è½è»æ¿æ»å°é¢" />
<Button
android:id="@+id/Esclator"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ç¶ä½¿ç¨é»æ¢¯æ" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/Esclator_2"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ä¸è½æ¨æ¢¯ç·æ¶æ" />
<Button
android:id="@+id/Luggage_1"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="大åè¡æ åéæ©" />
<Button
android:id="@+id/TakeCareChild"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ç
§é¡§åè¡å°ç«¥" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/Luggage_2"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="笨éè¡æ åéæ©" />
<Button
android:id="@+id/MetallicBalloon"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="é屬氣ç" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/WetFloor"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="天é¨éä¿ å°é¢æ¿æ»" />
<Button
android:id="@+id/NoAnimals"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="åç©å禽鳥" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/Test_FireAlarm_1"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="å³å° ç«è¦ç³»çµ±" />
<Button
android:id="@+id/Test_FireAlarm_2"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ç¾æ£ ç«è¦ç³»çµ±" />
<Button
android:id="@+id/Test_Machines"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="å³å° é»å系統" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ä¹å»£è¥¿éµå»£æ"
android:textColor="#000000"
android:textSize="18sp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/QueuingBox"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æéæ¨èª" />
<Button
android:id="@+id/WR_Slippers"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="æé涼é" />
<Button
android:id="@+id/NoEat"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="å®å
¨èé©ç°å¢" />
<Button
android:id="@+id/CuCoctopus"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CuCå
«éé" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/SitOnFloor"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="åå¨å¤§å " />
<Button
android:id="@+id/StayClear"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="大å å
¥å£" />
<Button
android:id="@+id/Staircase"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ä¸è½æ¨æ¢¯ å¿å¥è·" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/WR_NoSmake"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="è»ç«å´ç¦å¸ç
" />
<Button
android:id="@+id/WR_PickPocket"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ææ å
ææ失" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/WR_SvcEnd"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="è»ç«éé" />
<Button
android:id="@+id/WR_WetFloor"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ä¸è½è» å°é¢æ¿æ»" />
<Button
android:id="@+id/WR_Esclator"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="é»æ¢¯ å°ç«¥é·è
" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="æ¶æé»æ¢¯èªå廣æ"
android:textColor="#000000"
android:textSize="18sp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/Handrail_ER"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ERè«ç·æ¡æ¶æ" />
<Button
android:id="@+id/Handrail_WR"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="WRè«ç·æ¡æ¶æ" />
<Button
android:id="@+id/Handrail_AUS"
style="@android:style/Widget.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="AUSè«ç·æ¡æ¶æ" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/MediaPlayer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="false"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/Stop1"
style="@android:style/Widget.Holo.Light.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="â¼" />
<Button
android:id="@+id/Play1"
style="@android:style/Widget.Holo.Light.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="â¶" />
<SeekBar
android:id="@+id/Seekbar1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkedButton="@+id/Nonetritone"
android:gravity="right"
android:orientation="horizontal">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="廣ææ示è²" />
<RadioButton
android:id="@+id/Nonetritone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="-ç¡-" />
<RadioButton
android:id="@+id/MTRtritone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="港éµ" />
<RadioButton
android:id="@+id/KCRtritone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ä¹éµ" />
</RadioGroup>
</LinearLayout>
</LinearLayout>
</LinearLayout>
编辑3:
MediaPlayer布局与滚动视图重叠
enter image description here