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"
|
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
|
|
|
|
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">
|
|
|
|
|
|
|
|
<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.AppBarLayout>
|
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<WebView
|
|
|
|
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>
|