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>
,結果看起來像圖片,爲什麼它出門左邊框的
我們強烈建議您使用TextView來存放**複合可繪製**,而不是使用「TextView/ImageView對」。爲**更好的表演** –