26 lines
881 B
XML
26 lines
881 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/dash_deep_blue"
|
|
android:fitsSystemWindows="false">
|
|
|
|
<ViewAnimator
|
|
android:id="@+id/root_view_switcher"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:ignore="UselessParent">
|
|
|
|
<include
|
|
android:id="@+id/lock_screen"
|
|
layout="@layout/activity_lock_screen" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/regular_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true" />
|
|
|
|
</ViewAnimator>
|
|
</FrameLayout> |