[android] Fix: Display list of stop points in ruler and transit mode properly in RTL

Changes made:
	- In MultilineLayoutManager.java: if called with LAYOUT_DIRECTION_RTL tag,
	the layout is now properly written.
	- In RoutinBottomMenuController.java: MultilineLayoutManager class is now called with the
	new parameter, the mTransitFrame's layout direction.
	- In DotDividerItemDecoration.java: to properly place the dots between the elements in the
	list, these elements are iterated from right to left when the layout direction is RTL.

Signed-off-by: Beatriz Mira Mendes <beatriz.mira.mendes@tecnico.ulisboa.pt>
This commit is contained in:
Beatriz Mira Mendes 2024-04-02 12:03:19 +01:00 committed by Viktor Havaka
parent 115782d817
commit 3c45518d1f
3 changed files with 19 additions and 7 deletions

View file

@ -176,7 +176,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
UiUtils.show(mTransitFrame);
RecyclerView rv = mTransitFrame.findViewById(R.id.transit_recycler_view);
TransitStepAdapter adapter = new TransitStepAdapter();
rv.setLayoutManager(new MultilineLayoutManager());
rv.setLayoutManager(new MultilineLayoutManager(mTransitFrame.getLayoutDirection()));
rv.setNestedScrollingEnabled(false);
rv.removeItemDecoration(mTransitViewDecorator);
rv.addItemDecoration(mTransitViewDecorator);
@ -206,7 +206,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
{
UiUtils.show(rv);
final TransitStepAdapter adapter = new TransitStepAdapter();
rv.setLayoutManager(new MultilineLayoutManager());
rv.setLayoutManager(new MultilineLayoutManager(mTransitFrame.getLayoutDirection()));
rv.setNestedScrollingEnabled(false);
rv.removeItemDecoration(mTransitViewDecorator);
rv.addItemDecoration(mTransitViewDecorator);

View file

@ -41,7 +41,10 @@ public class DotDividerItemDecoration extends RecyclerView.ItemDecoration
return;
int childCount = parent.getChildCount();
for (int i = 0; i < childCount - 1; i++)
boolean parentLayoutRTL = (parent.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL);
for (int i = parentLayoutRTL ? childCount - 1 : 0; parentLayoutRTL ? i > 0 : i < childCount - 1;
i += parentLayoutRTL ? -1 : 1)
{
View child = parent.getChildAt(i);
@ -53,7 +56,6 @@ public class DotDividerItemDecoration extends RecyclerView.ItemDecoration
int bottom = top + mDivider.getIntrinsicHeight();
mDivider.setBounds(left, top, right, bottom);
mDivider.draw(c);
}
}

View file

@ -8,9 +8,12 @@ import androidx.recyclerview.widget.RecyclerView;
public class MultilineLayoutManager extends RecyclerView.LayoutManager
{
public MultilineLayoutManager()
private boolean reverseLayout = false;
public MultilineLayoutManager(int layoutDirection)
{
setAutoMeasureEnabled(true);
reverseLayout = layoutDirection == View.LAYOUT_DIRECTION_RTL;
}
@Override
@ -25,6 +28,8 @@ public class MultilineLayoutManager extends RecyclerView.LayoutManager
{
detachAndScrapAttachedViews(recycler);
assertInLayoutOrScroll(null);
int widthUsed = 0;
int heightUsed = 0;
int lineHeight = 0;
@ -55,7 +60,11 @@ public class MultilineLayoutManager extends RecyclerView.LayoutManager
}
lineHeight = 0;
}
layoutDecorated(child, widthUsed, heightUsed, widthUsed + width, heightUsed + height);
if (reverseLayout)
layoutDecoratedWithMargins(child, getWidth() - widthUsed - width, heightUsed,
getWidth() - widthUsed, heightUsed + height);
else
layoutDecorated(child, widthUsed, heightUsed, widthUsed + width, heightUsed + height);
widthUsed += width;
itemsCountOneLine++;
}
@ -63,7 +72,7 @@ public class MultilineLayoutManager extends RecyclerView.LayoutManager
private int squeezeChildIntoLine(int widthUsed, int heightUsed, @NonNull View child)
{
if (!(child instanceof SqueezingInterface))
if (!(child instanceof SqueezingInterface))
return getDecoratedMeasuredWidth(child);
int availableWidth = getWidth() - widthUsed - getDecoratedRight(child);
@ -79,6 +88,7 @@ public class MultilineLayoutManager extends RecyclerView.LayoutManager
public interface SqueezingInterface
{
void squeezeTo(@Dimension int width);
@Dimension
int getMinimumAcceptableSize();
}