keepass2android/src/keepass2android/GroupBaseActivity.cs

798 lines
24 KiB
C#
Raw Normal View History

2013-02-23 11:43:42 -05:00
/*
This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin.
Keepass2Android is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
2013-02-23 11:43:42 -05:00
(at your option) any later version.
Keepass2Android is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.Collections.Generic;
using System.Linq;
2013-02-23 11:43:42 -05:00
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using KeePassLib;
using Android.Preferences;
2013-08-28 08:00:54 -04:00
using KeePassLib.Interfaces;
2013-11-20 13:14:57 -05:00
using KeePassLib.Serialization;
2013-08-28 08:00:54 -04:00
using KeePassLib.Utility;
using keepass2android.Io;
2013-08-28 08:00:54 -04:00
using keepass2android.database.edit;
2013-02-23 11:43:42 -05:00
using keepass2android.view;
using Android.Graphics.Drawables;
using Android.Support.V4.View;
using CursorAdapter = Android.Support.V4.Widget.CursorAdapter;
using Object = Java.Lang.Object;
2013-02-23 11:43:42 -05:00
namespace keepass2android
{
public abstract class GroupBaseActivity : LockCloseActivity {
public const String KeyEntry = "entry";
public const String KeyMode = "mode";
2013-02-23 11:43:42 -05:00
public virtual void LaunchActivityForEntry(PwEntry pwEntry, int pos)
2013-02-23 11:43:42 -05:00
{
EntryActivity.Launch(this, pwEntry, pos, AppTask);
2013-02-23 11:43:42 -05:00
}
protected GroupBaseActivity ()
2013-02-23 11:43:42 -05:00
{
}
protected GroupBaseActivity (IntPtr javaReference, JniHandleOwnership transfer)
2013-02-23 11:43:42 -05:00
: base(javaReference, transfer)
{
}
protected override void OnSaveInstanceState(Bundle outState)
{
base.OnSaveInstanceState(outState);
AppTask.ToBundle(outState);
}
2013-08-28 08:00:54 -04:00
public virtual void SetupNormalButtons()
{
SetNormalButtonVisibility(AddGroupEnabled, AddEntryEnabled);
2013-08-28 08:00:54 -04:00
}
protected virtual bool AddGroupEnabled
{
get { return App.Kp2a.GetDb().CanWrite; }
}
protected virtual bool AddEntryEnabled
{
get { return App.Kp2a.GetDb().CanWrite; }
}
public void SetNormalButtonVisibility(bool showAddGroup, bool showAddEntry)
{
FindViewById(Resource.Id.bottom_bar).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.divider2).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabCancelAddNew).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewGroup).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewEntry).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNew).Visibility = (showAddGroup || showAddEntry) ? ViewStates.Visible : ViewStates.Gone;
/*TODO Remove
View insertElement = FindViewById(Resource.Id.insert_element);
insertElement.Visibility = ViewStates.Gone;
View insertElementCancel = FindViewById(Resource.Id.cancel_insert_element);
insertElementCancel.Visibility = ViewStates.Gone;
View addGroup = FindViewById(Resource.Id.add_group);
addGroup.Visibility = showAddGroup ? ViewStates.Visible : ViewStates.Gone;
View addEntry = FindViewById(Resource.Id.add_entry);
addEntry.Visibility = showAddEntry ? ViewStates.Visible : ViewStates.Gone;
*/
/*
if (!showAddEntry && !showAddGroup)
{
View divider2 = FindViewById(Resource.Id.divider2);
divider2.Visibility = ViewStates.Gone;
FindViewById(Resource.Id.bottom_bar).Visibility = ViewStates.Gone;
View list = FindViewById(Android.Resource.Id.List);
var lp = (RelativeLayout.LayoutParams)list.LayoutParameters;
lp.AddRule(LayoutRules.AlignParentBottom, (int)LayoutRules.True);
}*/
}
protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)
{
base.OnActivityResult(requestCode, resultCode, data);
if (AppTask.TryGetFromActivityResult(data, ref AppTask))
{
//make sure the app task is passed to the calling activity
AppTask.SetActivityResult(this, KeePass.ExitNormal);
}
2013-08-28 08:00:54 -04:00
2013-09-03 16:58:15 -04:00
if (resultCode == Result.Ok)
{
String groupName = data.Extras.GetString(GroupEditActivity.KeyName);
int groupIconId = data.Extras.GetInt(GroupEditActivity.KeyIconId);
PwUuid groupCustomIconId =
new PwUuid(MemUtil.HexStringToByteArray(data.Extras.GetString(GroupEditActivity.KeyCustomIconId)));
String strGroupUuid = data.Extras.GetString(GroupEditActivity.KeyGroupUuid);
GroupBaseActivity act = this;
Handler handler = new Handler();
RunnableOnFinish task;
if (strGroupUuid == null)
{
task = AddGroup.GetInstance(this, App.Kp2a, groupName, groupIconId, Group, new RefreshTask(handler, this), false);
}
else
{
PwUuid groupUuid = new PwUuid(MemUtil.HexStringToByteArray(strGroupUuid));
task = new EditGroup(this, App.Kp2a, groupName, (PwIcon) groupIconId, groupCustomIconId, App.Kp2a.GetDb().Groups[groupUuid],
new RefreshTask(handler, this));
}
ProgressTask pt = new ProgressTask(App.Kp2a, act, task);
pt.Run();
}
if (resultCode == KeePass.ExitCloseAfterTaskComplete)
{
2013-08-28 08:00:54 -04:00
AppTask.SetActivityResult(this, KeePass.ExitCloseAfterTaskComplete);
Finish();
}
if (resultCode == KeePass.ExitReloadDb)
{
AppTask.SetActivityResult(this, KeePass.ExitReloadDb);
Finish();
}
}
2013-02-23 11:43:42 -05:00
private ISharedPreferences _prefs;
2013-02-23 11:43:42 -05:00
protected PwGroup Group;
internal AppTask AppTask;
//TODO protected GroupView GroupView;
2014-05-25 14:09:06 -04:00
private String strCachedGroupUuid = null;
public String UuidGroup {
get {
if (strCachedGroupUuid == null) {
strCachedGroupUuid = MemUtil.ByteArrayToHexString (Group.Uuid.UuidBytes);
}
return strCachedGroupUuid;
}
}
2013-02-23 11:43:42 -05:00
protected override void OnResume() {
base.OnResume();
AppTask.StartInGroupActivity(this);
2013-08-28 08:00:54 -04:00
AppTask.SetupGroupBaseActivityButtons(this);
2013-02-23 11:43:42 -05:00
RefreshIfDirty();
2013-02-23 11:43:42 -05:00
}
public override bool OnSearchRequested()
{
Intent i = new Intent(this, typeof(SearchActivity));
AppTask.ToIntent(i);
StartActivityForResult(i, 0);
2013-02-23 11:43:42 -05:00
return true;
}
public void RefreshIfDirty() {
Database db = App.Kp2a.GetDb();
if ( db.Dirty.Contains(Group) ) {
db.Dirty.Remove(Group);
/*TODO BaseAdapter adapter = (BaseAdapter) ListAdapter;
adapter.NotifyDataSetChanged();*/
2013-02-23 11:43:42 -05:00
}
}
/*TODO
* protected override void OnListItemClick(ListView l, View v, int position, long id) {
2013-02-23 11:43:42 -05:00
base.OnListItemClick(l, v, position, id);
IListAdapter adapt = ListAdapter;
2013-02-23 11:43:42 -05:00
ClickView cv = (ClickView) adapt.GetView(position, null, null);
cv.OnClick();
}
*/
2013-02-23 11:43:42 -05:00
protected override void OnCreate(Bundle savedInstanceState) {
base.OnCreate(savedInstanceState);
AppTask = AppTask.GetTaskInOnCreate(savedInstanceState, Intent);
2013-02-23 11:43:42 -05:00
// Likely the app has been killed exit the activity
if ( ! App.Kp2a.GetDb().Loaded ) {
2013-02-23 11:43:42 -05:00
Finish();
return;
}
_prefs = PreferenceManager.GetDefaultSharedPreferences(this);
SetContentView(Resource.Layout.group);
FindViewById(Resource.Id.fabAddNew).Click += (sender, args) =>
{
FindViewById(Resource.Id.fabCancelAddNew).Visibility = ViewStates.Visible;
FindViewById(Resource.Id.fabAddNewGroup).Visibility = AddGroupEnabled ? ViewStates.Visible : ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewEntry).Visibility = AddEntryEnabled ? ViewStates.Visible : ViewStates.Gone;
FindViewById(Resource.Id.fabAddNew).Visibility = ViewStates.Gone;
};
FindViewById(Resource.Id.fabCancelAddNew).Click += (sender, args) =>
{
FindViewById(Resource.Id.fabCancelAddNew).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewGroup).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewEntry).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNew).Visibility = ViewStates.Visible;
};
2013-08-28 08:00:54 -04:00
FindViewById(Resource.Id.cancel_insert_element).Click += (sender, args) => StopMovingElement();
FindViewById(Resource.Id.insert_element).Click += (sender, args) => InsertElement();
SetResult(KeePass.ExitNormal);
2013-02-23 11:43:42 -05:00
}
2013-08-28 08:00:54 -04:00
private void InsertElement()
{
MoveElementTask moveElementTask = (MoveElementTask)AppTask;
IStructureItem elementToMove = App.Kp2a.GetDb().KpDatabase.RootGroup.FindObject(moveElementTask.Uuid, true, null);
2013-08-30 16:58:29 -04:00
var moveElement = new MoveElement(elementToMove, Group, this, App.Kp2a, new ActionOnFinish((success, message) => { StopMovingElement(); if (!String.IsNullOrEmpty(message)) Toast.MakeText(this, message, ToastLength.Long).Show();}));
2013-08-28 08:00:54 -04:00
var progressTask = new ProgressTask(App.Kp2a, this, moveElement);
progressTask.Run();
}
2013-02-23 11:43:42 -05:00
protected void SetGroupTitle()
2013-02-23 11:43:42 -05:00
{
String name = Group.Name;
String titleText;
bool clickable = (Group != null) && (Group.IsVirtual == false) && (Group.ParentGroup != null);
if (!String.IsNullOrEmpty(name))
{
titleText = name;
} else
{
titleText = GetText(Resource.String.root);
}
SupportActionBar.Title = titleText;
if (clickable)
{
SupportActionBar.SetHomeButtonEnabled(true);
SupportActionBar.SetDisplayHomeAsUpEnabled(true);
SupportActionBar.SetDisplayShowHomeEnabled(true);
}
2013-02-23 11:43:42 -05:00
}
protected void SetGroupIcon() {
if (Group != null) {
Drawable drawable = App.Kp2a.GetDb().DrawableFactory.GetIconDrawable(Resources, App.Kp2a.GetDb().KpDatabase, Group.IconId, Group.CustomIconUuid);
SupportActionBar.SetDisplayShowHomeEnabled(true);
//SupportActionBar.SetIcon(drawable);
2013-02-23 11:43:42 -05:00
}
}
class SuggestionListener: Java.Lang.Object, SearchView.IOnSuggestionListener, Android.Support.V7.Widget.SearchView.IOnSuggestionListener
{
private readonly CursorAdapter _suggestionsAdapter;
private readonly GroupBaseActivity _activity;
private readonly IMenuItem _searchItem;
public SuggestionListener(Android.Support.V4.Widget.CursorAdapter suggestionsAdapter, GroupBaseActivity activity, IMenuItem searchItem)
{
_suggestionsAdapter = suggestionsAdapter;
_activity = activity;
_searchItem = searchItem;
}
public bool OnSuggestionClick(int position)
{
var cursor = _suggestionsAdapter.Cursor;
cursor.MoveToPosition(position);
string entryIdAsHexString = cursor.GetString(cursor.GetColumnIndexOrThrow(SearchManager.SuggestColumnIntentDataId));
EntryActivity.Launch(_activity, App.Kp2a.GetDb().Entries[new PwUuid(MemUtil.HexStringToByteArray(entryIdAsHexString))],-1,_activity.AppTask);
((SearchView) _searchItem.ActionView).Iconified = true;
return true;
}
public bool OnSuggestionSelect(int position)
{
return false;
}
}
class OnQueryTextListener: Java.Lang.Object, Android.Support.V7.Widget.SearchView.IOnQueryTextListener
{
private readonly GroupBaseActivity _activity;
public OnQueryTextListener(GroupBaseActivity activity)
{
_activity = activity;
}
public bool OnQueryTextChange(string newText)
{
return false;
}
public bool OnQueryTextSubmit(string query)
{
if (String.IsNullOrEmpty(query))
return false; //let the default happen
Intent searchIntent = new Intent(_activity, typeof(search.SearchResults));
searchIntent.SetAction(Intent.ActionSearch); //currently not necessary to set because SearchResults doesn't care, but let's be as close to the default as possible
searchIntent.PutExtra(SearchManager.Query, query);
//forward appTask:
_activity.AppTask.ToIntent(searchIntent);
_activity.StartActivityForResult(searchIntent, 0);
return true;
}
}
2013-02-23 11:43:42 -05:00
public override bool OnCreateOptionsMenu(IMenu menu) {
base.OnCreateOptionsMenu(menu);
MenuInflater inflater = MenuInflater;
inflater.Inflate(Resource.Menu.group, menu);
var searchManager = (SearchManager) GetSystemService(SearchService);
IMenuItem searchItem = menu.FindItem(Resource.Id.menu_search);
var view = MenuItemCompat.GetActionView(searchItem);
var searchView = view.JavaCast<Android.Support.V7.Widget.SearchView>();
searchView.SetSearchableInfo(searchManager.GetSearchableInfo(ComponentName));
searchView.SetOnSuggestionListener(new SuggestionListener(searchView.SuggestionsAdapter, this, searchItem));
searchView.SetOnQueryTextListener(new OnQueryTextListener(this));
var item = menu.FindItem(Resource.Id.menu_sync);
if (item != null)
{
if (App.Kp2a.GetDb().Ioc.IsLocalFile())
item.SetVisible(false);
else
item.SetVisible(true);
}
2013-02-23 11:43:42 -05:00
return true;
}
2013-02-23 11:43:42 -05:00
public override bool OnPrepareOptionsMenu(IMenu menu) {
if ( ! base.OnPrepareOptionsMenu(menu) ) {
return false;
}
Util.PrepareDonateOptionMenu(menu, this);
2013-02-23 11:43:42 -05:00
return true;
}
public override bool OnOptionsItemSelected(IMenuItem item) {
switch ( item.ItemId ) {
2013-04-06 14:26:16 -04:00
case Resource.Id.menu_donate:
return Util.GotoDonateUrl(this);
2013-02-23 11:43:42 -05:00
case Resource.Id.menu_lock:
2013-07-25 08:47:05 -04:00
App.Kp2a.LockDatabase();
2013-02-23 11:43:42 -05:00
return true;
2013-06-19 13:44:35 -04:00
2013-02-23 11:43:42 -05:00
case Resource.Id.menu_search:
2013-06-19 13:44:35 -04:00
case Resource.Id.menu_search_advanced:
2013-02-23 11:43:42 -05:00
OnSearchRequested();
return true;
case Resource.Id.menu_app_settings:
DatabaseSettingsActivity.Launch(this);
2013-02-23 11:43:42 -05:00
return true;
case Resource.Id.menu_sync:
Synchronize();
return true;
2013-02-23 11:43:42 -05:00
case Resource.Id.menu_sort:
ChangeSort();
2013-02-23 11:43:42 -05:00
return true;
case Android.Resource.Id.Home:
//Currently the action bar only displays the home button when we come from a previous activity.
//So we can simply Finish. See this page for information on how to do this in more general (future?) cases:
//http://developer.android.com/training/implementing-navigation/ancestral.html
2013-08-28 08:00:54 -04:00
AppTask.SetActivityResult(this, KeePass.ExitNormal);
Finish();
2013-05-17 00:53:58 -04:00
OverridePendingTransition(Resource.Animation.anim_enter_back, Resource.Animation.anim_leave_back);
return true;
2013-02-23 11:43:42 -05:00
}
return base.OnOptionsItemSelected(item);
}
public class SyncOtpAuxFile: RunnableOnFinish
2013-11-20 13:14:57 -05:00
{
private readonly IOConnectionInfo _ioc;
public SyncOtpAuxFile(IOConnectionInfo ioc) : base(null)
2013-11-20 13:14:57 -05:00
{
_ioc = ioc;
}
public override void Run()
{
StatusLogger.UpdateMessage(UiStringKey.SynchronizingOtpAuxFile);
try
2013-11-20 13:14:57 -05:00
{
//simply open the file. The file storage does a complete sync.
using (App.Kp2a.GetOtpAuxFileStorage(_ioc).OpenFileForRead(_ioc))
{
}
2013-11-20 13:14:57 -05:00
Finish(true);
}
catch (Exception e)
2013-11-20 13:14:57 -05:00
{
Finish(false, e.Message);
2013-11-20 13:14:57 -05:00
}
2013-11-20 13:14:57 -05:00
}
2013-11-20 13:14:57 -05:00
}
private void Synchronize()
{
var filestorage = App.Kp2a.GetFileStorage(App.Kp2a.GetDb().Ioc);
RunnableOnFinish task;
OnFinish onFinish = new ActionOnFinish((success, message) =>
{
if (!String.IsNullOrEmpty(message))
Toast.MakeText(this, message, ToastLength.Long).Show();
/*TODO
// Tell the adapter to refresh it's list
BaseAdapter adapter = (BaseAdapter)ListAdapter;
adapter.NotifyDataSetChanged();
*/
if (App.Kp2a.GetDb().OtpAuxFileIoc != null)
{
var task2 = new SyncOtpAuxFile(App.Kp2a.GetDb().OtpAuxFileIoc);
new ProgressTask(App.Kp2a, this, task2).Run();
}
});
if (filestorage is CachingFileStorage)
{
task = new SynchronizeCachedDatabase(this, App.Kp2a, onFinish);
}
else
{
task = new CheckDatabaseForChanges(this, App.Kp2a, onFinish);
}
var progressTask = new ProgressTask(App.Kp2a, this, task);
progressTask.Run();
}
2013-08-28 08:00:54 -04:00
public override void OnBackPressed()
{
AppTask.SetActivityResult(this, KeePass.ExitNormal);
base.OnBackPressed();
}
private void ChangeSort()
{
var sortOrderManager = new GroupViewSortOrderManager(this);
IEnumerable<string> sortOptions = sortOrderManager.SortOrders.Select(
o => GetString(o.ResourceId)
);
int selectedBefore = sortOrderManager.GetCurrentSortOrderIndex();
new AlertDialog.Builder(this)
.SetSingleChoiceItems(sortOptions.ToArray(), selectedBefore, (sender, args) =>
{
int selectedAfter = args.Which;
sortOrderManager.SetNewSortOrder(selectedAfter);
// Refresh menu titles
ActivityCompat.InvalidateOptionsMenu(this);
// Mark all groups as dirty now to refresh them on load
Database db = App.Kp2a.GetDb();
db.MarkAllGroupsAsDirty();
// We'll manually refresh this group so we can remove it
db.Dirty.Remove(Group);
// Tell the adapter to refresh it's list
/*TODO
BaseAdapter adapter = (BaseAdapter)ListAdapter;
adapter.NotifyDataSetChanged();
*/
2013-02-23 11:43:42 -05:00
})
.SetPositiveButton(Android.Resource.String.Ok, (sender, args) => ((Dialog)sender).Dismiss())
.Show();
2013-02-23 11:43:42 -05:00
}
public class RefreshTask : OnFinish {
readonly GroupBaseActivity _act;
2013-02-23 11:43:42 -05:00
public RefreshTask(Handler handler, GroupBaseActivity act):base(handler) {
_act = act;
2013-02-23 11:43:42 -05:00
}
public override void Run() {
if ( Success) {
_act.RefreshIfDirty();
2013-02-23 11:43:42 -05:00
} else {
DisplayMessage(_act);
2013-02-23 11:43:42 -05:00
}
}
}
public class AfterDeleteGroup : OnFinish {
readonly GroupBaseActivity _act;
2013-02-23 11:43:42 -05:00
public AfterDeleteGroup(Handler handler, GroupBaseActivity act):base(handler) {
_act = act;
2013-02-23 11:43:42 -05:00
}
public override void Run() {
if ( Success) {
_act.RefreshIfDirty();
2013-02-23 11:43:42 -05:00
} else {
Handler.Post( () => {
Toast.MakeText(_act, "Unrecoverable error: " + Message, ToastLength.Long).Show();
2013-02-23 11:43:42 -05:00
});
App.Kp2a.LockDatabase(false);
2013-02-23 11:43:42 -05:00
}
}
}
2013-08-28 08:00:54 -04:00
public bool IsBeingMoved(PwUuid uuid)
{
MoveElementTask moveElementTask = AppTask as MoveElementTask;
if (moveElementTask != null)
{
2013-11-12 22:13:45 -05:00
if (moveElementTask.Uuid.Equals(uuid))
2013-08-28 08:00:54 -04:00
return true;
}
return false;
}
public void StartTask(AppTask task)
{
AppTask = task;
task.StartInGroupActivity(this);
}
public void StartMovingElement()
{
2013-08-28 08:00:54 -04:00
ShowInsertElementButtons();
/*TODOGroupView.ListView.InvalidateViews();
BaseAdapter adapter = (BaseAdapter)ListAdapter;
adapter.NotifyDataSetChanged();*/
2013-08-28 08:00:54 -04:00
}
public void ShowInsertElementButtons()
{
FindViewById(Resource.Id.fabCancelAddNew).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewGroup).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNewEntry).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.fabAddNew).Visibility = ViewStates.Gone;
FindViewById(Resource.Id.bottom_bar).Visibility = ViewStates.Visible;
FindViewById(Resource.Id.divider2).Visibility = ViewStates.Visible;
2013-08-28 08:00:54 -04:00
}
public void StopMovingElement()
{
try
{
MoveElementTask moveElementTask = (MoveElementTask)AppTask;
IStructureItem elementToMove = App.Kp2a.GetDb().KpDatabase.RootGroup.FindObject(moveElementTask.Uuid, true, null);
if (elementToMove.ParentGroup != Group)
App.Kp2a.GetDb().Dirty.Add(elementToMove.ParentGroup);
}
catch (Exception e)
{
//don't crash if adding to dirty fails but log the exception:
Kp2aLog.Log(e.ToString());
}
AppTask = new NullTask();
AppTask.SetupGroupBaseActivityButtons(this);
/*TODO GroupView.ListView.InvalidateViews();
2013-08-28 08:00:54 -04:00
BaseAdapter adapter = (BaseAdapter)ListAdapter;
adapter.NotifyDataSetChanged();*/
2013-08-28 08:00:54 -04:00
}
2013-09-03 16:58:15 -04:00
public void EditGroup(PwGroup pwGroup)
{
GroupEditActivity.Launch(this, pwGroup.ParentGroup, pwGroup);
}
2013-02-23 11:43:42 -05:00
}
public class GroupListFragment : ListFragment, AbsListView.IMultiChoiceModeListener
{
public override void OnActivityCreated(Bundle savedInstanceState)
{
base.OnActivityCreated(savedInstanceState);
if (App.Kp2a.GetDb().CanWrite)
{
ListView.ChoiceMode = ChoiceMode.MultipleModal;
ListView.SetMultiChoiceModeListener(this);
ListView.ItemLongClick += delegate(object sender, AdapterView.ItemLongClickEventArgs args)
{
ListView.SetItemChecked(args.Position, true);
};
}
ListView.ItemClick += (sender, args) => ((GroupListItemView) args.View).OnClick();
StyleScrollBars();
}
protected void StyleScrollBars()
{
ListView lv = ListView;
lv.ScrollBarStyle =ScrollbarStyles.InsideInset;
lv.TextFilterEnabled = true;
}
public bool OnActionItemClicked(ActionMode mode, IMenuItem item)
{
switch (item.ItemId)
{
case Resource.Id.menu_delete:
/*Handler handler = new Handler();
DeleteEntry task = new DeleteEntry(Activity, App.Kp2a, _entry,
new GroupBaseActivity.RefreshTask(handler, ((GroupBaseActivity)Activity)));
task.Start();*/
Toast.MakeText(((GroupBaseActivity) Activity), "todo delete", ToastLength.Long).Show();
return true;
case Resource.Id.menu_move:
/*NavigateToFolderAndLaunchMoveElementTask navMove =
new NavigateToFolderAndLaunchMoveElementTask(_entry.ParentGroup, _entry.Uuid, _isSearchResult);
((GroupBaseActivity)Activity).StartTask(navMove);*/
Toast.MakeText(((GroupBaseActivity)Activity), "todo move", ToastLength.Long).Show();
return true;
/*TODO for search results case Resource.Id.menu_navigate:
NavigateToFolder navNavigate = new NavigateToFolder(_entry.ParentGroup, true);
((GroupBaseActivity)Activity).StartTask(navNavigate);
return true;*/
}
return false;
}
public bool OnCreateActionMode(ActionMode mode, IMenu menu)
{
MenuInflater inflater = Activity.MenuInflater;
inflater.Inflate(Resource.Menu.group_entriesselected, menu);
//mode.Title = "Select Items";
Android.Util.Log.Debug("KP2A", "Create action mode" + mode);
((PwGroupListAdapter)ListView.Adapter).NotifyDataSetChanged();
return true;
}
public void OnDestroyActionMode(ActionMode mode)
{
Android.Util.Log.Debug("KP2A", "Destroy action mode" + mode);
((PwGroupListAdapter)ListView.Adapter).NotifyDataSetChanged();
}
public bool OnPrepareActionMode(ActionMode mode, IMenu menu)
{
Android.Util.Log.Debug("KP2A", "Prepare action mode" + mode);
((PwGroupListAdapter)ListView.Adapter).NotifyDataSetChanged();
return true;
}
public void OnItemCheckedStateChanged(ActionMode mode, int position, long id, bool @checked)
{
var menuItem = mode.Menu.FindItem(Resource.Id.menu_edit);
if (menuItem != null)
{
menuItem.SetVisible(IsOnlyOneGroupChecked());
}
}
private bool IsOnlyOneGroupChecked()
{
var checkedItems = ListView.CheckedItemPositions;
bool hadCheckedGroup = false;
if (checkedItems != null)
{
for (int i = 0; i < checkedItems.Size(); i++)
{
if (checkedItems.ValueAt(i))
{
if (hadCheckedGroup)
{
return false;
}
if (((PwGroupListAdapter) ListAdapter).IsGroupAtPosition(checkedItems.KeyAt(i)))
{
hadCheckedGroup = true;
}
else
{
return false;
}
}
}
}
return hadCheckedGroup;
}
}
2013-02-23 11:43:42 -05:00
}