我正在尝试在我的活动底部制作一组永久媒体控件。我尝试过扩展MediaController
来做到这一点,但它总是与屏幕重叠,而不是拥有自己的空间。我也尝试在我的布局中定义它,但没有运气。知道我怎么能做到这一点吗?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
...
</ScrollView>
<.MyMediaController
android:id="@+id/myMediaController1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>