Commit 2d6e0797 by 徐健

UI校对

parent 6d384b9a
...@@ -45,9 +45,9 @@ ext { ...@@ -45,9 +45,9 @@ ext {
"m-confide" : "0.0.48.6", "m-confide" : "0.0.48.6",
"m-consultant" : "0.0.57.4", "m-consultant" : "0.0.57.4",
"m-fm" : "0.0.29.3", "m-fm" : "0.0.29.3",
"m-user" : "0.0.59.15", "m-user" : "0.0.59.18",
"m-home" : "0.0.19.1", "m-home" : "0.0.19.1",
"m-im" : "0.0.16.3", "m-im" : "0.0.16.6",
"m-dynamic" : "0.0.6.1", "m-dynamic" : "0.0.6.1",
"m-muse" : "0.0.28.9", "m-muse" : "0.0.28.9",
......
...@@ -2,6 +2,7 @@ package com.yidianling.user.ui.collect.widget ...@@ -2,6 +2,7 @@ package com.yidianling.user.ui.collect.widget
import android.content.Context import android.content.Context
import android.graphics.Color import android.graphics.Color
import android.graphics.Typeface
import android.util.AttributeSet import android.util.AttributeSet
import android.view.Gravity import android.view.Gravity
import android.view.View import android.view.View
...@@ -56,8 +57,10 @@ class CollectFocusView : LinearLayout { ...@@ -56,8 +57,10 @@ class CollectFocusView : LinearLayout {
if (focus) { if (focus) {
user_focus_title.setTextColor(Color.parseColor("#1DA1F2")) user_focus_title.setTextColor(Color.parseColor("#1DA1F2"))
user_focus_desc.setTextColor(Color.parseColor("#1DA1F2")) user_focus_desc.setTextColor(Color.parseColor("#1DA1F2"))
user_focus_title.typeface = Typeface.defaultFromStyle(Typeface.BOLD)
setBackgroundResource(R.drawable.user_collect_select_bg) setBackgroundResource(R.drawable.user_collect_select_bg)
} else { } else {
user_focus_title.typeface = Typeface.defaultFromStyle(Typeface.NORMAL)
user_focus_title.setTextColor(Color.parseColor("#242424")) user_focus_title.setTextColor(Color.parseColor("#242424"))
user_focus_desc.setTextColor(Color.parseColor("#666666")) user_focus_desc.setTextColor(Color.parseColor("#666666"))
setBackgroundResource(R.drawable.user_collect_unselect_bg) setBackgroundResource(R.drawable.user_collect_unselect_bg)
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
android:textSize="18dp" android:textSize="18dp"
android:textColor="#242424" android:textColor="#242424"
android:layout_marginTop="40dp" android:layout_marginTop="40dp"
android:layout_marginBottom="17dp" android:layout_marginBottom="22dp"
android:textStyle="bold"/> android:textStyle="bold"/>
<LinearLayout <LinearLayout
...@@ -121,12 +121,12 @@ ...@@ -121,12 +121,12 @@
android:layout_weight="1" android:layout_weight="1"
android:layout_marginTop="22dp" android:layout_marginTop="22dp"
android:layout_marginBottom="2dp" android:layout_marginBottom="2dp"
android:gravity="center"> android:gravity="center_horizontal">
<com.yidianling.user.ui.collect.widget.CustomNumberPicker <com.yidianling.user.ui.collect.widget.CustomNumberPicker
android:id="@+id/user_collect_date_pick" android:id="@+id/user_collect_date_pick"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="wrap_content">
</com.yidianling.user.ui.collect.widget.CustomNumberPicker> </com.yidianling.user.ui.collect.widget.CustomNumberPicker>
</RelativeLayout> </RelativeLayout>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="提交成功" android:text="提交成功!"
android:textColor="#242424" android:textColor="#242424"
android:textSize="18dp" android:textSize="18dp"
android:textStyle="bold" android:textStyle="bold"
......
...@@ -12,8 +12,7 @@ ...@@ -12,8 +12,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="情绪压力" android:text="情绪压力"
android:textColor="#242424" android:textColor="#242424"
android:textSize="18dp" android:textSize="18dp" />
android:textStyle="bold" />
<TextView <TextView
android:id="@+id/user_focus_desc" android:id="@+id/user_focus_desc"
...@@ -24,8 +23,7 @@ ...@@ -24,8 +23,7 @@
android:maxLines="1" android:maxLines="1"
android:text="#焦虑#困惑#失眠多梦#" android:text="#焦虑#困惑#失眠多梦#"
android:textColor="#666666" android:textColor="#666666"
android:textSize="12dp" android:textSize="12dp" />
android:textStyle="bold" />
</LinearLayout> </LinearLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment