| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:background="@color/CFFFFFF"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:paddingEnd="24dp"
- android:paddingStart="24dp"
- >
- <ImageView
- android:id="@+id/button_back"
- android:layout_width="35dp"
- android:layout_height="35dp"
- android:contentDescription="@string/previous_page"
- android:paddingTop="10dp"
- android:paddingRight="10dp"
- android:paddingBottom="10dp"
- android:paddingLeft="-10dp"
- android:src="@drawable/icon_header_back"/>
- <TextView
- android:id="@+id/action_bar_title"
- android:layout_width="0dp"
- android:layout_height="56dp"
- android:layout_marginEnd="18dp"
- android:layout_marginStart="18dp"
- android:layout_weight="1"
- android:gravity="center"
- android:textColor="@color/C000000"
- android:textSize="18sp"
- tools:text="action bar title"/>
- <View
- android:layout_width="35dp"
- android:layout_height="match_parent"/>
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="4dp"
- android:gravity="start">
- <!--<LinearLayout-->
- <!--android:id="@+id/layout_for_max_width"-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="match_parent"-->
- <!--android:background="@color/CF8F8F8"-->
- <!--android:orientation="horizontal"/>-->
- <ProgressBar
- android:id="@+id/progress_bar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerInParent="false"
- android:progressDrawable="@drawable/sign_up_progress"
- tools:progress="40"
- />
- </RelativeLayout>
- </LinearLayout>
|