问题描述
- android 布局的优先级问题
-
XML 代码:<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/RelativeLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <RelativeLayout android:id="@+id/relativeLayout2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:visibility="invisible"> <ImageButton android:id="@+id/video_playback_pause" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <SeekBar android:id="@+id/seekbar_video" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/video_playback_pause" android:clickable=""/> </RelativeLayout> <VideoView android:id="@+id/videoView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerInParent="true" /> </RelativeLayout>
现在当RelativeLayout 和 VideoView 重写后,VideoView能显示, RelativeLayout被隐藏。
如何把RelativeLayout 放在VideoView的上面?
还有为什么 seekbar 不能点击?
我发现 layout 的优先级是由创建顺序决定的。
解决方案
android:id="@+id/videoView1"
android:layout_below="@+id/relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true" />
解决方案二:
改了的地方给你加**了
< **LinearLayout** xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="fill_parent"
**android:layout_weight = "0";**
android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:visibility="invisible">
<ImageButton
android:id="@+id/video_playback_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<SeekBar
android:id="@+id/seekbar_video"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_below="@id/video_playback_pause" android:clickable=""/>
</RelativeLayout>
<VideoView
android:id="@+id/videoView1"
**android:layout_weiget ="1";**
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true" />
**</LinearLayout >**
时间: 2024-12-02 18:40:41