问题非常简单。我想放置一个ImageView 它与父母左侧和父母水平中心对齐。 这是否可以在不添加其他布局等的情况下实现?
编辑: 这是我想要的图像。并非ImageView应与父级水平中心对齐。 ImageView的高度并不重要。
答案 0 :(得分:3)
所以,我知道你不想要的东西,但这是获得你想要的东西的方法:
<RelativeLayout
android:layout_height="match_parent"
android:layout_width="match_parent" />
<View
android:id="@+id/anchor"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_centerHorizontal="true" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/anchor" />
</RelativeLayout>
预编辑:
我会特别将它放在具有以下属性的RelativeLayout中:
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
... whatever else you need />
我假设你想让它垂直居中,因为它不可能左右对齐。
答案 1 :(得分:2)
它几乎取决于您选择的父布局类型。
你能发布你想要的样子吗?
使您的图像居中可以使用
android:layout_gravity="center"
或
android:layout_gravity="center_horizontal"
如果您将RelativeLayout作为父级,则可以将ImageView与其他附近元素对齐:
android:layout_above="@id/neighbour"
android:layout_alignLeft="@id/who_to_align_left_with"
等等,你有所有方向的属性。
这也可能有用
编辑:
现在我想我明白你想要的东西; 将父级居中使用此属性:
android:layout_gravity="center_horizontal"
并且对于ImageView使用此属性
android:layout_gravity="center|center_vertical"