将文字与图片对齐

时间:2016-12-23 12:05:34

标签: android xml layout android-recyclerview

我有以下的recyclerview。正如您所看到的,文本未与每行中的图像对齐。

my screenshot

我的xml是

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:id="@+id/relLayout">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:textStyle="bold"
    android:textSize="15dp"
    android:paddingLeft="5dp"
    android:id="@+id/article_title"
    android:layout_toRightOf="@+id/networkImage"/>

<com.android.volley.toolbox.NetworkImageView
    android:layout_width="130dp"
    android:id="@+id/networkImage"
    android:layout_height="120dp"
    />
 </RelativeLayout>

任何想法为什么会发生这种情况?

谢谢,

西奥。

1 个答案:

答案 0 :(得分:1)

android:layout_centerVertical="true"添加属性TextView,它应该垂直居中。