diff options
author | ByteHamster <info@bytehamster.com> | 2020-03-12 13:28:30 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-03-15 20:09:11 +0100 |
commit | 7f4d43deb16ee0ce6a49f78805e5600d3e01161f (patch) | |
tree | 504079a84ba03df68a10fac7048d7240faa94cd3 /core/src/main/res | |
parent | 03d1f41e9bd88e1920be306ef8bcd10642ce5527 (diff) | |
download | AntennaPod-7f4d43deb16ee0ce6a49f78805e5600d3e01161f.zip |
Moved Toolbar to individual Fragments
Diffstat (limited to 'core/src/main/res')
-rw-r--r-- | core/src/main/res/layout/refresh_action_view.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/src/main/res/layout/refresh_action_view.xml b/core/src/main/res/layout/refresh_action_view.xml index 66148a553..d5b88922e 100644 --- a/core/src/main/res/layout/refresh_action_view.xml +++ b/core/src/main/res/layout/refresh_action_view.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> -<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="end" - android:indeterminateOnly="true"> - -</ProgressBar>
\ No newline at end of file +<ProgressBar + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="48dp" + android:layout_height="48dp" + android:layout_gravity="end" + android:padding="8dp" + android:indeterminateOnly="true"/> |