|
|
@@ -44,6 +44,7 @@
|
|
|
android:text="128"
|
|
|
android:textColor="@color/orange_text_light"
|
|
|
android:textSize="@dimen/text_size_3"
|
|
|
+ android:visibility="gone"
|
|
|
app:layout_constraintLeft_toRightOf="@id/txt_fgt_main_page_task_succ"
|
|
|
app:layout_constraintRight_toLeftOf="@+id/txt_fgt_main_page_task_history"
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
@@ -90,6 +91,7 @@
|
|
|
android:text="剩余次数"
|
|
|
android:textColor="@color/black_text_gray"
|
|
|
android:textSize="@dimen/text_size_2"
|
|
|
+ android:visibility="gone"
|
|
|
app:layout_constraintLeft_toLeftOf="@id/txt_fgt_main_page_task_remain"
|
|
|
app:layout_constraintRight_toRightOf="@id/txt_fgt_main_page_task_remain"
|
|
|
app:layout_constraintTop_toBottomOf="@id/txt_fgt_main_page_task_income" />
|
|
|
@@ -107,14 +109,16 @@
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:layout_height="@dimen/layout_heigh_default"
|
|
|
+ android:gravity="center_vertical"
|
|
|
android:orientation="horizontal"
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
- <Space
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_income_today"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="1px"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
<View
|
|
|
@@ -122,19 +126,21 @@
|
|
|
android:layout_height="25dp"
|
|
|
android:background="@color/sheep_red" />
|
|
|
|
|
|
- <Space
|
|
|
+ <View
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="1px"
|
|
|
- android:layout_weight="1" />
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
|
<View
|
|
|
android:layout_width="1px"
|
|
|
android:layout_height="25dp"
|
|
|
android:background="@color/sheep_red" />
|
|
|
|
|
|
- <Space
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_complete_today"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="1px"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
<View
|
|
|
@@ -142,9 +148,10 @@
|
|
|
android:layout_height="25dp"
|
|
|
android:background="@color/sheep_red" />
|
|
|
|
|
|
- <Space
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_history_record"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="1px"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
</LinearLayout>
|