diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-11-04 15:08:57 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-11-04 15:08:57 +0000 |
commit | 44491cbd1bc2975ffa0849ae3c65fb45cdf12efe (patch) | |
tree | 88c85f7455fcf482167d344a1dbf4bb9bedb19dd /app/src/main/res/layout | |
parent | 6ee78c979f362e1f4573450df7db514be9f7bc4a (diff) | |
download | infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar.gz infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar.bz2 infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar.lz infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar.xz infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.tar.zst infinity-for-reddit-44491cbd1bc2975ffa0849ae3c65fb45cdf12efe.zip |
Start deleting awards related components.
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_give_award.xml | 33 | ||||
-rw-r--r-- | app/src/main/res/layout/dialog_give_award.xml | 23 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_comment_more_bottom_sheet.xml | 20 |
3 files changed, 0 insertions, 76 deletions
diff --git a/app/src/main/res/layout/activity_give_award.xml b/app/src/main/res/layout/activity_give_award.xml deleted file mode 100644 index a67e2927..00000000 --- a/app/src/main/res/layout/activity_give_award.xml +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<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/coordinator_layout_give_award_activity" - android:layout_width="match_parent" - android:layout_height="match_parent" - tools:context=".activities.GiveAwardActivity"> - - <com.google.android.material.appbar.AppBarLayout - android:id="@+id/appbar_layout_give_award_activity" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:theme="@style/AppTheme.AppBarOverlay"> - - <androidx.appcompat.widget.Toolbar - android:id="@+id/toolbar_give_award_activity" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:minHeight="?attr/actionBarSize" - app:title="@string/give_award_activity_label" - app:popupTheme="@style/AppTheme.PopupOverlay" - app:navigationIcon="?attr/homeAsUpIndicator" /> - - </com.google.android.material.appbar.AppBarLayout> - - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/recycler_view_give_award_activity" - android:layout_width="match_parent" - android:layout_height="match_parent" - app:layout_behavior="@string/appbar_scrolling_view_behavior" /> - -</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/dialog_give_award.xml b/app/src/main/res/layout/dialog_give_award.xml deleted file mode 100644 index fa9dfaef..00000000 --- a/app/src/main/res/layout/dialog_give_award.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="match_parent" - android:paddingTop="16dp" - android:paddingBottom="16dp" - android:paddingStart="24dp" - android:paddingEnd="16dp"> - - <TextView - android:layout_width="0dp" - android:layout_height="wrap_content" - android:layout_weight="1" - android:layout_marginEnd="16dp" - android:text="@string/anonymous" - android:textColor="?attr/primaryTextColor" /> - - <com.google.android.material.materialswitch.MaterialSwitch - android:id="@+id/switch_material_give_award_dialog" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> - -</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_comment_more_bottom_sheet.xml b/app/src/main/res/layout/fragment_comment_more_bottom_sheet.xml index 2ae50a0f..2aedd340 100644 --- a/app/src/main/res/layout/fragment_comment_more_bottom_sheet.xml +++ b/app/src/main/res/layout/fragment_comment_more_bottom_sheet.xml @@ -125,26 +125,6 @@ app:drawableStartCompat="@drawable/ic_copy_24dp" /> <TextView - android:id="@+id/give_award_text_view_comment_more_bottom_sheet_fragment" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:background="?attr/selectableItemBackground" - android:clickable="true" - android:drawablePadding="48dp" - android:focusable="true" - android:gravity="center_vertical" - android:paddingStart="32dp" - android:paddingTop="16dp" - android:paddingEnd="32dp" - android:paddingBottom="16dp" - android:text="@string/action_give_award" - android:textColor="?attr/primaryTextColor" - android:textSize="?attr/font_default" - android:fontFamily="?attr/font_family" - android:visibility="gone" - app:drawableStartCompat="@drawable/ic_give_award_24dp" /> - - <TextView android:id="@+id/report_view_comment_more_bottom_sheet_fragment" android:layout_width="match_parent" android:layout_height="wrap_content" |