diff options
author | Alex Ning <chineseperson5@gmail.com> | 2022-01-21 07:44:49 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2022-01-21 07:44:49 +0000 |
commit | de105359f90753828836dbe6181d45558a905bc3 (patch) | |
tree | fa23967511e412537eb03bbc169bce01b2efec80 /app/src/main/res/layout/item_comment.xml | |
parent | c6f5e3c8f60846dd3db93199ba8ea2bdfe1d9f75 (diff) | |
download | infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar.gz infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar.bz2 infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar.lz infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar.xz infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.tar.zst infinity-for-reddit-de105359f90753828836dbe6181d45558a905bc3.zip |
Fix views in comment toolbar overlapping each other.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/layout/item_comment.xml | 75 |
1 files changed, 50 insertions, 25 deletions
diff --git a/app/src/main/res/layout/item_comment.xml b/app/src/main/res/layout/item_comment.xml index e087c087..e64206d7 100644 --- a/app/src/main/res/layout/item_comment.xml +++ b/app/src/main/res/layout/item_comment.xml @@ -122,96 +122,121 @@ android:id="@+id/up_vote_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" android:background="?actionBarItemBackground" android:clickable="true" android:focusable="true" + android:padding="8dp" android:src="@drawable/ic_arrow_upward_grey_24dp" + app:layout_constraintHorizontal_chainStyle="spread_inside" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@+id/score_text_view_item_post_comment" + app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent" /> + app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/score_text_view_item_post_comment" android:layout_width="64dp" android:layout_height="wrap_content" + android:fontFamily="?attr/font_family" android:gravity="center" android:textSize="?attr/font_12" android:textStyle="bold" - android:fontFamily="?attr/font_family" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@+id/down_vote_button_item_post_comment" + app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/up_vote_button_item_post_comment" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent"/> + app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/down_vote_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" android:background="?actionBarItemBackground" android:clickable="true" android:focusable="true" + android:padding="8dp" android:src="@drawable/ic_arrow_downward_grey_24dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@+id/placeholder_item_post_comment" + app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/score_text_view_item_post_comment" - app:layout_constraintEnd_toStartOf="@id/more_button_item_post_comment" - app:layout_constraintTop_toTopOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <View + android:id="@+id/placeholder_item_post_comment" + android:layout_width="0dp" + android:layout_height="0dp" + app:layout_constraintWidth_min="1dp" + app:layout_constrainedWidth="true" app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintHorizontal_bias="0" /> + app:layout_constraintEnd_toStartOf="@+id/more_button_item_post_comment" + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toEndOf="@+id/down_vote_button_item_post_comment" + app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/more_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" android:background="?actionBarItemBackground" android:clickable="true" android:focusable="true" + android:padding="8dp" android:src="@drawable/ic_more_vert_grey_24dp" + app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/expand_button_item_post_comment" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent"/> + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toEndOf="@+id/placeholder_item_post_comment" + app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/expand_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:background="?actionBarItemBackground" + android:clickable="true" + android:focusable="true" + android:fontFamily="?attr/font_family" android:gravity="center" android:paddingStart="8dp" android:paddingEnd="8dp" android:textSize="?attr/font_default" - android:fontFamily="?attr/font_family" - android:background="?actionBarItemBackground" - android:clickable="true" - android:focusable="true" android:visibility="gone" + app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/save_button_item_post_comment" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent"/> + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toEndOf="@+id/more_button_item_post_comment" + app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/save_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" android:background="?actionBarItemBackground" android:clickable="true" android:focusable="true" + android:padding="8dp" + app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/reply_button_item_post_comment" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent"/> + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toEndOf="@+id/expand_button_item_post_comment" + app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/reply_button_item_post_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" android:background="?actionBarItemBackground" android:clickable="true" android:focusable="true" + android:padding="8dp" android:src="@drawable/ic_reply_grey_24dp" + app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintBottom_toBottomOf="parent"/> + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toEndOf="@+id/save_button_item_post_comment" + app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> |