|
@@ -0,0 +1,114 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<FrameLayout 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="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/sdk_white"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="102dp"
|
|
|
+ android:layout_marginTop="89dp"
|
|
|
+ android:background="@color/sdk_creator_bg"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/sdk_creator_icon"
|
|
|
+ android:layout_width="70dp"
|
|
|
+ android:layout_height="70dp"
|
|
|
+ tools:src="@drawable/sdk_launcher"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginLeft="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sdk_creator_name"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ tools:text="极米玩家家家"
|
|
|
+ android:textColor="@color/sdk_text_grey"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sdk_creator_id"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ tools:text="ID:16661666"
|
|
|
+ android:textColor="@color/sdk_text_grey"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sdk_creator_sign"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ tools:text="填写个性签名更容易获得关注哦"
|
|
|
+ android:textColor="@color/sdk_text_grey"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@color/sdk_white"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/sdk_app_icon"
|
|
|
+ android:layout_width="64dp"
|
|
|
+ android:layout_height="64dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sdk_app_name"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:textColor="@color/sdk_black"
|
|
|
+ tools:text="企鹅蹦蹦蹦蹦蹦"/>
|
|
|
+
|
|
|
+ <ProgressBar
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ style="?android:attr/progressBarStyleHorizontal"
|
|
|
+ android:id="@+id/sdk_progressbar"
|
|
|
+ android:max="100"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:indeterminateTint="#6197fd"
|
|
|
+ tools:progress="50"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_sdk_progress"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:textColor="@color/sdk_progress_text"
|
|
|
+ android:text="0%"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="80dp"
|
|
|
+ android:src="@drawable/sdk_bottom_bg"
|
|
|
+ android:layout_gravity="bottom"/>
|
|
|
+</FrameLayout>
|