| @ -0,0 +1,60 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:orientation="vertical"> | |||
| <include layout="@layout/include_tool_bar_white"></include> | |||
| <include layout="@layout/include_line"></include> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:orientation="horizontal"> | |||
| <TextView | |||
| android:id="@+id/chicks" | |||
| android:layout_width="0dp" | |||
| android:layout_height="wrap_content" | |||
| android:layout_weight="1" | |||
| android:gravity="center_horizontal" | |||
| android:padding="@dimen/dp_12" | |||
| android:text="@string/Chicks" | |||
| android:textColor="@color/grey666666" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textStyle="bold" /> | |||
| <TextView | |||
| android:id="@+id/GrossChicken" | |||
| android:layout_width="0dp" | |||
| android:layout_height="wrap_content" | |||
| android:layout_weight="1" | |||
| android:gravity="center_horizontal" | |||
| android:padding="@dimen/dp_12" | |||
| android:text="@string/GrossChicken" | |||
| android:textColor="@color/grey666666" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textStyle="bold" /> | |||
| <TextView | |||
| android:id="@+id/feed" | |||
| android:layout_width="0dp" | |||
| android:layout_height="wrap_content" | |||
| android:layout_weight="1" | |||
| android:gravity="center_horizontal" | |||
| android:padding="@dimen/dp_12" | |||
| android:text="@string/feed" | |||
| android:textColor="@color/grey666666" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textStyle="bold" /> | |||
| </LinearLayout> | |||
| <RelativeLayout | |||
| android:id="@+id/main_container" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="0dp" | |||
| android:layout_weight="1" /> | |||
| </LinearLayout> | |||
| @ -0,0 +1,36 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <include layout="@layout/include_tool_bar"></include> | |||
| <ScrollView | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:orientation="vertical"> | |||
| <com.qhclh.ytzh.ui.MyGridView | |||
| android:id="@+id/gv_dataanaly" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:background="@color/white" | |||
| android:columnWidth="100dp" | |||
| android:gravity="center_horizontal" | |||
| android:horizontalSpacing="10dp" | |||
| android:numColumns="auto_fit" | |||
| android:padding="@dimen/dp_10" | |||
| android:scrollbars="none" | |||
| android:stretchMode="columnWidth" | |||
| android:verticalSpacing="15dp"></com.qhclh.ytzh.ui.MyGridView> | |||
| </LinearLayout> | |||
| </ScrollView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,8 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <include layout="@layout/include_tool_bar"></include> | |||
| </LinearLayout> | |||
| @ -1,8 +1,28 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| android:layout_height="match_parent" | |||
| android:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <include layout="@layout/include_tool_bar"></include> | |||
| <TextView | |||
| android:id="@+id/type" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:background="@color/white" | |||
| android:text="@string/app_name" | |||
| android:padding="@dimen/dp_10" | |||
| android:textSize="@dimen/text_size_16" /> | |||
| <ListView | |||
| android:id="@+id/lv_infos" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:scrollbars="none"> | |||
| </ListView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,19 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <include layout="@layout/include_tool_bar"></include> | |||
| <ListView | |||
| android:id="@+id/lv_warning" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:background="@color/white" | |||
| android:scrollbars="none"> | |||
| </ListView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,110 @@ | |||
| <?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:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <android.support.v7.widget.CardView | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| app:cardElevation="@dimen/cardview_compat_inset_shadow"> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginTop="12dp" | |||
| android:background="@color/white" | |||
| android:gravity="center_vertical" | |||
| android:orientation="horizontal" | |||
| android:padding="12dp"> | |||
| <TextView | |||
| android:id="@+id/textView" | |||
| android:layout_width="0dp" | |||
| android:layout_height="match_parent" | |||
| android:layout_weight="3" | |||
| android:gravity="center_vertical" | |||
| android:text="设置头像" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| <com.qhclh.ytzh.utils.widget.XCRoundImageView | |||
| android:id="@+id/imageView" | |||
| android:layout_width="50dp" | |||
| android:layout_height="50dp" | |||
| android:layout_marginRight="20dp" | |||
| android:src="@mipmap/ic_launcher" /> | |||
| <ImageView | |||
| android:layout_width="20dp" | |||
| android:layout_height="20dp" | |||
| android:src="@drawable/more_icon"/> | |||
| </LinearLayout> | |||
| </android.support.v7.widget.CardView> | |||
| <android.support.v7.widget.CardView | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginTop="20dp" | |||
| app:cardElevation="@dimen/cardview_compat_inset_shadow"> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:orientation="vertical"> | |||
| <TextView | |||
| android:id="@+id/tv_phoneNumber" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="47dp" | |||
| android:drawablePadding="10dp" | |||
| android:gravity="center_vertical" | |||
| android:paddingLeft="12dp" | |||
| android:paddingRight="12dp" | |||
| android:text="我的手机" | |||
| android:drawableRight="@drawable/more_icon" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| <View | |||
| android:layout_width="match_parent" | |||
| android:layout_height="2px" | |||
| android:background="#dbdbdb" /> | |||
| <TextView | |||
| android:id="@+id/tv_sex" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="47dp" | |||
| android:drawablePadding="10dp" | |||
| android:gravity="center_vertical" | |||
| android:drawableRight="@drawable/more_icon" | |||
| android:paddingLeft="12dp" | |||
| android:paddingRight="12dp" | |||
| android:text="性别" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| <View | |||
| android:layout_width="match_parent" | |||
| android:layout_height="2px" | |||
| android:background="#dbdbdb" /> | |||
| <TextView | |||
| android:id="@+id/tv_birthday" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="47dp" | |||
| android:drawablePadding="10dp" | |||
| android:drawableRight="@drawable/more_icon" | |||
| android:gravity="center_vertical" | |||
| android:paddingLeft="12dp" | |||
| android:paddingRight="12dp" | |||
| android:text="生日" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| </LinearLayout> | |||
| </android.support.v7.widget.CardView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,56 @@ | |||
| <?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:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <android.support.v7.widget.CardView | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginTop="15dp" | |||
| app:cardElevation="@dimen/cardview_compat_inset_shadow"> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:orientation="vertical"> | |||
| <TextView | |||
| android:id="@+id/tv_phoneNumber" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="47dp" | |||
| android:drawablePadding="10dp" | |||
| android:gravity="center_vertical" | |||
| android:paddingLeft="12dp" | |||
| android:paddingRight="12dp" | |||
| android:text="修改密码" | |||
| android:visibility="gone" | |||
| android:drawableRight="@drawable/more_icon" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| <View | |||
| android:layout_width="match_parent" | |||
| android:layout_height="2px" | |||
| android:background="#dbdbdb" /> | |||
| <TextView | |||
| android:id="@+id/tv_sex" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="47dp" | |||
| android:drawablePadding="10dp" | |||
| android:drawableRight="@drawable/more_icon" | |||
| android:gravity="center_vertical" | |||
| android:paddingLeft="12dp" | |||
| android:paddingRight="12dp" | |||
| android:text="退出登录" | |||
| android:textSize="@dimen/text_size_18" /> | |||
| </LinearLayout> | |||
| </android.support.v7.widget.CardView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,25 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| xmlns:tools="http://schemas.android.com/tools" | |||
| android:orientation="vertical" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="match_parent" | |||
| > | |||
| <com.prolificinteractive.materialcalendarview.MaterialCalendarView | |||
| android:id="@+id/calendarView" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| /> | |||
| <!--<TextView--> | |||
| <!--android:id="@+id/textView"--> | |||
| <!--android:layout_margin="16dp"--> | |||
| <!--android:layout_width="match_parent"--> | |||
| <!--android:layout_height="wrap_content"--> | |||
| <!--android:layout_gravity="center"--> | |||
| <!--android:textAppearance="?android:attr/textAppearanceLarge"--> | |||
| <!--/>--> | |||
| </LinearLayout> | |||
| @ -0,0 +1,11 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| xmlns:app="http://schemas.android.com/apk/res-auto" | |||
| xmlns:tools="http://schemas.android.com/tools" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| app:layout_behavior="@string/appbar_scrolling_view_behavior" | |||
| tools:context="com.qhclh.ytzh.me.MineInfoActivity" | |||
| tools:showIn="@layout/activity_mine_info"> | |||
| </android.support.constraint.ConstraintLayout> | |||
| @ -0,0 +1,14 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" | |||
| android:background="@color/greyf4f4f4" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <ListView | |||
| android:id="@+id/lv_infos_chicks" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:scrollbars="none"> | |||
| </ListView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,10 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <TextView | |||
| android:text="@string/feed" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| @ -0,0 +1,14 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" | |||
| android:background="@color/greyf4f4f4" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <ListView | |||
| android:id="@+id/lv_infos_grosschicken" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:scrollbars="none"> | |||
| </ListView> | |||
| </LinearLayout> | |||
| @ -0,0 +1,17 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <!-- toolbar--> | |||
| <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" | |||
| xmlns:app="http://schemas.android.com/apk/res-auto" | |||
| android:id="@+id/toolbar1" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="?attr/actionBarSize" | |||
| android:background="@color/white" | |||
| android:theme="@style/ThemeOverlay.AppCompat.ActionBar" | |||
| android:elevation="@dimen/dp_2" | |||
| app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> | |||
| <TextView | |||
| android:id="@+id/tv_toolbar_title1" | |||
| style="@style/TextView_18_black_2828281" | |||
| android:layout_gravity="center"/> | |||
| </android.support.v7.widget.Toolbar> | |||
| @ -0,0 +1,18 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:orientation="vertical"> | |||
| <CheckBox | |||
| android:id="@+id/factry_name" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:background="@drawable/btn_check" | |||
| android:button="@null" | |||
| android:gravity="center_horizontal" | |||
| android:padding="@dimen/dp_3" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" /> | |||
| </LinearLayout> | |||
| @ -0,0 +1,254 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:orientation="vertical" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/carname" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_carname" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/driver" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_driver" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/phone" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_phone" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/batch" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_batch" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/addrs" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_addrs" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:text="@string/addrs" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/time" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_time" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/number" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_number" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:text="@string/addrs" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/immune" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_immune" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/Uniformity" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_uniformity" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/startime" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_startime" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:text="@string/addrs" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" /> | |||
| </LinearLayout> | |||
| <LinearLayout | |||
| android:orientation="horizontal" | |||
| android:padding="@dimen/dp_10" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content"> | |||
| <TextView | |||
| android:text="@string/endtime" | |||
| android:textSize="@dimen/text_size_18" | |||
| android:textColor="@color/grey888888" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| <TextView | |||
| android:id="@+id/infos_endtime" | |||
| android:textColor="@color/black303030" | |||
| android:textSize="@dimen/text_size_20" | |||
| android:text="@string/addrs" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" /> | |||
| </LinearLayout> | |||
| </LinearLayout> | |||
| @ -0,0 +1,43 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:orientation="vertical"> | |||
| <TextView | |||
| android:id="@+id/warning_time" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:gravity="center_horizontal" | |||
| android:padding="@dimen/dp_5" | |||
| android:textColor="@color/grey888888" | |||
| android:textSize="@dimen/text_size_16" /> | |||
| <LinearLayout | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:orientation="horizontal" | |||
| android:paddingBottom="@dimen/dp_12" | |||
| android:paddingLeft="@dimen/dp_12"> | |||
| <ImageView | |||
| android:id="@+id/warning_pic" | |||
| android:layout_width="@dimen/dp_60" | |||
| android:layout_height="@dimen/dp_60" | |||
| android:background="@drawable/shape_bg" | |||
| android:padding="@dimen/dp_2" | |||
| android:scaleType="fitXY" /> | |||
| <TextView | |||
| android:id="@+id/warning_content" | |||
| android:layout_width="wrap_content" | |||
| android:layout_height="wrap_content" | |||
| android:layout_marginLeft="@dimen/dp_5" | |||
| android:layout_marginRight="@dimen/dp_30" | |||
| android:background="@drawable/qipao" | |||
| android:padding="@dimen/dp_10" | |||
| android:textColor="@color/black303030" /> | |||
| </LinearLayout> | |||
| </LinearLayout> | |||