| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout 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">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?attr/colorBg"
- android:fitsSystemWindows="true"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/header_layout"
- android:layout_width="match_parent"
- android:layout_height="@dimen/header_height"
- android:layout_marginHorizontal="@dimen/iscs_space_2"
- android:layout_marginTop="@dimen/iscs_space_2"
- android:background="@drawable/bg_card_login_header_bg_radius_md"
- android:paddingHorizontal="@dimen/iscs_space_2">
- <ImageView
- android:layout_width="@dimen/header_logo_width"
- android:layout_height="@dimen/header_logo_height"
- android:layout_gravity="center_vertical"
- android:src="@mipmap/icon_logo" />
- <TextClock
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="right"
- android:format12Hour="yyyy-MM-dd HH:mm"
- android:format24Hour="yyyy-MM-dd HH:mm"
- android:gravity="center_vertical"
- android:textColor="?attr/colorLoginHeaderText"
- android:textSize="@dimen/iscs_text_md"
- android:textStyle="bold|italic" />
- </FrameLayout>
- <androidx.viewpager2.widget.ViewPager2
- android:id="@+id/vp2"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/header_layout"/>
- </RelativeLayout>
- </layout>
|