テキストのサイズに関係なく、タイムスタンプテキスト(画像の「2時間前」)の中央に垂直に配置したいImageView(下のスクリーンショットの時計の画像)があります。
試しましandroid:layout_centerVertical="true"
たが効果がありません。
以下にレイアウトコードを含めました。時計(idcreatedTimeImage)をRelativeLayoutのタイムスタンプテキスト(idcreatedTime)に垂直に中央揃えする正しい方法は何でしょうか?正しい方向へのポインタに感謝します。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:id="@+id/fromPictureSection"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/square_shape_grey_border"
android:padding="1dip"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip" >
<ImageView
android:id="@+id/fromPicture"
android:layout_width="50dip"
android:layout_height="50dip"
android:contentDescription="@null" />
</RelativeLayout>
<TextView
android:id="@+id/fromName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/fromPictureSection"
android:paddingLeft="5dip"
android:paddingRight="10dip"
android:paddingTop="12dip"
android:textAppearance="@style/bodyTextStyle" />
<ImageView
android:id="@+id/createdTimeImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/fromName"
android:layout_toRightOf="@id/fromPictureSection"
android:contentDescription="@null"
android:paddingBottom="0dip"
android:paddingLeft="5dip"
android:paddingTop="0dip"
android:layout_centerVertical="true"
android:src="@drawable/clock" />
<TextView
android:id="@+id/createdTime"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/fromName"
android:layout_toRightOf="@id/createdTimeImage"
android:layout_centerVertical="true"
android:paddingBottom="0dp"
android:paddingLeft="2dip"
android:paddingRight="10dip"
android:paddingTop="0dp"
android:textAppearance="@style/smallGreyTextStyle" />
</RelativeLayout>