diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-04-30 03:47:18 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-04-30 03:47:18 +0000 |
commit | a5da575fd0682859a013e51bfc9fad7af32e3bbd (patch) | |
tree | ac8e38ff9c8c5337c86ec6c5d3538292ec09ad96 /app/src/main/res | |
parent | 13b224c07276455982d38eb1a3bba22b862ee3c7 (diff) | |
download | infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar.gz infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar.bz2 infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar.lz infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar.xz infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.tar.zst infinity-for-reddit-a5da575fd0682859a013e51bfc9fad7af32e3bbd.zip |
Migrate to ViewBinding in some fragments.
Diffstat (limited to 'app/src/main/res')
5 files changed, 0 insertions, 6 deletions
diff --git a/app/src/main/res/layout/fragment_subreddit_listing.xml b/app/src/main/res/layout/fragment_subreddit_listing.xml index 16122bd6..237322bf 100644 --- a/app/src/main/res/layout/fragment_subreddit_listing.xml +++ b/app/src/main/res/layout/fragment_subreddit_listing.xml @@ -1,7 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" - android:id="@+id/coordinator_layout_subreddit_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" tools:application=".SubredditListingFragment"> diff --git a/app/src/main/res/layout/fragment_user_listing.xml b/app/src/main/res/layout/fragment_user_listing.xml index 8e5aeb23..ec6c88b8 100644 --- a/app/src/main/res/layout/fragment_user_listing.xml +++ b/app/src/main/res/layout/fragment_user_listing.xml @@ -1,7 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" - android:id="@+id/coordinator_layout_user_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" tools:application=".UserListingFragment"> diff --git a/app/src/main/res/layout/fragment_view_imgur_image.xml b/app/src/main/res/layout/fragment_view_imgur_image.xml index 78bde93d..0c031d32 100644 --- a/app/src/main/res/layout/fragment_view_imgur_image.xml +++ b/app/src/main/res/layout/fragment_view_imgur_image.xml @@ -1,8 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" - xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/constraintLayout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".fragments.ViewImgurImageFragment"> diff --git a/app/src/main/res/layout/fragment_view_imgur_video.xml b/app/src/main/res/layout/fragment_view_imgur_video.xml index 824a6b02..3d5c6963 100644 --- a/app/src/main/res/layout/fragment_view_imgur_video.xml +++ b/app/src/main/res/layout/fragment_view_imgur_video.xml @@ -3,7 +3,6 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - android:id="@+id/player_view_view_imgur_video_fragment" xmlns:app="http://schemas.android.com/apk/res-auto" app:controller_layout_id="@layout/exo_playback_control_view" tools:context=".fragments.ViewImgurVideoFragment" />
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_view_reddit_gallery_image_or_gif.xml b/app/src/main/res/layout/fragment_view_reddit_gallery_image_or_gif.xml index 66c250dd..61296cc7 100644 --- a/app/src/main/res/layout/fragment_view_reddit_gallery_image_or_gif.xml +++ b/app/src/main/res/layout/fragment_view_reddit_gallery_image_or_gif.xml @@ -2,7 +2,6 @@ <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:id="@+id/constraintLayout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".fragments.ViewImgurImageFragment"> |