trade_change_priority.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">.
  7. <com.sheishuo.app.common.views.BaseToolbar
  8. android:id="@+id/toolbar"
  9. style="@style/fullToolbarStyle"
  10. android:layout_width="match_parent"
  11. android:layout_height="@dimen/action_bar_height"
  12. android:title="修改置顶"
  13. app:right_text="确定" />
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:gravity="center"
  18. android:orientation="vertical">
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_gravity="center"
  23. android:orientation="vertical"
  24. android:padding="15dp">
  25. <TextView
  26. android:id="@+id/trade_change_priority_tv"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_gravity="center"
  30. android:layout_weight="9"
  31. android:text="x 1 国家道具"
  32. android:textColor="@color/black" />
  33. <SeekBar
  34. android:id="@+id/trade_change_priority_seekBar"
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content"
  37. android:layout_gravity="center"
  38. android:layout_weight="9"
  39. android:max="100"
  40. android:progress="1" />
  41. </LinearLayout>
  42. <TextView
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:text="一天可发布三条"
  46. android:textAlignment="center"
  47. android:textColor="@android:color/holo_red_dark"
  48. android:textSize="10sp" />
  49. </LinearLayout>
  50. </LinearLayout>