|
@@ -1,141 +1,359 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- android:background="@color/bg"
|
|
|
|
|
|
|
+ android:background="@color/white"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.android.chmo.ui.view.TopBar
|
|
<com.android.chmo.ui.view.TopBar
|
|
|
|
|
+ android:id="@+id/top_bar"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
app:topTitle="活动详情" />
|
|
app:topTitle="活动详情" />
|
|
|
|
|
|
|
|
<com.android.chmo.ui.view.TouchScrollView
|
|
<com.android.chmo.ui.view.TouchScrollView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_below="@id/top_bar"
|
|
|
android:fillViewport="true">
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:paddingBottom="64dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
<ImageView
|
|
|
android:id="@+id/image"
|
|
android:id="@+id/image"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
|
|
+ android:layout_height="210dp"
|
|
|
android:scaleType="centerCrop"
|
|
android:scaleType="centerCrop"
|
|
|
android:src="@mipmap/def_img2" />
|
|
android:src="@mipmap/def_img2" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/atitle"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@color/white"
|
|
|
|
|
- android:orientation="vertical"
|
|
|
|
|
- android:padding="15dp">
|
|
|
|
|
|
|
+ android:layout_marginTop="-18dp"
|
|
|
|
|
+ android:background="@drawable/bg_activity_detail"
|
|
|
|
|
+ android:paddingLeft="20dp"
|
|
|
|
|
+ android:paddingTop="20dp"
|
|
|
|
|
+ android:paddingRight="20dp"
|
|
|
|
|
+ android:text="活动标题"
|
|
|
|
|
+ android:textColor="#ff000000"
|
|
|
|
|
+ android:textSize="18sp"
|
|
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/atitle"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginBottom="10dp"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:text="标题"
|
|
|
|
|
- android:textColor="@color/pink"
|
|
|
|
|
- android:textSize="16sp" />
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_price"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
|
|
+ android:text="¥ 0"
|
|
|
|
|
+ android:textColor="#ffff4095"
|
|
|
|
|
+ android:textSize="15sp" />
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:drawableLeft="@mipmap/block"
|
|
|
|
|
- android:drawablePadding="5dp"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:text="开始时间"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="15sp" />
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
|
+ android:gravity="left|center"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:layout_width="20dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:src="@mipmap/icon_shijian" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:id="@+id/startTime"
|
|
android:id="@+id/startTime"
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
|
|
- android:layout_marginTop="10dp"
|
|
|
|
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
android:text="2018-08-02 00:00"
|
|
android:text="2018-08-02 00:00"
|
|
|
android:textColor="@color/black"
|
|
android:textColor="@color/black"
|
|
|
android:textSize="13sp" />
|
|
android:textSize="13sp" />
|
|
|
-
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@color/white"
|
|
|
|
|
- android:orientation="vertical"
|
|
|
|
|
- android:layout_marginTop="10dp"
|
|
|
|
|
- android:padding="15dp">
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:drawableLeft="@mipmap/block"
|
|
|
|
|
- android:drawablePadding="5dp"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:text="活动简介"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="15sp" />
|
|
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:gravity="left|center"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:layout_width="20dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:src="@mipmap/icon_renshu" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
- android:id="@+id/desc"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
|
|
+ android:id="@+id/apply_num"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
|
|
- android:layout_marginTop="10dp"
|
|
|
|
|
- android:text=""
|
|
|
|
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
|
|
+ android:text="0"
|
|
|
android:textColor="@color/black"
|
|
android:textColor="@color/black"
|
|
|
android:textSize="13sp" />
|
|
android:textSize="13sp" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/endTime"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@color/white"
|
|
|
|
|
- android:orientation="vertical"
|
|
|
|
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginTop="10dp"
|
|
|
- android:padding="15dp">
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:drawableLeft="@mipmap/block"
|
|
|
|
|
- android:drawablePadding="5dp"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:text="报名截止时间"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="15sp" />
|
|
|
|
|
|
|
+ android:text=""
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/endTime"
|
|
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="1dp"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
|
|
+ android:background="@color/divider" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/desc"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="14sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.dd.ShadowLayout
|
|
|
|
|
+ android:id="@+id/sign_list"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
|
|
+ app:sl_cornerRadius="8dp"
|
|
|
|
|
+ app:sl_dx="0dp"
|
|
|
|
|
+ app:sl_dy="6dp"
|
|
|
|
|
+ app:sl_shadowColor="#14000000"
|
|
|
|
|
+ app:sl_shadowRadius="12dp">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
|
|
- android:layout_marginTop="10dp"
|
|
|
|
|
- android:text=""
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="13sp" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ android:background="@drawable/bg_cell"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:drawableLeft="@drawable/title_indicator"
|
|
|
|
|
+ android:drawablePadding="4dp"
|
|
|
|
|
+ android:text="已报名"
|
|
|
|
|
+ android:textColor="#ff000000"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="查看全部"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="12sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:layout_width="20dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
|
|
+ android:src="@mipmap/icon_inter" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <com.google.android.flexbox.FlexboxLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="17dp"
|
|
|
|
|
+ android:layout_marginBottom="20dp"
|
|
|
|
|
+ app:alignItems="center"
|
|
|
|
|
+ app:flexDirection="row"
|
|
|
|
|
+ app:justifyContent="space_around">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ app:layout_flexBasisPercent="20%"
|
|
|
|
|
+ app:layout_flexGrow="1">
|
|
|
|
|
+
|
|
|
|
|
+ <com.android.chmo.ui.view.RoundImageView
|
|
|
|
|
+ android:id="@+id/icon1"
|
|
|
|
|
+ android:layout_width="36dp"
|
|
|
|
|
+ android:layout_height="36dp"
|
|
|
|
|
+ android:src="@mipmap/def_head"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:riv_radius="18dp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name1"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingLeft="5dp"
|
|
|
|
|
+ android:paddingRight="5dp"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ app:layout_flexBasisPercent="20%"
|
|
|
|
|
+ app:layout_flexGrow="1">
|
|
|
|
|
+
|
|
|
|
|
+ <com.android.chmo.ui.view.RoundImageView
|
|
|
|
|
+ android:id="@+id/icon2"
|
|
|
|
|
+ android:layout_width="36dp"
|
|
|
|
|
+ android:layout_height="36dp"
|
|
|
|
|
+ android:src="@mipmap/def_head"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:riv_radius="18dp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name2"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingLeft="5dp"
|
|
|
|
|
+ android:paddingRight="5dp"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ app:layout_flexBasisPercent="20%"
|
|
|
|
|
+ app:layout_flexGrow="1">
|
|
|
|
|
+
|
|
|
|
|
+ <com.android.chmo.ui.view.RoundImageView
|
|
|
|
|
+ android:id="@+id/icon3"
|
|
|
|
|
+ android:layout_width="36dp"
|
|
|
|
|
+ android:layout_height="36dp"
|
|
|
|
|
+ android:src="@mipmap/def_head"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:riv_radius="18dp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name3"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingLeft="5dp"
|
|
|
|
|
+ android:paddingRight="5dp"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ app:layout_flexBasisPercent="20%"
|
|
|
|
|
+ app:layout_flexGrow="1">
|
|
|
|
|
+
|
|
|
|
|
+ <com.android.chmo.ui.view.RoundImageView
|
|
|
|
|
+ android:id="@+id/icon4"
|
|
|
|
|
+ android:layout_width="36dp"
|
|
|
|
|
+ android:layout_height="36dp"
|
|
|
|
|
+ android:src="@mipmap/def_head"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:riv_radius="18dp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name4"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingLeft="5dp"
|
|
|
|
|
+ android:paddingRight="5dp"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ app:layout_flexBasisPercent="20%"
|
|
|
|
|
+ app:layout_flexGrow="1">
|
|
|
|
|
+
|
|
|
|
|
+ <com.android.chmo.ui.view.RoundImageView
|
|
|
|
|
+ android:id="@+id/icon5"
|
|
|
|
|
+ android:layout_width="36dp"
|
|
|
|
|
+ android:layout_height="36dp"
|
|
|
|
|
+ android:src="@mipmap/def_head"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:riv_radius="18dp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name5"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingLeft="5dp"
|
|
|
|
|
+ android:paddingRight="5dp"
|
|
|
|
|
+ android:textColor="#333333"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </com.google.android.flexbox.FlexboxLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </com.dd.ShadowLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
</com.android.chmo.ui.view.TouchScrollView>
|
|
</com.android.chmo.ui.view.TouchScrollView>
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:orientation="vertical"
|
|
|
|
|
- android:background="@color/white"
|
|
|
|
|
- android:padding="20dp">
|
|
|
|
|
- <Button
|
|
|
|
|
- android:id="@+id/signBtn"
|
|
|
|
|
- style="@style/largeBtn"
|
|
|
|
|
- android:text="立即报名"/>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-</LinearLayout>
|
|
|
|
|
|
|
+ <Button
|
|
|
|
|
+ android:id="@+id/signBtn"
|
|
|
|
|
+ style="@style/largeBtn"
|
|
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
|
|
+ android:text="立即报名" />
|
|
|
|
|
+</RelativeLayout>
|