我正在尝试创建一个列表活动项目布局,如下所示
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:contentDescription="ss"
android:id="@+id/place_category_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="15dp"
android:paddingTop="10dp" android:src="@drawable/marker"/>
<TextView
android:id="@+id/place_distance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="320" />
<TextView
android:id="@+id/place_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/place_category_icon"
android:text="Place Name"
android:textColor="#FFFF00"
android:textSize="14sp"
android:textStyle="bold" />
</RelativeLayout>
我希望布局显示如下。
我想将其水平居中对齐
7条答案
按热度按时间14ifxucb1#
这将工作:
lxkprmvk2#
如果你想让它居中,那么在TextView中使用**
android:layout_centerVertical="true"
**。tez616oj3#
这肯定会为你工作。
laawzig24#
您可以使用重力与对齐顶部和底部。
jexiocij5#
在您的RelativeLayout中使用此
70gysomp6#
这是你需要的吗
nqwrtyyt7#
要在RelativeLayout中居中显示一个项目,可以使用属性