コメント欄を作ろうと思っていて、コメントデザインを作ろうとしていますが、各コメントにはテキスト+メンバーアイコン+メンバー名が含まれています...このように書こうとしていますが、メンバー名の上にアイコンが表示され続けます。どんな助けでも大歓迎です。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/txtMemberName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/txtComment"
android:paddingLeft="50dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/txtMemberName"/>
<ImageView
android:id="@+id/imgIcon"
android:paddingTop="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txtMemberName" >
</ImageView>