mine_feedback_activity.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <android.support.design.widget.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <com.shuishuo.app.common.views.BaseToolbar
  11. android:id="@+id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. style="@style/fullToolbarStyle"/>
  15. </android.support.design.widget.AppBarLayout>
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:padding="16dp"
  20. android:orientation="vertical">
  21. <EditText
  22. android:id="@+id/mine_feedback_ET"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:hint="请输入要反馈的内容" />
  26. <ImageView
  27. android:id="@+id/mine_feedback_image"
  28. android:layout_width="60dp"
  29. android:layout_height="60dp"
  30. android:adjustViewBounds="true"
  31. android:scaleType="centerCrop"
  32. app:srcCompat="@drawable/chat_01_pressed" />
  33. </LinearLayout>
  34. </LinearLayout>