123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">.
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- style="@style/fullToolbarStyle"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- android:title="修改置顶"
- app:right_text="确定" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:orientation="vertical"
- android:padding="15dp">
- <TextView
- android:id="@+id/trade_change_priority_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_weight="9"
- android:text="x 1 国家道具"
- android:textColor="@color/black" />
- <SeekBar
- android:id="@+id/trade_change_priority_seekBar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_weight="9"
- android:max="100"
- android:progress="1" />
- </LinearLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="一天可发布三条"
- android:textAlignment="center"
- android:textColor="@android:color/holo_red_dark"
- android:textSize="10sp" />
- </LinearLayout>
- </LinearLayout>
|