message_date_bubble.xml 925 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:background="#0C2040"
  6. android:orientation="vertical"
  7. android:paddingLeft="8dp"
  8. android:paddingTop="5dp"
  9. android:paddingRight="8dp"
  10. android:paddingBottom="5dp">
  11. <LinearLayout
  12. android:id="@+id/message_box"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_centerHorizontal="true"
  16. android:background="@drawable/date_bubble_white">
  17. <TextView
  18. android:id="@+id/message_body"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary" />
  22. </LinearLayout>
  23. </RelativeLayout>