这个RelativeLayout 有什么问题吗?

发布于 2024-10-21 10:20:47 字数 1207 浏览 3 评论 0原文

我想在一行中放置三张图像,并在它们下面放置一个或两个视频。 到目前为止,我无法通过相对布局正确定位这三个图像。

它的行为与我期望的完全不同......它只显示一张图片,就好像它是一个 FrameLayout。我可以向您保证图像就位。 java 代码只是简单的 OnCreate - super.OnCreate, setContentView(R.layout.component_name) 。 这种相对布局有什么问题吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent">
    <ImageView 
        android:id="@+id/previous_frame"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:src="@drawable/previous_frame" />
    <ImageView 
        android:id="@+id/catch_frame"
        android:layout_toLeftOf="@+id/previous_frame" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:src="@drawable/catch_frame"
         />
     <ImageView 
        android:id="@+id/next_frame" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:src="@drawable/next_frame"
        android:layout_toLeftOf="@id/catch_frame" 
    /> 
</RelativeLayout>

I want to have three images in one row, and a Video or two below them.
So far, I am unable to correctly position the three images via Relative Layout.

It gets quite different behaviour from what I expect it to be... it shows only one picture, as though it is a FrameLayout.I can assure you the images are in place. And the java code is nothing but straightforward OnCreate - super.OnCreate, setContentView(R.layout.component_name) .
What is wrong with this relative layout?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent">
    <ImageView 
        android:id="@+id/previous_frame"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:src="@drawable/previous_frame" />
    <ImageView 
        android:id="@+id/catch_frame"
        android:layout_toLeftOf="@+id/previous_frame" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:src="@drawable/catch_frame"
         />
     <ImageView 
        android:id="@+id/next_frame" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:src="@drawable/next_frame"
        android:layout_toLeftOf="@id/catch_frame" 
    /> 
</RelativeLayout>

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

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

发布评论

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

评论(1

孤君无依 2024-10-28 10:20:47

检查代码使用 android:toRightOf 而不是 android:toLeftOf..

Check the code use android:toRightOf instead of android:toLeftOf..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文