如何让这个消息泡泡在右侧?

时间:2012-07-19 23:49:57

标签: java android listview

我将此作为列表视图中项目的布局:

<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

*已更改布局*

到目前为止,我所拥有的......还有什么想法?

Example

我希望灰色的气泡看起来像白色的气泡,除了在右侧。

1 个答案:

答案 0 :(得分:0)

我不会筛选您的代码,但基本上您只需要为每条消息添加这样的内容

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="put the right amount of padding in">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="make this your background, make sure to add padding in so that the text view is in the right place, look at 9 patches"
        android:layout_alignParentRight="true"/><!-- Or make this left -->

</RelativeLayout>

不要过于复杂化,只需使用带有9补丁的文本视图,它就会做你想要的。

只需水平交换9补丁,它就会以另一种方式交换