small fixes
This commit is contained in:
parent
d7d08810b3
commit
3e21388e8e
3 changed files with 8 additions and 10 deletions
|
@ -29,8 +29,8 @@
|
|||
android:minHeight="@dimen/dashboard_map_toolbar"
|
||||
app:contentInsetLeft="54dp"
|
||||
app:contentInsetStart="54dp"
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp">
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
android:theme="?attr/toolbar_theme"
|
||||
app:contentInsetLeft="54dp"
|
||||
app:contentInsetStart="54dp"
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp">
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp">
|
||||
|
||||
<include layout="@layout/search_text_layout"/>
|
||||
|
||||
|
@ -42,8 +42,8 @@
|
|||
android:visibility="gone"
|
||||
app:contentInsetLeft="54dp"
|
||||
app:contentInsetStart="54dp"
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp"
|
||||
app:contentInsetRight="0dp"
|
||||
app:contentInsetEnd="0dp"
|
||||
tools:visibility="visible">
|
||||
|
||||
<LinearLayout
|
||||
|
|
|
@ -8,8 +8,6 @@ import android.view.MotionEvent;
|
|||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import androidx.core.content.ContextCompat;
|
||||
|
||||
import net.osmand.AndroidUtils;
|
||||
import net.osmand.plus.OsmandApplication;
|
||||
import net.osmand.plus.R;
|
||||
|
@ -47,10 +45,10 @@ public class SaveAsNewTrackBottomSheetDialogFragment extends MenuBottomSheetDial
|
|||
|
||||
final ImageView routePointImage = (ImageView) imagesRow.findViewById(R.id.route_point_image);
|
||||
final ImageView lineImage = (ImageView) imagesRow.findViewById(R.id.line_image);
|
||||
Drawable routePointDrawable = ContextCompat.getDrawable(app, nightMode
|
||||
Drawable routePointDrawable = app.getUIUtilities().getIcon(nightMode
|
||||
? R.drawable.img_help_trip_route_points_night
|
||||
: R.drawable.img_help_trip_route_points_day);
|
||||
Drawable lineDrawable = ContextCompat.getDrawable(app, nightMode
|
||||
Drawable lineDrawable = app.getUIUtilities().getIcon(nightMode
|
||||
? R.drawable.img_help_trip_track_night
|
||||
: R.drawable.img_help_trip_track_day);
|
||||
if (routePointDrawable != null && lineDrawable != null) {
|
||||
|
|
Loading…
Reference in a new issue