iphonesmsのようなインターフェースを実装したい:
これで、カスタム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」を使用していますが、リストビュー内では機能しません。結果:
質問メッセージを右側に揃えるにはどうすればよいですか?