Fixed issue with selection in LIstView
This commit is contained in:
parent
bc67cf7878
commit
11e6cad25e
3 changed files with 5 additions and 3 deletions
|
@ -24,7 +24,8 @@
|
|||
<ListView android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
style="@style/OsmandListView"/>
|
||||
android:choiceMode="singleChoice"
|
||||
style="@style/OsmandListView"/>
|
||||
|
||||
|
||||
</LinearLayout>
|
|
@ -131,6 +131,7 @@ public class RoutePointsActivity extends OsmandListActivity {
|
|||
super.onListItemClick(l, v, position, id);
|
||||
RoutePoint rp = adapter.getItem(position);
|
||||
getSherlock().startActionMode(getPointActionModeCallback(rp));
|
||||
adapter.notifyDataSetChanged();
|
||||
}
|
||||
|
||||
private class PointItemAdapter extends ArrayAdapter<RoutePoint> {
|
||||
|
@ -239,7 +240,7 @@ public class RoutePointsActivity extends OsmandListActivity {
|
|||
|
||||
@Override
|
||||
public void onDestroyActionMode(ActionMode actionMode) {
|
||||
|
||||
adapter.notifyDataSetChanged();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -287,6 +288,7 @@ public class RoutePointsActivity extends OsmandListActivity {
|
|||
@Override
|
||||
public void onDestroyActionMode(ActionMode actionMode) {
|
||||
selectedItem = null;
|
||||
adapter.notifyDataSetChanged();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -101,7 +101,6 @@ public class RoutePointsPlugin extends OsmandPlugin {
|
|||
|
||||
@Override
|
||||
public void updateLayers(OsmandMapTileView mapView, MapActivity activity) {
|
||||
|
||||
if (routeStepsControl == null) {
|
||||
registerWidget(activity);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue