Fix uneven gaping around title

Signed-off-by: Mynkara08 <mayunksingh2000@gmail.com>
This commit is contained in:
Mynkara08 2024-12-19 18:14:46 +05:30 committed by Konstantin Pastbin
parent b6cc1d57fa
commit 7762c66901
2 changed files with 1 additions and 11 deletions

View file

@ -447,13 +447,11 @@ public class BookmarkListAdapter extends RecyclerView.Adapter<Holders.BaseBookma
TextView moreBtn = desc.findViewById(R.id.more_btn);
TextView text = desc.findViewById(R.id.text);
TextView title = desc.findViewById(R.id.title);
TextView author = desc.findViewById(R.id.author);
setMoreButtonVisibility(text, moreBtn);
holder = new Holders.DescriptionViewHolder(desc, mSectionsDataSource.getCategory());
text.setOnClickListener(v -> onMoreButtonClicked(text, moreBtn));
moreBtn.setOnClickListener(v -> onMoreButtonClicked(text, moreBtn));
title.setOnClickListener(v -> onMoreButtonClicked(text, moreBtn));
author.setOnClickListener(v -> onMoreButtonClicked(text, moreBtn));
break;
}

View file

@ -13,18 +13,11 @@
android:textAppearance="@style/MwmTextAppearance.Body2.Primary"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/author"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/MwmTextAppearance.Body3"
app:layout_constraintTop_toBottomOf="@id/title" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintTop_toBottomOf="@id/author">
app:layout_constraintTop_toBottomOf="@id/title">
<TextView
android:id="@+id/text"
@ -42,7 +35,6 @@
android:background="@android:color/transparent"
android:clickable="true"
android:gravity="start|top"
android:padding="@dimen/margin_base"
android:text="@string/category_desc_more"
android:textColor="?attr/colorAccent"
android:layout_marginTop="2dp" />