Ich habe ein Layout mit zwei textViews und einem ImageView.
der erste Text ist links ausgerichtet. Der zweite Text ist ebenfalls links ausgerichtet und befindet sich unter dem ersten Text. Das Bild ist RECHTS ausgerichtet und befindet sich am oberen Rand des ersten Textes und am unteren Rand des zweiten Textes.
Ich habe versucht, ein RelativeLayout für die Aufgabe zu verwenden, aber das Bild weigert sich, nach rechts auszurichten.
Hier ist meine xml
<RelativeLayout
android:id="@+id/NameAndPhoto"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/Names"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/FirstName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/contact_page_name_text_style" >
</TextView>
<TextView
android:id="@+id/LastName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/contact_page_name_text_style" >
</TextView>
</LinearLayout>
<ImageView
android:id="@+id/PersonPhoto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/Names"
android:layout_alignParentRight="true"
android:layout_alignTop="@id/Names"
android:layout_toRightOf="@id/Names"
android:contentDescription="@string/contact_page_photo_content_description"
android:padding="3sp"
android:scaleType="fitCenter" >
</ImageView>
</RelativeLayout>
Bitte beraten Sie mich.
Danke, Ika.