如何使MediaController永久停靠

时间:2013-10-22 20:58:31

标签: android

我正在尝试在Activity的底部制作一组永久性的媒体控件。我已尝试扩展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>

0 个答案:

没有答案