1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="horizontal" 4 android:gravity="top" 5 android:layout_marginTop="10sp" 6 android:layout_marginBottom="10sp" 7 android:layout_width="match_parent" 8 android:layout_height="wrap_content"> 9 <ImageView 10 android:id="@+id/profile_logo" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content"/> 13 14 <LinearLayout 15 android:orientation="vertical" 16 android:layout_weight="1" 17 android:layout_width="0dp" 18 android:layout_height="wrap_content"> 19 20 <TextView 21 android:id="@+id/profile_name" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:textSize="20sp"/> 25 26 <TextView 27 android:id="@+id/profile_detail" 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:layout_marginBottom="10sp" 31 android:textSize="12sp"/> 32 33 </LinearLayout> 34 35</LinearLayout> 36