diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-10-08 13:48:58 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-10-08 13:48:58 +0000 |
commit | c4fd313839466df975a2afc6ad03e8f06dedf2e8 (patch) | |
tree | fda8615753caa54f02b45ff189c858e71bc89b34 /app/src/main/res | |
parent | 35f9a645d864922f12fa9c04793adf7e3ce39036 (diff) | |
download | infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar.gz infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar.bz2 infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar.lz infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar.xz infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.tar.zst infinity-for-reddit-c4fd313839466df975a2afc6ad03e8f06dedf2e8.zip |
Add ViewGifActivity to view gifs. Fixed some links cannot be opened by browsers. Maybe fixed IllegalStateException in ViewSubredditDetailActivity and FilteredThingActivity. Minor bugs fixed.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_view_gif.xml | 41 | ||||
-rw-r--r-- | app/src/main/res/menu/view_gif_activity.xml | 10 |
2 files changed, 51 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_view_gif.xml b/app/src/main/res/layout/activity_view_gif.xml new file mode 100644 index 00000000..b1821e41 --- /dev/null +++ b/app/src/main/res/layout/activity_view_gif.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout 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" + android:id="@+id/parent_relative_layout_view_gif_activity" + android:background="@android:color/black" + tools:application="ml.docilealligator.infinityforreddit.Activity.ViewGIFActivity"> + + <ProgressBar + android:id="@+id/progress_bar_view_gif_activity" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerInParent="true" /> + + <pl.droidsonroids.gif.GifImageView + android:id="@+id/image_view_view_gif_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:gest_fillViewport="true" /> + + <LinearLayout + android:id="@+id/load_image_error_linear_layout_view_gif_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="gone"> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:drawableTop="@drawable/ic_error_outline_white_24dp" + android:layout_gravity="center" + android:gravity="center" + android:textColor="@android:color/white" + android:text="@string/tap_to_retry" + android:textSize="?attr/font_default" /> + + </LinearLayout> + +</RelativeLayout> diff --git a/app/src/main/res/menu/view_gif_activity.xml b/app/src/main/res/menu/view_gif_activity.xml new file mode 100644 index 00000000..493c9fdb --- /dev/null +++ b/app/src/main/res/menu/view_gif_activity.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item + android:id="@+id/action_download_view_gif" + android:orderInCategory="1" + android:title="@string/action_download" + android:icon="@drawable/ic_file_download_white_24dp" + app:showAsAction="always" /> +</menu>
\ No newline at end of file |