dialog_send_msg.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/cl"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <androidx.constraintlayout.widget.ConstraintLayout
  8. app:layout_constraintBottom_toBottomOf="parent"
  9. android:background="#f7f7f7"
  10. android:layout_width="match_parent"
  11. android:layout_height="48dp">
  12. <EditText
  13. android:id="@+id/et"
  14. android:layout_margin="8dp"
  15. android:background="#fff"
  16. app:layout_constraintStart_toStartOf="parent"
  17. app:layout_constraintEnd_toStartOf="@+id/ivSend"
  18. android:layout_width="0dp"
  19. android:layout_height="match_parent"/>
  20. <ImageView
  21. android:id="@+id/ivSend"
  22. app:layout_constraintTop_toTopOf="parent"
  23. app:layout_constraintStart_toEndOf="@+id/et"
  24. app:layout_constraintEnd_toEndOf="parent"
  25. android:src="@mipmap/send_nable"
  26. android:background="#fff"
  27. android:layout_margin="8dp"
  28. android:layout_width="wrap_content"
  29. android:layout_height="match_parent"/>
  30. </androidx.constraintlayout.widget.ConstraintLayout>
  31. </androidx.constraintlayout.widget.ConstraintLayout>