mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-16 16:25:12 +00:00
62 lines
2.2 KiB
XML
62 lines
2.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?><!--
|
||
|
~ Copyright 2013-2015 µg Project Team
|
||
|
~
|
||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
~ you may not use this file except in compliance with the License.
|
||
|
~ You may obtain a copy of the License at
|
||
|
~
|
||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||
|
~
|
||
|
~ Unless required by applicable law or agreed to in writing, software
|
||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
~ See the License for the specific language governing permissions and
|
||
|
~ limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:id="@+id/auth_root"
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/title_container"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="64dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:textColor="@color/primary_text_default_material_dark"
|
||
|
android:textSize="24sp"
|
||
|
android:padding="18dp"
|
||
|
android:layout_marginLeft="20dp"
|
||
|
android:layout_marginRight="20dp"
|
||
|
android:id="@+id/title"
|
||
|
android:text="@string/just_a_sec"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/auth_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dip"
|
||
|
android:layout_weight="1">
|
||
|
|
||
|
<include layout="@layout/login_loading" />
|
||
|
</FrameLayout>
|
||
|
|
||
|
<View
|
||
|
android:background="#e4e7e9"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="54dp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</RelativeLayout>
|