如何将对象放在布局的中间。
实际上我的问题是android:layout_below
在使用android:layout_centerInParent
我想要这个:
**更新问题**
我的代码问题&图像:
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/main_center_light" />
<EditText
android:id="@+id/txtSearch" android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_centerInParent="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/bgSearch" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txtSearch"
android:layout_centerHorizontal="true" android:text="Btn" />
</RelativeLayout>
我希望EditText完全位于灯光中间,而下方的按钮
但是android:layout_below
没有用! !!!
答案 0 :(得分:1)
问题在于,布局中的组合规则不会像您期望的那样工作。问题的根源是wrap_content
中的RelativeLayout
高度,这就是各种评论一直告诉您将高度更改为固定值的原因。
考虑您的RelativeLayout
实际上需要哪些信息。它的高度是wrap_content
,所以要知道它的高度,首先它必须布置它的孩子。然而,孩子的位置取决于RelativeLayout
的高度!系统将尝试以适应这种情况,但它通常会使您认为会出现错误。
解决问题的一种方法是避免在wrap_content
的高度使用RelativeLayout
。很难说如果没有其余的布局代码,是否有一个好方法可以做到这一点。
另一种方法是从RelativeLayout
切换到ConstraintLayout
。 ConstraintLayout本质上是一个更好的相对布局,事实证明它可以处理你遇到的这个特殊问题。
您使用的属性略有不同。您没有指定layout_below
,而是指定layout_constraintTop_toBottomOf
(将我的顶部设置为此其他视图的底部)。而不是centerInParent
,您使用了与您的视图边缘匹配的约束组合到父视图的边缘。您可以在此处阅读ConstraintLayout
的全部内容:https://developer.android.com/training/constraint-layout/index.html
这是您的布局,重做为ConstraintLayout
:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/main_center_light"
android:adjustViewBounds="true"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<EditText
android:id="@+id/txtSearch"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/bgSearch"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Btn"
app:layout_constraintTop_toBottomOf="@+id/txtSearch"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
</android.support.constraint.ConstraintLayout>
(我没有你的图像,所以我不得不在飞行中制作一些东西......对不起,&#34;光线&#34;图像非常蹩脚。)
答案 1 :(得分:0)
试试这个:
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/main_center_light" />
<EditText
android:id="@+id/txtSearch"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/bgSearch" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txtSearch" android:layout_centerHorizontal="true"
android:text="Btn" />
</RelativeLayout>