trade_change_priority.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <com.sheishuo.app.common.views.BaseToolbar
  8. android:id="@+id/toolbar"
  9. android:layout_width="match_parent"
  10. android:layout_height="@dimen/action_bar_height"
  11. style="@style/fullToolbarStyle"
  12. android:title="修改置顶"
  13. app:right_text="确定"/>
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="horizontal"
  18. android:padding="8dp"
  19. android:layout_gravity="center">
  20. <SeekBar
  21. android:id="@+id/trade_change_priority_seekBar"
  22. android:layout_weight="9"
  23. android:layout_width="0dp"
  24. android:layout_height="match_parent"
  25. android:max="100"
  26. android:progress="1" />
  27. <TextView
  28. android:id="@+id/trade_change_priority_tv"
  29. android:layout_weight="1"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:text="x 1 国家道具"
  33. android:layout_gravity="center"/>
  34. </LinearLayout>
  35. </LinearLayout>