123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/default_bg">
- <include
- android:id="@+id/view_title"
- layout="@layout/view_title"/>
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/view_title">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="150dp"
- android:background="@color/white">
- <android.support.v4.view.ViewPager
- android:id="@+id/vp_banner"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:orientation="vertical"
- android:padding="@dimen/default_content_margin">
- <TextView
- android:id="@+id/tv_org_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="XX培训学校-某某分校"
- android:textColor="@color/color_333"
- android:textSize="@dimen/company_16sp" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/company_15dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="收藏:1234次"
- android:textColor="@color/color_666"
- android:textSize="@dimen/company_12sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:text="市场价 ¥2280" />
- </RelativeLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/company_10dp"
- android:background="@color/white"
- android:orientation="vertical"
- android:padding="@dimen/default_content_margin">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="机构介绍"
- android:textColor="@color/color_333"
- android:textSize="@dimen/company_16sp" />
- <TextView
- android:id="@+id/tv_org_desc"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/company_5dp"
- android:text="新东方创办于1993年,23年专注教育培训,累积培训学员超过2000万,从早教到成人,业务涵盖早教、学前、小学、中学、四六级、考研、出国考试、留学咨询、英语能力提升、国际游学、国际教育、图书、网络课堂等60多所学校,30000多名教职员工,旨在为学员提供一站式终身学习服务"
- android:textColor="@color/color_666"
- android:textSize="@dimen/company_14sp" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/company_45dp"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal"
- android:background="@color/white">
- <TextView
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:layout_gravity="center"
- android:gravity="center"
- android:background="@color/white"
- android:textSize="@dimen/company_16sp"
- android:textColor="@color/color_price"
- android:text="¥1280元"/>
- <TextView
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:layout_gravity="center"
- android:gravity="center"
- android:background="@color/main_color"
- android:textSize="@dimen/company_16sp"
- android:textColor="@color/white"
- android:text="立即报名"/>
- </LinearLayout>
- </RelativeLayout>
|