0

我有一个 ImageView,我希望它后面跟着一个 TextView,尽管文本行数多少,它总是与它的垂直中心对齐。

这就是我所说的:http: //i.imgur.com/fsty3hN.jpg

由于我没有找到任何与垂直居中对齐相关的内容,因此文本关于对齐的唯一属性是 ImageView 的 toRightOf。

有人可以帮我解决这个问题吗?

谢谢

4

3 回答 3

8

代替 anImageView和 a TextView,您可以使用复合可绘制对象,它基本上是 aView可以混合两者。在此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" />
于 2013-09-09T19:16:46.537 回答
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>

希望它有效

于 2013-09-09T19:24:43.450 回答
3

设置您的图像和文本所在的布局的重力..您还可以将 textview 的重力设置为垂直居中或水平居中或居中

于 2013-09-09T19:17:44.510 回答