mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/black"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<FrameLayout
|
|
android:id="@+id/fl_content_container"
|
|
android:paddingTop="78dp"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<tech.rabbit.r1launcher.initstep.widget.StepProgressIndicatorView
|
|
android:id="@+id/spiv_step_progress_indicator"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="85dp"
|
|
android:alpha="1"/>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/ll_back_container"
|
|
android:background="@drawable/bg_ff4d00_r10"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="30dp"
|
|
android:alpha="0"
|
|
android:paddingStart="6dp"
|
|
android:paddingEnd="6dp"
|
|
android:layout_marginStart="3dp">
|
|
<ImageView
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:src="@drawable/ic_setting_back"/>
|
|
<Space
|
|
android:layout_width="6dp"
|
|
android:layout_height="match_parent"/>
|
|
<TextView
|
|
android:textSize="24sp"
|
|
android:textColor="@color/black"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_back_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:includeFontPadding="false"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400"/>
|
|
</LinearLayout>
|
|
</FrameLayout>
|