我有一个ImageView,我希望它后面跟着一个TextView,它总是与它的垂直中心对齐,尽管有多行文字。
以下是我所说的:http://i.imgur.com/fsty3hN.jpg
由于我没有找到与垂直居中对齐相关的任何内容,因此文本对齐的唯一属性是右视图。
有人可以帮我解决这个问题吗?
THX
答案 0 :(得分:8)
您可以使用复合drawable,而不是ImageView
和TextView
,它基本上是View
,它们会混合使用。在此View
中,您可以指定gravity
以及图片所在的位置:
<TextView
android:id="@+id/your_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/your_image"
android:gravity="center"
android:text="@string/text" />
答案 1 :(得分:3)
设置图像和文本所在布局的重力。您还可以将文本视图的重力设置为中心垂直或中心水平或中心
答案 2 :(得分:3)
尝试使用TableLayout
并将重力赋予TextView
作为中心
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/eimaget_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/your_image"
/>
<TextView
android:id="@+id/textt_id"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text="text is here"
android:layout_weight="1"
/>
</TableRow>
</TableLayout>
希望它有效