我将此作为列表视图中项目的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/msgbox_self_default" >
<RelativeLayout
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:paddingLeft="7dip" >
<ImageView android:id="@+id/pending" android:layout_height="fill_parent"
android:layout_width="wrap_content" android:layout_marginLeft="2dip"
android:src="@drawable/ic_sms_mms_pending"
android:visibility="gone"
/>
<TextView
android:id="@+id/body"
android:text="@+id/body"
android:singleLine="false"
android:paddingLeft="@dimen/message_item_text_padding_left_right"
android:paddingRight="@dimen/message_item_text_padding_left_right"
android:paddingTop="@dimen/message_item_text_padding_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:linksClickable="false"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#ff000000"
android:textSize="16sp"
android:layout_alignParentRight="true" />
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@id/body"
android:id="@+id/picture_layout"
android:orientation="vertical"
>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/picture"
android:visibility="gone"
android:maxWidth="178dip" android:maxHeight="178dip"
android:layout_alignParentRight="true"
android:adjustViewBounds="true" android:background="@android:drawable/picture_frame"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
<TextView
android:paddingRight="@dimen/message_item_text_padding_left_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/picture_layout"
android:paddingLeft="3dip"
android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/date"
android:text="@+id/date"
android:singleLine="true"
android:layout_alignParentRight="true" />
</RelativeLayout>
我希望泡沫在右侧。这是消息气泡的布局。我试图把它放在右边,就像 iPhone 对话一样。我已经尝试了所有我能想到的与将其放在右侧而不是左侧有关的事情。有人看到我的布局有什么问题吗?请帮忙!谢谢
** 编辑 **
绿色气泡是我在这张照片中瞄准的那个
http://getandroidstuff.com/wp-content/uploads/2010/12/GO-SMS-Android.jpg
*更改布局*
到目前为止,这就是我所拥有的……还有什么想法吗?
我希望灰色气泡看起来像白色气泡,除了右侧。