The "More" button no longer appears when the category description is short.

Now, whenever the UI state changes, the number of lines in the description is checked, and the visibility of the "More" button is determined based on that.

https://github.com/organicmaps/organicmaps/issues/5502

Signed-off-by: Mikhail Mitrofanov <mk.mitrofanov@outlook.com>
This commit is contained in:
Mikhail Mitrofanov 2024-08-27 17:52:23 +02:00 committed by Alexander Borsuk
parent 6ccbccd9a1
commit f4ea76b036

View file

@ -524,30 +524,37 @@ public class BookmarkListAdapter extends RecyclerView.Adapter<Holders.BaseBookma
private void setMoreButtonVisibility(TextView text, TextView moreBtn)
{
text.post(() ->
{
final int lineCount = text.getLineCount();
if (lineCount > MAX_VISIBLE_LINES)
{
text.setMaxLines(MAX_VISIBLE_LINES);
moreBtn.setVisibility(View.VISIBLE);
}
else
moreBtn.setVisibility(View.GONE);
});
text.post(() -> setShortModeDescription(text, moreBtn));
}
private void onMoreButtonClicked(TextView text, TextView moreBtn)
private void onMoreButtonClicked(TextView textView, TextView moreBtn)
{
if (text.getMaxLines() == MAX_VISIBLE_LINES)
if (isShortModeDescription(textView))
{
text.setMaxLines(Integer.MAX_VALUE);
moreBtn.setVisibility(View.GONE);
setExpandedModeDescription(textView, moreBtn);
}
else
{
text.setMaxLines(MAX_VISIBLE_LINES);
moreBtn.setVisibility(View.VISIBLE);
setShortModeDescription(textView, moreBtn);
}
}
private boolean isShortModeDescription(TextView text)
{
return text.getMaxLines() == MAX_VISIBLE_LINES;
}
private void setExpandedModeDescription(TextView textView, TextView moreBtn)
{
textView.setMaxLines(Integer.MAX_VALUE);
moreBtn.setVisibility(View.GONE);
}
private void setShortModeDescription(TextView textView, TextView moreBtn)
{
textView.setMaxLines(MAX_VISIBLE_LINES);
boolean isDescriptionTooLong = textView.getLineCount() > MAX_VISIBLE_LINES;
moreBtn.setVisibility(isDescriptionTooLong ? View.VISIBLE : View.GONE);
}
}