我想实现像iphone sms这样的接口:
现在我有我的自定义 ChatAdapter 的聊天列表视图,传入和传出消息从不同的布局膨胀:
输出布局:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/question_bubble"
android:paddingBottom="10dp"
android:paddingLeft="20dp"
android:paddingRight="27dp"
android:paddingTop="10dp"
android:textColor="@color/BlackColor"
android:textSize="18sp" />
传入布局:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:autoLink="all"
android:background="@drawable/answer_bubble"
android:paddingLeft="27dp"
android:paddingRight="20dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:textColor="@color/BlackColor"
android:textSize="18sp"/>
我使用“layout_gravity”,但它在列表视图中不起作用。结果:
如何将问题消息对齐到右侧?