|
|
@@ -1,9 +1,8 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
- android:orientation="vertical"
|
|
|
android:background="@color/bg_gray">
|
|
|
|
|
|
<ScrollView
|
|
|
@@ -114,33 +113,6 @@
|
|
|
android:textColor="@color/txt_white"
|
|
|
android:textSize="@dimen/text_size_12"/>
|
|
|
</RelativeLayout>
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/newbie_task"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:layout_alignParentBottom="true"
|
|
|
- android:visibility="gone">
|
|
|
- <TextView
|
|
|
- android:id="@+id/newbie_task_tip_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginBottom="@dimen/content_padding_13"
|
|
|
- android:paddingTop="@dimen/content_padding_small"
|
|
|
- android:paddingBottom="@dimen/content_padding_small"
|
|
|
- android:paddingStart="@dimen/content_padding_15"
|
|
|
- android:paddingEnd="@dimen/content_padding_15"
|
|
|
- android:background="@drawable/shape_newbie_task_tv"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textColor="#5A4E48"
|
|
|
- android:text="新手任务"/>
|
|
|
- <ImageView
|
|
|
- android:layout_width="8dp"
|
|
|
- android:layout_height="8dp"
|
|
|
- android:layout_alignParentTop="true"
|
|
|
- android:layout_alignEnd="@+id/newbie_task_tip_tv"
|
|
|
- android:src="@drawable/sp_dot_red" />
|
|
|
- </RelativeLayout>
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
@@ -264,4 +236,26 @@
|
|
|
</LinearLayout>
|
|
|
</ScrollView>
|
|
|
|
|
|
-</LinearLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/newbie_task"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingTop="@dimen/content_padding_10"
|
|
|
+ android:paddingBottom="@dimen/content_padding_10"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_marginEnd="@dimen/content_padding_10"
|
|
|
+ android:layout_marginBottom="@dimen/content_padding_20"
|
|
|
+ android:gravity="center"
|
|
|
+ android:background="@drawable/shape_newbie_task_tv">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/newbie_task_tip_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:ems="1"
|
|
|
+ android:textSize="13sp"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:text="新手任务"/>
|
|
|
+ </RelativeLayout>
|
|
|
+</RelativeLayout>
|