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

a を使用しLinearLayoutてフィールドを配置します。1 つLinearLayoutは右から左 (コメント領域からユーザー名/画像領域) に分離し、もう 1 つは内側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 に答える