我尝试创建类似whatsapp聊天的布局,我有一个9补丁图片,但我不能像下面的图片那样做:
目前看起来像这样:
我的axml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<TextView
android:id="@+id/singleMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_margin="5dip"
android:paddingLeft="10dip"
android:text="Hello bubbles!"
android:textColor="#48026E" />
<TextView
android:id="@+id/dateTime"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:text="00:00"
android:textColor="#48026E" />
答案 0 :(得分:0)
将“线性布局”的方向更改为垂直。 然后使用 gravity 属性将dateTime textview移动到右侧。
同时将 singleMessage 的宽度更改为 match_parent
我将你的xml改为
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/ic_patch"
android:orientation="vertical" >
<TextView
android:id="@+id/singleMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_margin="5dip"
android:paddingLeft="10dip"
android:text="Hello bubbles!"
android:textColor="#48026E" />
<TextView
android:id="@+id/dateTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="00:00"
android:textColor="#48026E" />
</LinearLayout>
它的工作方式完全符合预期。