mine_feedback_activity.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.sheishuo.app.common.views.BaseToolbar
  11. android:id="@+id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. app:title="帮助与反馈"
  15. app:left_text="返回"/>
  16. </android.support.design.widget.AppBarLayout>
  17. <LinearLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:padding="16dp"
  21. android:orientation="vertical">
  22. <EditText
  23. android:id="@+id/mine_feedback_ET"
  24. android:layout_width="match_parent"
  25. android:layout_height="300dp" />
  26. <Button
  27. android:id="@+id/mine_feedback_submit_btn"
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:background="@drawable/btn1_selector"
  31. android:text="提交"
  32. android:textColor="@color/white"/>
  33. </LinearLayout>
  34. </LinearLayout>