2018-07-26 17:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-08-26 11:50:44 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-26 17:04:44 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-15 06:12:02 +01:00
|
|
|
android:id="@+id/coordinator_layout_login_activity"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/backgroundColor"
|
2019-09-29 15:18:45 +02:00
|
|
|
tools:application="ml.docilealligator.infinityforreddit.Activity.LoginActivity">
|
2018-07-26 17:04:44 +02:00
|
|
|
|
2019-08-26 11:50:44 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-01 09:30:33 +01:00
|
|
|
android:id="@+id/appbar_layout_login_activity"
|
2019-08-26 11:50:44 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/toolbarAndTabBackgroundColor"
|
2019-08-26 11:50:44 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2020-03-01 09:30:33 +01:00
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2019-08-26 11:50:44 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-03-01 09:30:33 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false"
|
|
|
|
app:toolbarId="@+id/toolbar_login_activity">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_login_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
2019-08-26 11:50:44 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-11-08 17:40:14 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.CustomView.LollipopBugFixedWebView
|
2018-07-26 17:04:44 +02:00
|
|
|
android:id="@+id/webview_login_activity"
|
|
|
|
android:layout_width="match_parent"
|
2019-08-26 11:50:44 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2018-07-26 17:04:44 +02:00
|
|
|
|
2019-08-26 11:50:44 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|