这个RelativeLayout 有什么问题吗?
我想在一行中放置三张图像,并在它们下面放置一个或两个视频。 到目前为止,我无法通过相对布局正确定位这三个图像。
它的行为与我期望的完全不同......它只显示一张图片,就好像它是一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查代码使用 android:toRightOf 而不是 android:toLeftOf..
Check the code use android:toRightOf instead of android:toLeftOf..