Fixed issue with selection in LIstView

This commit is contained in:
unknown 2014-06-20 12:45:57 +03:00
parent 8932aaf634
commit bec16f2968
2 changed files with 5 additions and 2 deletions

View file

@ -24,6 +24,7 @@
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:choiceMode="singleChoice"
style="@style/OsmandListView"/>

View file

@ -132,6 +132,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> {
@ -262,6 +263,7 @@ public class RoutePointsActivity extends OsmandListActivity {
@Override
public void onDestroyActionMode(ActionMode actionMode) {
selectedItem = null;
adapter.notifyDataSetChanged();
}
};
}