aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/watch_code_fragment.xml
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-05-30 16:53:09 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-05-30 16:53:09 -0600
commit1ed362fdcac42fd2c18d1b580c8e20196564ba47 (patch)
treebe3891c2d1a6c7308e2a7f8b4c95251c4a230754 /app/src/main/res/layout/watch_code_fragment.xml
parent72da66ee0a0c4458f779581245d9ee3d9500f4cb (diff)
downloadwiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar
wiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar.gz
wiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar.bz2
fixed about fragment license text error, added margins to watchcodesfragment
Diffstat (limited to 'app/src/main/res/layout/watch_code_fragment.xml')
-rw-r--r--app/src/main/res/layout/watch_code_fragment.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/layout/watch_code_fragment.xml b/app/src/main/res/layout/watch_code_fragment.xml
index 7bfe60a..ab93298 100644
--- a/app/src/main/res/layout/watch_code_fragment.xml
+++ b/app/src/main/res/layout/watch_code_fragment.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/watch_code_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:padding="15dp">
+ android:padding="15dp"
+ android:focusable="true" android:focusableInTouchMode="true">
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleLarge"
@@ -56,12 +56,14 @@
<ScrollView
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:layout_marginBottom="?android:attr/actionBarSize">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:orientation="vertical">
+ android:orientation="vertical"
+ android:layout_marginBottom="?android:attr/actionBarSize">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recent_friend_codes_recycler_view"