activity_feed_back.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/gray_bg"
  6. android:orientation="vertical">
  7. <EditText
  8. android:id="@+id/et_feed_back"
  9. android:layout_width="match_parent"
  10. android:layout_height="202dp"
  11. android:layout_marginLeft="15dp"
  12. android:layout_marginTop="10dp"
  13. android:layout_marginRight="15dp"
  14. android:background="@drawable/corners_stork_gray_white_5dp"
  15. android:gravity="top"
  16. android:hint="@string/hint_please_input_feedback"
  17. android:lineSpacingExtra="6dp"
  18. android:maxLength="1000"
  19. android:paddingLeft="14dp"
  20. android:paddingTop="10dp"
  21. android:paddingRight="14dp"
  22. android:paddingBottom="10dp"
  23. android:textColor="@color/text_black"
  24. android:textColorHint="@color/text_black_66"
  25. android:textSize="@dimen/px36_12sp" />
  26. <Button
  27. android:id="@+id/btn_submit"
  28. android:layout_width="match_parent"
  29. android:layout_height="42dp"
  30. android:layout_marginLeft="14dp"
  31. android:layout_marginTop="29dp"
  32. android:layout_marginRight="14dp"
  33. android:background="@drawable/corners_blue_btn_5dp"
  34. android:enabled="false"
  35. android:text="@string/submit"
  36. android:textColor="@color/white"
  37. android:textSize="@dimen/px48_16sp" />
  38. </LinearLayout>