diff options
author | Allan Wang <me@allanwang.ca> | 2019-12-29 22:53:19 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-12-29 22:53:19 -0800 |
commit | 9a67a02c3b782100da0647410a4c78aac1626784 (patch) | |
tree | 934148e368124fc53906adef91eb094811246091 /app/src/main/res/layout | |
parent | 3d8b135d4dbac609f17e02b5b6bcd7aa77a18f30 (diff) | |
download | frost-9a67a02c3b782100da0647410a4c78aac1626784.tar.gz frost-9a67a02c3b782100da0647410a4c78aac1626784.tar.bz2 frost-9a67a02c3b782100da0647410a4c78aac1626784.zip |
Add view binding for DebugActivity
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_debug.xml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/app/src/main/res/layout/activity_debug.xml b/app/src/main/res/layout/activity_debug.xml index d2f9a397..8480053b 100644 --- a/app/src/main/res/layout/activity_debug.xml +++ b/app/src/main/res/layout/activity_debug.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout 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" android:layout_width="match_parent" android:layout_height="match_parent" @@ -9,12 +8,9 @@ <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" - android:layout_width="match_parent" - android:layout_height="?attr/actionBarSize" + style="@style/Main.Toolbar" android:background="?attr/colorPrimary" - android:theme="@style/AppTheme.AppBarOverlay" - app:layout_scrollFlags="scroll|enterAlways" - app:popupTheme="@style/AppTheme.PopupOverlay" /> + android:theme="@style/AppTheme.AppBarOverlay" /> <com.pitchedapps.frost.views.SwipeRefreshLayout android:id="@+id/swipe_refresh" |