circle_details_comment_to_layout.xml 812 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:padding="8dp">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:orientation="horizontal">
  10. <ImageView
  11. android:id="@+id/circle_details_comment_to_layout_avatar"
  12. android:layout_width="32dp"
  13. android:layout_height="32dp" />
  14. <TextView
  15. android:id="@+id/circle_details_comment_to_layout_name_and_content"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content" />
  18. </LinearLayout>
  19. </LinearLayout>