这是我的捕获图片:
这是我的代码:
<RelativeLayout
android:id="@+id/wrapper"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left">
<TextView
android:id="@+id/timeIn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/messageIn"
android:layout_gravity="center"
android:layout_marginTop="15dip"
android:text="23:23"/>
<TextView
android:id="@+id/messageIn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dip"
android:background="@drawable/bubble_yellow"
android:paddingLeft="10dip"
android:text="HIHIHIHIHIHI" />
</RelativeLayout>
但是,如果文本“HIHIHIHIHIHI”更改为“HIHIHIHIHIHIHIHIHIHIHIHIHIHIHIHIHI”:时间将丢失,气泡将填充父项
即使文本是多行的,我该怎么做才能使时间仍然在气泡的右侧?