Fixed issue with selection in LIstView
This commit is contained in:
parent
8932aaf634
commit
bec16f2968
2 changed files with 5 additions and 2 deletions
|
@ -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"/>
|
||||
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue