我想在底部设置图片视图。如果可能的话怎么设置?这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<VideoView
android:id="@+id/VideoView01"
android:layout_width="wrap_content"
android:layout_height="500dip"
android:layout_centerVertical="true"/>
<Button
android:text="Back"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
</RelativeLayout>
这是我的模拟器屏幕:
现在我的视频在这个模拟器中播放...同时我想在这个底部设置imageview ....
答案 0 :(得分:2)
<ImageView android:id="@+id/ImageView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/VideoView01">
</ImageView>