diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-12-19 10:39:40 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-12-19 10:39:40 +0000 |
commit | a914ed95ef2874bbde229a79e5c314dad474e25f (patch) | |
tree | 05a970c6320a15c8eda4d8ac8f22d2b27812ee3b /app/src | |
parent | ae49dd50d4b8ccdbc99a142c44e29e63ab111a3a (diff) | |
download | infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar.gz infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar.bz2 infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar.lz infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar.xz infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.tar.zst infinity-for-reddit-a914ed95ef2874bbde229a79e5c314dad474e25f.zip |
Hide progress bar in post compact layout when the post is a video.
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/main/res/layout/item_post_compact.xml | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/app/src/main/res/layout/item_post_compact.xml b/app/src/main/res/layout/item_post_compact.xml index 411bf5fc..c3de103f 100644 --- a/app/src/main/res/layout/item_post_compact.xml +++ b/app/src/main/res/layout/item_post_compact.xml @@ -89,8 +89,7 @@ app:layout_constraintBottom_toTopOf="@id/flow_layout_item_post_compact" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toStartOf="@id/barrier2" - app:layout_constraintTop_toTopOf="parent" - tools:text="asdfas fas dfa sdfa sdfa sdfasdfasdf asdfasdfasdf" /> + app:layout_constraintTop_toTopOf="parent" /> <com.nex3z.flowlayout.FlowLayout android:id="@+id/flow_layout_item_post_compact" @@ -214,9 +213,7 @@ app:layout_constraintTop_toBottomOf="@id/flow_layout_item_post_compact" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toStartOf="@id/barrier2" - app:layout_constraintBottom_toBottomOf="parent" - tools:text="www.example.com" - tools:visibility="visible" /> + app:layout_constraintBottom_toBottomOf="parent" /> <RelativeLayout android:id="@+id/image_view_wrapper_item_post_compact" @@ -227,8 +224,7 @@ app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toEndOf="@id/barrier2" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" - tools:visibility="visible"> + app:layout_constraintTop_toTopOf="parent"> <FrameLayout android:layout_width="match_parent" @@ -256,7 +252,8 @@ android:id="@+id/progress_bar_item_post_compact" android:layout_width="36dp" android:layout_height="36dp" - android:layout_centerInParent="true" /> + android:layout_centerInParent="true" + android:visibility="gone" /> </RelativeLayout> @@ -273,16 +270,14 @@ app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toEndOf="@id/barrier2" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" - tools:visibility="visible" /> + app:layout_constraintTop_toTopOf="parent" /> <androidx.constraintlayout.widget.Barrier android:id="@+id/barrier2" android:layout_width="wrap_content" android:layout_height="wrap_content" app:barrierDirection="start" - app:constraint_referenced_ids="image_view_wrapper_item_post_compact,image_view_no_preview_link_item_post_compact" - tools:layout_editor_absoluteX="411dp" /> + app:constraint_referenced_ids="image_view_wrapper_item_post_compact,image_view_no_preview_link_item_post_compact" /> </androidx.constraintlayout.widget.ConstraintLayout> |