如何设置底部的imageview

发布于 2024-10-09 12:14:46 字数 841 浏览 0 评论 0原文

我想在底部设置图像视图。如果可以怎么设置?这是我的 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>

这是我的模拟器屏幕:

alt text

现在我的视频在此模拟器中播放.. .同时我想在这个底部设置imageview....

alt text

i want to set image view in bottom. if possible how to set? this is for my xml file:

<?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>

and this is for my emulator screen:

alt text

now my videos play in this emulator...at the same time i want to set imageview in this bottom....

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

留一抹残留的笑 2024-10-16 12:14:46
<ImageView android:id="@+id/ImageView01"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:layout_below="@+id/VideoView01">
</ImageView>
<ImageView android:id="@+id/ImageView01"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:layout_below="@+id/VideoView01">
</ImageView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文