0

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

<?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>

4

1 回答 1

1

使用 aLinearLayout排列字段。一个LinearLayout将从右到左(用户名/图像区域与评论区域)分开,另一个内部LinearLayout从上到下分开(用户名与用户图像)。

这是代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/txtMemberName" 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

       <ImageView
            android:id="@+id/imgIcon"
            android:paddingTop="30dp"        
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" />

    </LinearLayout>

   <TextView
        android:id="@+id/txtComment" 
        android:paddingLeft="50dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>
于 2013-05-10T22:20:28.770 回答