diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-24 11:20:01 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-24 11:20:01 -0600 |
commit | 3e5d90158996b919b6661c3cb9c9fc18ac951bfc (patch) | |
tree | 475b72e6d5d518eb34fb7b10fcc7699cd012a3a6 /app/src/main/res/layout | |
parent | 720adcf834005e6e871528a8997328e6134b88bf (diff) | |
download | wiimmfi-watcher-3e5d90158996b919b6661c3cb9c9fc18ac951bfc.tar wiimmfi-watcher-3e5d90158996b919b6661c3cb9c9fc18ac951bfc.tar.gz wiimmfi-watcher-3e5d90158996b919b6661c3cb9c9fc18ac951bfc.tar.bz2 |
added spanish and portugese, experimenting with progress bars
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_main.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/watch_code_fragment.xml | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 08083c2..bf5adcd 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -12,6 +12,8 @@ android:layout_height="match_parent" android:fitsSystemWindows="true"> + + <com.google.android.material.appbar.AppBarLayout android:id="@+id/appBarLayout" android:layout_width="match_parent" diff --git a/app/src/main/res/layout/watch_code_fragment.xml b/app/src/main/res/layout/watch_code_fragment.xml index 84b344d..7bfe60a 100644 --- a/app/src/main/res/layout/watch_code_fragment.xml +++ b/app/src/main/res/layout/watch_code_fragment.xml @@ -7,6 +7,17 @@ android:layout_height="match_parent" android:orientation="vertical" android:padding="15dp"> + <ProgressBar + android:id="@+id/progressBar1" + style="?android:attr/progressBarStyleLarge" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:visibility="gone" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" |