123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">.
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- style="@style/fullToolbarStyle"
- android:title="修改置顶"
- app:right_text="确定"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:padding="8dp"
- android:layout_gravity="center">
- <SeekBar
- android:id="@+id/trade_change_priority_seekBar"
- android:layout_weight="9"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:max="100"
- android:progress="1" />
- <TextView
- android:id="@+id/trade_change_priority_tv"
- android:layout_weight="1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="x 1 国家道具"
- android:layout_gravity="center"/>
- </LinearLayout>
- </LinearLayout>
|