111
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/white"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="#66ffffff"/>
|
||||
</shape>
|
||||
4
live/src/main/res/drawable/drawable_toast.xml
Normal file
4
live/src/main/res/drawable/drawable_toast.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
</selector>
|
||||
75
live/src/main/res/layout/banner_new_user.xml
Normal file
75
live/src/main/res/layout/banner_new_user.xml
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="67dp"
|
||||
android:layout_height="90dp"
|
||||
android:background="@mipmap/live_mission_box"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/task"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Task 1"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="8sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/task_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Give a
|
||||
free gift"
|
||||
android:textColor="#fffff69f"
|
||||
android:textSize="10sp"
|
||||
/>
|
||||
|
||||
<TextView android:id="@+id/status"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Incomplete"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="8sp"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginBottom="5dp"
|
||||
android:gravity="center">
|
||||
|
||||
<ImageView android:id="@+id/indicator1"
|
||||
android:layout_width="4dp"
|
||||
android:layout_height="4dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:src="@drawable/bg_home_indicator_selected"/>
|
||||
|
||||
<ImageView android:id="@+id/indicator2"
|
||||
android:layout_width="4dp"
|
||||
android:layout_height="4dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:src="@drawable/bg_home_indicator_unselected"/>
|
||||
|
||||
<ImageView android:id="@+id/indicator3"
|
||||
android:layout_width="4dp"
|
||||
android:layout_height="4dp"
|
||||
android:src="@drawable/bg_home_indicator_unselected"/>
|
||||
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
52
live/src/main/res/layout/diy_toast_view.xml
Normal file
52
live/src/main/res/layout/diy_toast_view.xml
Normal file
@@ -0,0 +1,52 @@
|
||||
<?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"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="184dp"
|
||||
android:layout_height="55dp"
|
||||
android:background="@mipmap/black_tip_bg"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="completing mission 1!"
|
||||
android:textColor="#fffff69f"
|
||||
android:textSize="12sp"
|
||||
/>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="GET"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="12sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="10"
|
||||
android:textColor="#ffffffff"
|
||||
android:drawableLeft="@mipmap/icon_live_beans"
|
||||
android:textSize="12sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="100"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="12sp"
|
||||
android:drawableLeft="@mipmap/icon_live_exp"
|
||||
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -70,10 +70,12 @@
|
||||
|
||||
<com.ms.banner.Banner
|
||||
android:id="@+id/banner3"
|
||||
android:layout_width="68dp"
|
||||
android:layout_width="65dp"
|
||||
android:layout_height="68dp"
|
||||
android:layout_marginBottom="5dp"
|
||||
app:delay_time="5000"
|
||||
app:indicator_drawable_selected="@drawable/bg_home_indicator_selected"
|
||||
app:indicator_drawable_unselected="@drawable/bg_home_indicator_unselected"
|
||||
app:indicator_height="8dp"
|
||||
app:indicator_width="8dp" />
|
||||
|
||||
@@ -453,7 +455,6 @@
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginBottom="40dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="@mipmap/black_bg"
|
||||
app:autoPlay="true"/>
|
||||
|
||||
|
||||
|
||||
BIN
live/src/main/res/mipmap-xhdpi/black_tip_bg.png
Normal file
BIN
live/src/main/res/mipmap-xhdpi/black_tip_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.2 KiB |
BIN
live/src/main/res/mipmap-xhdpi/icon_live_beans.png
Normal file
BIN
live/src/main/res/mipmap-xhdpi/icon_live_beans.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
BIN
live/src/main/res/mipmap-xhdpi/icon_live_exp.png
Normal file
BIN
live/src/main/res/mipmap-xhdpi/icon_live_exp.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
BIN
live/src/main/res/mipmap-xhdpi/live_gift_light_bg.png
Normal file
BIN
live/src/main/res/mipmap-xhdpi/live_gift_light_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
BIN
live/src/main/res/mipmap-xhdpi/live_mission_box.png
Normal file
BIN
live/src/main/res/mipmap-xhdpi/live_mission_box.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
Reference in New Issue
Block a user