trade_change_priority.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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="horizontal"
  24. android:padding="8dp">
  25. <SeekBar
  26. android:id="@+id/trade_change_priority_seekBar"
  27. android:layout_width="0dp"
  28. android:layout_height="wrap_content"
  29. android:layout_gravity="center"
  30. android:layout_weight="9"
  31. android:max="100"
  32. android:progress="1" />
  33. <TextView
  34. android:id="@+id/trade_change_priority_tv"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_gravity="center"
  38. android:layout_weight="1"
  39. android:text="x 1 国家道具" />
  40. </LinearLayout>
  41. <TextView
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:text="一天可发布三条,道具数量决定快讯排名"
  45. android:textAlignment="center"
  46. android:textColor="@android:color/holo_red_dark"
  47. android:textSize="10sp" />
  48. </LinearLayout>
  49. </LinearLayout>