Я хочу разместить текстовое представление справа и в центре тяжести изображения. Для этого я использую Relative Layout. Используя Относительную компоновку, я могу установить Textview справа от изображения. Но не могу установить его в центре. Я имею в виду, что центр находится не внутри ImageView, я хочу поместить Textview в правый центр Imageview (за пределами центра Imageview). Я не могу установить центр. Кто-нибудь, пожалуйста, помогите мне. Я хочу сделать это только в относительной раскладке.
Вот мой xml,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_marginTop="60dp"
android:layout_width="match_parent">
<TextView
android:id="@+id/name_text_view"
android:textSize="20sp"
android:layout_toRightOf="@id/image_view"
android:layout_width="wrap_content"
android:textColor="@color/black"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"/>
<ImageView
android:id="@+id/image_view"
android:layout_marginLeft="30dp"
android:layout_width="50dp"
android:layout_height="50dp"/>
<Button
android:id="@+id/button"
android:layout_centerHorizontal="true"
android:background="@color/blue"
android:textColor="@color/color_white"
android:layout_marginTop="20dp"
android:layout_below="@id/name_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/val_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:layout_marginTop="20dp"
android:textSize="18sp"
android:layout_centerHorizontal="true"
android:layout_below="@id/button"/>
</RelativeLayout>