我正在尝试创建一个评论区并且我正在尝试进行评论设计,每个评论都包含文本+成员图标+成员名称......我正在尝试这样写,但图标一直出现在成员名称上,任何帮助表示赞赏。
<?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>