|
|
@@ -1,258 +1,277 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<com.scwang.smartrefresh.layout.SmartRefreshLayout 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"
|
|
|
- android:id="@+id/refresh"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
- <android.support.v4.widget.NestedScrollView
|
|
|
- android:id="@+id/scrollView"
|
|
|
+ <com.scwang.smartrefresh.layout.SmartRefreshLayout
|
|
|
+ android:id="@+id/refresh"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_gravity="fill_vertical"
|
|
|
- android:fillViewport="true"
|
|
|
- android:scrollbars="none"
|
|
|
- app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <android.support.v4.widget.NestedScrollView
|
|
|
+ android:id="@+id/scrollView"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:background="@color/white_light"
|
|
|
- android:orientation="vertical">
|
|
|
+ android:layout_gravity="fill_vertical"
|
|
|
+ android:fillViewport="true"
|
|
|
+ android:scrollbars="none"
|
|
|
+ app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
- <android.support.constraint.ConstraintLayout
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:background="@mipmap/home_blue_bg"
|
|
|
- android:paddingTop="@dimen/status_bar_height"
|
|
|
- android:paddingBottom="52dp">
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/img_baseactivity_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="?attr/actionBarSize"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:paddingStart="@dimen/content_padding_20"
|
|
|
- android:paddingEnd="@dimen/content_padding_20"
|
|
|
- android:scaleType="centerInside"
|
|
|
- android:src="@drawable/narrow_back_white"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/txt_baseactivity_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="?attr/actionBarSize"
|
|
|
- android:layout_centerInParent="true"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/app_name"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="@dimen/text_size_4"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/img_baseactivity_title"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/img_baseactivity_title" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_20"
|
|
|
- android:layout_marginTop="@dimen/content_padding_10"
|
|
|
- android:text="@string/total_money_lable"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="15sp"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/img_baseactivity_title" />
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/white_light"
|
|
|
+ android:focusable="true"
|
|
|
+ android:focusableInTouchMode="true"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/my_money_ll"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginEnd="@dimen/content_padding_20"
|
|
|
- android:orientation="vertical"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/img_baseactivity_title">
|
|
|
+ android:background="@mipmap/home_blue_bg"
|
|
|
+ android:paddingTop="@dimen/status_bar_height"
|
|
|
+ android:paddingBottom="52dp">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_agent_extract"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="12dp"
|
|
|
- android:text="@string/agent_extract"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="12sp" />
|
|
|
+ <View
|
|
|
+ android:id="@+id/act_my_money_top_v"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="?attr/actionBarSize" />
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/my_money_task_reward"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="@dimen/content_padding_20"
|
|
|
- android:text="@string/task_reward"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_20"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_10"
|
|
|
+ android:text="@string/total_money_lable"
|
|
|
android:textColor="@color/white"
|
|
|
- android:textSize="12sp" />
|
|
|
+ android:textSize="15sp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/act_my_money_top_v" />
|
|
|
|
|
|
<LinearLayout
|
|
|
+ android:id="@+id/my_money_ll"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:paddingTop="10dp"
|
|
|
- android:paddingBottom="10dp">
|
|
|
+ android:layout_marginEnd="@dimen/content_padding_20"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/act_my_money_top_v">
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/my_money_dingxiang_amount"
|
|
|
+ android:id="@+id/my_money_agent_extract"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="@string/dingxiang_amount"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:text="@string/agent_extract"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_task_reward"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_20"
|
|
|
+ android:text="@string/task_reward"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingBottom="10dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_dingxiang_amount"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/dingxiang_amount"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/my_money_dingxiang_amount_iv"
|
|
|
+ android:layout_width="35dp"
|
|
|
+ android:layout_height="35dp"
|
|
|
+ android:padding="10dp"
|
|
|
+ android:src="@mipmap/question_mark" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_recharge_amount"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/recharge_amount"
|
|
|
android:textColor="@color/white"
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/my_money_dingxiang_amount_iv"
|
|
|
- android:layout_width="35dp"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:padding="10dp"
|
|
|
- android:src="@mipmap/question_mark" />
|
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/my_money_recharge_amount"
|
|
|
+ android:id="@+id/my_money_available_amount"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="@string/recharge_amount"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_20"
|
|
|
+ android:text="@string/available_amount"
|
|
|
android:textColor="@color/white"
|
|
|
- android:textSize="12sp" />
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
+ android:textSize="12sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/my_money_ll"
|
|
|
+ app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_available_amount"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_20"
|
|
|
- android:text="@string/available_amount"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="12sp"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/my_money_ll"
|
|
|
- app:layout_constraintStart_toStartOf="parent" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_total_money"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_20"
|
|
|
- android:layout_marginBottom="@dimen/content_padding_10"
|
|
|
- android:text="@string/total_money"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="25sp"
|
|
|
- app:layout_constraintBottom_toTopOf="@+id/my_money_available_amount"
|
|
|
- app:layout_constraintStart_toStartOf="parent" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_total_money"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_20"
|
|
|
+ android:layout_marginBottom="@dimen/content_padding_10"
|
|
|
+ android:text="@string/total_money"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="25sp"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/my_money_available_amount"
|
|
|
+ app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
|
- </android.support.constraint.ConstraintLayout>
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_10"
|
|
|
- android:layout_marginTop="-37dp"
|
|
|
- android:layout_marginEnd="@dimen/content_padding_10"
|
|
|
- android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
|
|
|
- android:orientation="vertical">
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:paddingStart="@dimen/content_padding_20"
|
|
|
- android:paddingTop="@dimen/content_padding_10"
|
|
|
- android:paddingEnd="@dimen/content_padding_20"
|
|
|
- android:paddingBottom="@dimen/content_padding_10">
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:layout_width="20dp"
|
|
|
- android:layout_height="20dp"
|
|
|
- android:src="@drawable/selector_tab_my_money1" />
|
|
|
+ android:layout_marginStart="@dimen/content_padding_10"
|
|
|
+ android:layout_marginTop="-37dp"
|
|
|
+ android:layout_marginEnd="@dimen/content_padding_10"
|
|
|
+ android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_recharge_tv"
|
|
|
- android:layout_width="0dp"
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_10"
|
|
|
- android:layout_weight="1"
|
|
|
- android:text="充值"
|
|
|
- android:textColor="@color/gray_4"
|
|
|
- android:textSize="15sp" />
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/content_padding_20"
|
|
|
+ android:paddingTop="@dimen/content_padding_10"
|
|
|
+ android:paddingEnd="@dimen/content_padding_20"
|
|
|
+ android:paddingBottom="@dimen/content_padding_10">
|
|
|
|
|
|
- <ImageView
|
|
|
- android:layout_width="15dp"
|
|
|
- android:layout_height="15dp"
|
|
|
- android:src="@mipmap/x_ic_next" />
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="20dp"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:src="@drawable/selector_tab_my_money1" />
|
|
|
|
|
|
- </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_recharge_tv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_10"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="充值"
|
|
|
+ android:textColor="@color/gray_4"
|
|
|
+ android:textSize="15sp" />
|
|
|
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1px"
|
|
|
- android:layout_marginLeft="@dimen/content_padding_20"
|
|
|
- android:layout_marginRight="@dimen/content_padding_20"
|
|
|
- android:background="@color/white_bg_line" />
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:src="@mipmap/x_ic_next" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:paddingStart="@dimen/content_padding_20"
|
|
|
- android:paddingTop="@dimen/content_padding_10"
|
|
|
- android:paddingEnd="@dimen/content_padding_20"
|
|
|
- android:paddingBottom="@dimen/content_padding_10">
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:layout_width="20dp"
|
|
|
- android:layout_height="20dp"
|
|
|
- android:src="@drawable/selector_tab_my_money2" />
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_withdraw_tv"
|
|
|
- android:layout_width="0dp"
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1px"
|
|
|
+ android:layout_marginLeft="@dimen/content_padding_20"
|
|
|
+ android:layout_marginRight="@dimen/content_padding_20"
|
|
|
+ android:background="@color/white_bg_line" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/content_padding_10"
|
|
|
- android:layout_weight="1"
|
|
|
- android:text="提现"
|
|
|
- android:textColor="@color/gray_4"
|
|
|
- android:textSize="15sp" />
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/content_padding_20"
|
|
|
+ android:paddingTop="@dimen/content_padding_10"
|
|
|
+ android:paddingEnd="@dimen/content_padding_20"
|
|
|
+ android:paddingBottom="@dimen/content_padding_10">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="20dp"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:src="@drawable/selector_tab_my_money2" />
|
|
|
|
|
|
- <ImageView
|
|
|
- android:layout_width="15dp"
|
|
|
- android:layout_height="15dp"
|
|
|
- android:src="@mipmap/x_ic_next" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_withdraw_tv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_10"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="提现"
|
|
|
+ android:textColor="@color/gray_4"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:src="@mipmap/x_ic_next" />
|
|
|
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
|
|
|
- <android.support.design.widget.TabLayout
|
|
|
- android:id="@+id/indicator"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp"
|
|
|
- android:layout_marginStart="@dimen/content_padding_10"
|
|
|
- android:layout_marginTop="@dimen/content_padding_20"
|
|
|
- android:layout_marginEnd="@dimen/content_padding_10"
|
|
|
- android:background="@drawable/shape_main_solid_rectangle_small_top"
|
|
|
- app:tabGravity="center"
|
|
|
- app:tabIndicatorColor="#4bc1fe"
|
|
|
- app:tabIndicatorHeight="0dp"
|
|
|
- app:tabMode="fixed"
|
|
|
- app:tabSelectedTextColor="@android:color/white"
|
|
|
- app:tabTextAppearance="@android:style/TextAppearance.Holo.Medium"
|
|
|
- app:tabTextColor="#444444" />
|
|
|
-
|
|
|
- <com.kfzs.android.view.widget.WrapContentHeightViewPager
|
|
|
- android:id="@+id/pager"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0dip"
|
|
|
- android:layout_weight="1" />
|
|
|
+ <android.support.design.widget.TabLayout
|
|
|
+ android:id="@+id/indicator"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_marginStart="@dimen/content_padding_10"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_20"
|
|
|
+ android:layout_marginEnd="@dimen/content_padding_10"
|
|
|
+ android:background="@drawable/shape_main_solid_rectangle_small_top"
|
|
|
+ app:tabGravity="center"
|
|
|
+ app:tabIndicatorColor="#4bc1fe"
|
|
|
+ app:tabIndicatorHeight="0dp"
|
|
|
+ app:tabMode="fixed"
|
|
|
+ app:tabSelectedTextColor="@android:color/white"
|
|
|
+ app:tabTextAppearance="@android:style/TextAppearance.Holo.Medium"
|
|
|
+ app:tabTextColor="#444444" />
|
|
|
+
|
|
|
+ <com.kfzs.android.view.widget.WrapContentHeightViewPager
|
|
|
+ android:id="@+id/pager"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dip"
|
|
|
+ android:layout_weight="1" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </android.support.v4.widget.NestedScrollView>
|
|
|
+ </com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
- </android.support.v4.widget.NestedScrollView>
|
|
|
-</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingTop="@dimen/status_bar_height"
|
|
|
+ android:background="@drawable/shape_gradient_main">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/img_baseactivity_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="?attr/actionBarSize"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:paddingStart="@dimen/content_padding_20"
|
|
|
+ android:paddingEnd="@dimen/content_padding_20"
|
|
|
+ android:scaleType="centerInside"
|
|
|
+ android:src="@drawable/narrow_back_white"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/txt_baseactivity_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="?attr/actionBarSize"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/app_name"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/text_size_4"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/img_baseactivity_title"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/img_baseactivity_title" />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+</RelativeLayout>
|