diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-04-18 03:34:43 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-04-18 03:34:43 +0000 |
commit | bde2220d91774337fba60cfdcc4324005b878736 (patch) | |
tree | ceeedce993984fadf5631d92c5c5d95885abb8b5 /app/src/main/res/layout/activity_comment.xml | |
parent | 372acf4cf45a0420998cba31683b3e66844d3a1e (diff) | |
download | infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar.gz infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar.bz2 infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar.lz infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar.xz infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.tar.zst infinity-for-reddit-bde2220d91774337fba60cfdcc4324005b878736.zip |
Remove unused attributes. Fix loading images using GlideImageGetter after the activity is destroyed.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/layout/activity_comment.xml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/src/main/res/layout/activity_comment.xml b/app/src/main/res/layout/activity_comment.xml index a9af4118..33b9cfc3 100644 --- a/app/src/main/res/layout/activity_comment.xml +++ b/app/src/main/res/layout/activity_comment.xml @@ -5,14 +5,12 @@ android:id="@+id/coordinator_layout_comment_activity" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="?attr/backgroundColor" tools:application=".CommentActivity"> <com.google.android.material.appbar.AppBarLayout android:id="@+id/appbar_layout_comment_activity" android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="?attr/toolbarAndTabBackgroundColor" android:theme="@style/AppTheme.AppBarOverlay"> <androidx.appcompat.widget.Toolbar @@ -39,7 +37,6 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="16dp" - android:textColor="?attr/commentColor" android:textSize="?attr/title_font_16" /> <androidx.recyclerview.widget.RecyclerView @@ -55,8 +52,7 @@ android:id="@+id/divider_comment_activity" android:layout_width="match_parent" android:layout_height="1dp" - android:layout_marginBottom="16dp" - android:background="?attr/dividerColor" /> + android:layout_marginBottom="16dp" /> <EditText android:id="@+id/comment_edit_text_comment_activity" |