プロフィール写真の右側にテキストを設定するために、RelativeLayout で alignTop 属性を使用しようとしています - 写真の上に揃えます。
これは私のレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<!-- Home fragment layout -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.coapps.pico"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_dark_green"
android:orientation="vertical" >
<!-- title layout -->
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/background_fragment_title" >
<!-- profile picture -->
<ImageView
android:id="@+id/fragment_home_profile_picture"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/background_profile_picture"
android:contentDescription="@string/app_name"
android:scaleType="fitXY"
android:src="@drawable/test_pic" />
<!-- user name -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/fragment_home_profile_picture"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@+id/fragment_home_profile_picture"
android:gravity="top"
android:text="Roi Mozer"
android:textColor="@android:color/white"
android:textSize="30sp"/>
</RelativeLayout>
</RelativeLayout>
プレビューでは次のように表示されます (スマートフォンでも同じです)。
ご覧のとおり、名前の中心が写真の上部に配置されています-理由はわかりません..
両方を同じ行に設定するにはどうすればよいですか?
更新: レイアウトの高さを特定の高さに変更すると(コンテンツをラップしないで)、機能します...