forked from organicmaps/organicmaps
[Android] Transit steps info is now scrollable (temporary solution). (#5885)
* [Android] Transit steps info is now scrollable. Signed-off-by: S. Kozyr <s.trump@gmail.com> * [Android] Fixed map buttons position when navigation panel raises. Signed-off-by: S. Kozyr <s.trump@gmail.com> * Introduced function to scroll to bottom. Signed-off-by: S. Kozyr <s.trump@gmail.com> --------- Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
e60737daf3
commit
e2f01d1724
3 changed files with 45 additions and 18 deletions
|
@ -829,7 +829,11 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
|
||||
private void initMainMenu()
|
||||
{
|
||||
mMainMenu = new MainMenu(findViewById(R.id.menu_frame), this::updateBottomWidgetsOffset);
|
||||
final View menuFrame = findViewById(R.id.menu_frame);
|
||||
mMainMenu = new MainMenu(menuFrame, () -> {
|
||||
this.updateBottomWidgetsOffset();
|
||||
mPlacePageViewModel.setPlacePageDistanceToTop(menuFrame.getTop());
|
||||
});
|
||||
|
||||
if (mIsTabletLayout)
|
||||
{
|
||||
|
|
|
@ -19,6 +19,7 @@ import android.text.style.TypefaceSpan;
|
|||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.annotation.IdRes;
|
||||
|
@ -32,11 +33,11 @@ import app.organicmaps.R;
|
|||
import app.organicmaps.bookmarks.data.DistanceAndAzimut;
|
||||
import app.organicmaps.location.LocationHelper;
|
||||
import app.organicmaps.util.Distance;
|
||||
import app.organicmaps.widget.recycler.DotDividerItemDecoration;
|
||||
import app.organicmaps.widget.recycler.MultilineLayoutManager;
|
||||
import app.organicmaps.util.Graphics;
|
||||
import app.organicmaps.util.ThemeUtils;
|
||||
import app.organicmaps.util.UiUtils;
|
||||
import app.organicmaps.widget.recycler.DotDividerItemDecoration;
|
||||
import app.organicmaps.widget.recycler.MultilineLayoutManager;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
|
@ -183,6 +184,8 @@ final class RoutingBottomMenuController implements View.OnClickListener
|
|||
rv.setAdapter(adapter);
|
||||
adapter.setItems(info.getTransitSteps());
|
||||
|
||||
scrollToBottom(rv);
|
||||
|
||||
TextView totalTimeView = mTransitFrame.findViewById(R.id.total_time);
|
||||
totalTimeView.setText(RoutingController.formatRoutingTime(mContext, info.getTotalTime(),
|
||||
R.dimen.text_size_routing_number));
|
||||
|
@ -210,6 +213,8 @@ final class RoutingBottomMenuController implements View.OnClickListener
|
|||
rv.addItemDecoration(mTransitViewDecorator);
|
||||
rv.setAdapter(adapter);
|
||||
adapter.setItems(pointsToRulerSteps(points));
|
||||
|
||||
scrollToBottom(rv);
|
||||
}
|
||||
else
|
||||
UiUtils.hide(rv); // Show only distance between start and finish
|
||||
|
@ -373,6 +378,14 @@ final class RoutingBottomMenuController implements View.OnClickListener
|
|||
}
|
||||
}
|
||||
|
||||
// Scroll RecyclerView to bottom using parent ScrollView.
|
||||
private static void scrollToBottom(RecyclerView rv)
|
||||
{
|
||||
final ScrollView parentScroll = (ScrollView) rv.getParent();
|
||||
if (parentScroll != null)
|
||||
parentScroll.postDelayed(() -> parentScroll.fullScroll(ScrollView.FOCUS_DOWN), 100);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
private static Spanned makeSpannedRoutingDetails(@NonNull Context context, @NonNull RoutingInfo routingInfo)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
|
@ -14,39 +14,49 @@
|
|||
android:id="@+id/total_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_alignParentStart="true"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
style="@style/MwmWidget.TextView.PlanDetail.Number.Time"
|
||||
tools:text="40 min"/>
|
||||
<TextView
|
||||
android:id="@+id/dot"
|
||||
android:layout_toEndOf="@id/total_time"
|
||||
style="@style/MwmWidget.TextView.PlanDetail.Number.Secondary"
|
||||
android:layout_marginStart="@dimen/margin_quarter_plus"
|
||||
android:layout_marginEnd="@dimen/margin_quarter_plus"
|
||||
android:layout_marginTop="@dimen/margin_eighth"
|
||||
android:layout_marginEnd="@dimen/margin_quarter_plus"
|
||||
android:text="•"
|
||||
app:layout_constraintStart_toEndOf="@id/total_time"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
tools:ignore="HardcodedText"/>
|
||||
<ImageView
|
||||
android:id="@+id/pedestrian_icon"
|
||||
android:layout_alignBottom="@id/total_time"
|
||||
android:layout_toEndOf="@id/dot"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/margin_quarter_plus"
|
||||
android:src="@drawable/ic_20px_route_planning_walk"
|
||||
app:layout_constraintBottom_toBottomOf="@id/total_time"
|
||||
app:layout_constraintStart_toEndOf="@id/dot"
|
||||
app:tint="?iconTint"/>
|
||||
<TextView
|
||||
android:id="@+id/total_distance"
|
||||
android:layout_toEndOf="@id/pedestrian_icon"
|
||||
style="@style/MwmWidget.TextView.PlanDetail.Number.Secondary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintStart_toEndOf="@id/pedestrian_icon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
tools:text="1 km"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/transit_recycler_view"
|
||||
android:layout_marginTop="@dimen/margin_half_plus"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_below="@id/total_time"
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</RelativeLayout>
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintHeight_max="150dp"
|
||||
android:layout_marginTop="@dimen/margin_half_plus"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/total_time"
|
||||
android:scrollbarAlwaysDrawVerticalTrack="true">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/transit_recycler_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</ScrollView>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
|
Loading…
Add table
Reference in a new issue