2025-06-30 13:49:41 +08:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:airbnb="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:background="@mipmap/image_bg_01"
|
2025-06-30 13:49:41 +08:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2025-07-09 16:02:54 +08:00
|
|
|
<include layout="@layout/library_layout_custom_slide_down_view" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_above="@+id/fl_content"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="70dp"
|
|
|
|
|
android:layout_marginTop="54dp"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="24dp">
|
|
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
|
android:layout_width="50dp"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
app:cardCornerRadius="50dp"
|
|
|
|
|
app:cardElevation="0dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_avatar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:src="@mipmap/ic_head" />
|
|
|
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_nickname"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:maxLength="30"
|
|
|
|
|
android:text=""
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="1天"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="14dp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:text="记账总天数"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="10dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="#F2F2F2"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
|
android:paddingRight="10dp">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_01"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/ll_radio_rectangle11"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
|
android:paddingRight="18dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:src="@mipmap/ic_head" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="13dp"
|
|
|
|
|
android:text="账号设置"
|
|
|
|
|
android:textColor="#464545"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
android:src="@mipmap/ic_arrow_right" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_02"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/ll_radio_rectangle11"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
|
android:paddingRight="18dp"
|
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:src="@mipmap/ic_head" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="13dp"
|
|
|
|
|
android:text="个性装扮"
|
|
|
|
|
android:textColor="#464545"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
android:src="@mipmap/ic_arrow_right" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_03"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/ll_radio_rectangle11"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
|
android:paddingRight="18dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:src="@mipmap/ic_head" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="13dp"
|
|
|
|
|
android:text="意见反馈"
|
|
|
|
|
android:textColor="#464545"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
android:src="@mipmap/ic_arrow_right" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_04"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/ll_radio_rectangle11"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
|
android:paddingRight="18dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:src="@mipmap/ic_head" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="13dp"
|
|
|
|
|
android:text="导出数据"
|
|
|
|
|
android:textColor="#464545"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
android:src="@mipmap/ic_arrow_right" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_05"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/ll_radio_rectangle11"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
|
android:paddingRight="18dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
2025-07-09 16:02:54 +08:00
|
|
|
android:src="@mipmap/ic_head" />
|
2025-06-30 13:49:41 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="13dp"
|
|
|
|
|
android:text="关于我们"
|
|
|
|
|
android:textColor="#464545"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
android:src="@mipmap/ic_arrow_right" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
|
|
|
android:id="@+id/animation_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
airbnb:lottie_autoPlay="true"
|
|
|
|
|
airbnb:lottie_fileName="1234.json" />
|
|
|
|
|
|
|
|
|
|
<org.libpag.PAGView
|
|
|
|
|
android:id="@+id/pag_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/fl_content"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|