2015-05-10 54 views
1

我想做一個聊天室泡泡listview,我遇到了一個問題; 右泡沫佈局XML如下如何構建「從右到左」的線性佈局?

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

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

<ImageView 
    android:id="@+id/portrait" 
    android:layout_width="40dip" 
    android:layout_height="40dip" /> 

</LinearLayout> 

,結果看起來像圖片,爲什麼它出門左邊框的

enter image description here

+2

我們強烈建議您使用TextView來存放**複合可繪製**,而不是使用「TextView/ImageView對」。爲**更好的表演** –

回答

1

試試這個:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:card_view="http://schemas.android.com/apk/res-auto" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     > 

     <TextView 
      android:id="@+id/textMsg" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignLeft="@+id/portrait" 
      /> 

     <ImageView 
      android:id="@+id/portrait" 
      android:layout_width="40dip" 
      android:layout_height="40dip" 
      android:layout_alignParentRight="true" 
      /> 

     </RelativeLayout> 
0

試試這個:只需更改android:layout_width="0dp"並添加android:layout_weight="1"

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

    <TextView 
     android:id="@+id/textMsg" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:layout_marginLeft="5dp" 

     /> 

    <ImageView 
     android:id="@+id/portrait" 
     android:layout_width="40dip" 
     android:layout_height="40dip" 
     /> 

</LinearLayout> 
相關問題