up主认证界面

This commit is contained in:
2026-03-28 18:28:08 +08:00
parent 659eef7e29
commit f5eb13a91e
30 changed files with 3747 additions and 15 deletions

View File

@@ -0,0 +1,47 @@
<?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="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/dp10"
android:text="请上传一张本人性感照片"
android:layout_marginLeft="@dimen/dp20"
android:layout_marginTop="@dimen/dp10"
android:textColor="#666666"
/>
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/sd_cover"
android:layout_marginLeft="@dimen/dp20"
app:roundedCornerRadius="@dimen/dp5"
android:layout_marginTop="@dimen/dp15"
android:layout_width="@dimen/dp120"
android:background="@mipmap/ic_cover_default"
android:layout_height="@dimen/dp120"/>
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:id="@+id/submit_button"
style="@style/caiButtonStyleV2"
android:layout_width="match_parent"
android:layout_height="@dimen/dp48"
android:layout_marginLeft="48dp"
android:layout_marginRight="48dp"
android:layout_marginVertical="@dimen/dp20"
android:enabled="false"
android:text="上传"
android:textSize="17sp"
android:textStyle="bold" />
</LinearLayout>