Fix for missing XML tag
This commit is contained in:
parent
388b1a9214
commit
1ca1d687c7
2 changed files with 9 additions and 1 deletions
|
@ -30,6 +30,14 @@
|
|||
android:background="@android:color/transparent"
|
||||
android:src="@drawable/ic_action_delete_dark"/>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/ok_button"
|
||||
android:layout_width="?attr/actionBarSize"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="right"
|
||||
android:background="@android:color/transparent"
|
||||
android:src="@drawable/ic_action_done"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/save_button"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
|
@ -105,7 +105,7 @@ public class DownloadedRegionsLayer extends OsmandMapLayer implements IContextMe
|
|||
osmandRegions = rm.getOsmandRegions();
|
||||
|
||||
paintDownloaded = getPaint(view.getResources().getColor(R.color.region_uptodate));
|
||||
paintSelected = getPaint(view.getResources().getColor(R.color.region_selected);
|
||||
paintSelected = getPaint(view.getResources().getColor(R.color.region_selected));
|
||||
paintDownloading = getPaint(Color.argb(40, 50, 200, 50));
|
||||
paintOutdated = getPaint(view.getResources().getColor(R.color.region_updateable));
|
||||
|
||||
|
|
Loading…
Reference in a new issue