activity_chat.xml 926 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout>
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingHorizontal="29dp"
  7. android:background="@color/app_color_black"
  8. android:paddingVertical="10dp"
  9. android:orientation="vertical">
  10. <TextView
  11. android:id="@+id/title"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:textColor="#2EB242"
  15. android:textSize="10sp" />
  16. <TextView
  17. android:id="@+id/content"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_marginTop="10dp"
  21. android:textColor="#ff40FF5E"
  22. android:textSize="14sp" />
  23. </LinearLayout>
  24. </layout>