diff --git a/src/keepass2android/EntryActivity.cs b/src/keepass2android/EntryActivity.cs
index b663c9ee..02ac7f39 100644
--- a/src/keepass2android/EntryActivity.cs
+++ b/src/keepass2android/EntryActivity.cs
@@ -76,7 +76,7 @@ namespace keepass2android
}
protected void setupEditButtons() {
- Button edit = (Button) FindViewById(Resource.Id.entry_edit);
+ View edit = FindViewById(Resource.Id.entry_edit);
edit.Click += (sender, e) => {
EntryEditActivity.Launch(this, mEntry);
};
@@ -333,14 +333,19 @@ namespace keepass2android
protected void fillData(bool trimList)
{
ImageView iv = (ImageView)FindViewById(Resource.Id.entry_icon);
- App.getDB().drawFactory.assignDrawableTo(iv, Resources, App.getDB().pm, mEntry.IconId, mEntry.CustomIconUuid);
+ if (iv != null)
+ {
+ App.getDB().drawFactory.assignDrawableTo(iv, Resources, App.getDB().pm, mEntry.IconId, mEntry.CustomIconUuid);
+ }
//populateText(Resource.Id.entry_title, mEntry.Strings.ReadSafe(PwDefs.TitleField));
var button = ((Button)FindViewById(Resource.Id.entry_title));
- button.Text = mEntry.Strings.ReadSafe(PwDefs.TitleField);
- button.Click += (object sender, EventArgs e) => {
- Finish(); };
-
+ if (button != null)
+ {
+ button.Text = mEntry.Strings.ReadSafe(PwDefs.TitleField);
+ button.Click += (object sender, EventArgs e) => {
+ Finish(); };
+ }
populateText(Resource.Id.entry_user_name, Resource.Id.entry_user_name_label, mEntry.Strings.ReadSafe(PwDefs.UserNameField));
populateText(Resource.Id.entry_url, Resource.Id.entry_url_label, mEntry.Strings.ReadSafe(PwDefs.UrlField));
diff --git a/src/keepass2android/EntryEditActivity.cs b/src/keepass2android/EntryEditActivity.cs
index 7b0e38c9..70b249de 100644
--- a/src/keepass2android/EntryEditActivity.cs
+++ b/src/keepass2android/EntryEditActivity.cs
@@ -74,7 +74,7 @@ namespace keepass2android
private ScrollView scroll;
- protected override void OnCreate(Bundle savedInstanceState)
+ protected override void OnCreate(Bundle savedInstanceState)
{
ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences(this);
mShowPassword = ! prefs.GetBoolean(GetString(Resource.String.maskpass_key), Resources.GetBoolean(Resource.Boolean.maskpass_default));
@@ -85,23 +85,25 @@ namespace keepass2android
// Likely the app has been killed exit the activity
Database db = App.getDB();
- if ( ! db.Open ) {
+ if (! db.Open)
+ {
Finish();
return;
}
Intent i = Intent;
- String uuidBytes = i.GetStringExtra(KEY_ENTRY);
+ String uuidBytes = i.GetStringExtra(KEY_ENTRY);
PwUuid entryId = PwUuid.Zero;
if (uuidBytes != null)
entryId = new KeePassLib.PwUuid(MemUtil.HexStringToByteArray(uuidBytes));
PwGroup parentGroup = null;
- if ( entryId == PwUuid.Zero ) {
+ if (entryId == PwUuid.Zero)
+ {
String groupId = i.GetStringExtra(KEY_PARENT);
- parentGroup = db.groups[new PwUuid(MemUtil.HexStringToByteArray(groupId))];
+ parentGroup = db.groups [new PwUuid(MemUtil.HexStringToByteArray(groupId))];
mEntryInDatabase = new PwEntry(true, true);
mEntryInDatabase.Strings.Set(PwDefs.UserNameField, new ProtectedString(
@@ -121,8 +123,8 @@ namespace keepass2android
pwe.ExpiryTime = DateTime.Now.AddDays(nExpireDays);
}*/
- if((parentGroup.IconId != PwIcon.Folder) && (parentGroup.IconId != PwIcon.FolderOpen) &&
- (parentGroup.IconId != PwIcon.FolderPackage))
+ if ((parentGroup.IconId != PwIcon.Folder) && (parentGroup.IconId != PwIcon.FolderOpen) &&
+ (parentGroup.IconId != PwIcon.FolderPackage))
{
mEntryInDatabase.IconId = parentGroup.IconId; // Inherit icon from group
}
@@ -149,11 +151,12 @@ namespace keepass2android
mIsNew = true;
mEntryModified = true;
- } else {
+ } else
+ {
System.Diagnostics.Debug.Assert(entryId != null);
- mEntryInDatabase = db.entries[entryId];
+ mEntryInDatabase = db.entries [entryId];
mIsNew = false;
@@ -165,14 +168,14 @@ namespace keepass2android
View scrollView = FindViewById(Resource.Id.entry_scroll);
scrollView.ScrollBarStyle = ScrollbarStyles.InsideInset;
- ImageButton iconButton = (ImageButton) FindViewById(Resource.Id.icon_button);
+ ImageButton iconButton = (ImageButton)FindViewById(Resource.Id.icon_button);
iconButton.Click += (sender, evt) => {
IconPickerActivity.Launch(this);
};
// Generate password button
- Button generatePassword = (Button) FindViewById(Resource.Id.generate_button);
+ Button generatePassword = (Button)FindViewById(Resource.Id.generate_button);
generatePassword.Click += (object sender, EventArgs e) => {
GeneratePasswordActivity.Launch(this);
@@ -182,7 +185,20 @@ namespace keepass2android
// Save button
- Button save = (Button) FindViewById(Resource.Id.entry_save);
+ View save = FindViewById(Resource.Id.entry_save);
+ if (save == null)
+ {
+
+ ActionBar.SetCustomView(Resource.Layout.SaveButton);
+ ActionBar.SetDisplayShowCustomEnabled(true);
+ ActionBar.SetDisplayShowTitleEnabled(false);
+ ActionBar.SetDisplayUseLogoEnabled(false);
+ ActionBar.SetDisplayShowHomeEnabled(false);
+ ActionBar.SetDisplayOptions(ActionBarDisplayOptions.ShowCustom,
+ ActionBarDisplayOptions.ShowCustom);
+ save = FindViewById(Resource.Id.entry_save);
+
+ }
save.Click += (object sender, EventArgs e) =>
{
@@ -381,7 +397,8 @@ namespace keepass2android
updateExpires();
mEntryModified = true;
};
-
+
+
}
void addBinaryOrAsk(string filename)
diff --git a/src/keepass2android/GroupActivity.cs b/src/keepass2android/GroupActivity.cs
index 363f5513..99e421e7 100644
--- a/src/keepass2android/GroupActivity.cs
+++ b/src/keepass2android/GroupActivity.cs
@@ -126,11 +126,9 @@ namespace keepass2android
} else {
SetContentView (new GroupViewOnlyView (this));
}
- Log.Warn (TAG, "Set view");
-
if (addGroupEnabled) {
// Add Group button
- Button addGroup = (Button)FindViewById (Resource.Id.add_group);
+ View addGroup = FindViewById (Resource.Id.add_group);
addGroup.Click += (object sender, EventArgs e) => {
GroupEditActivity.Launch (this, mGroup);
};
@@ -138,7 +136,7 @@ namespace keepass2android
if (addEntryEnabled) {
// Add Entry button
- Button addEntry = (Button)FindViewById (Resource.Id.add_entry);
+ View addEntry = FindViewById (Resource.Id.add_entry);
addEntry.Click += (object sender, EventArgs e) => {
EntryEditActivity.Launch (this, mGroup);
diff --git a/src/keepass2android/GroupBaseActivity.cs b/src/keepass2android/GroupBaseActivity.cs
index e9915e1e..4e50ca55 100644
--- a/src/keepass2android/GroupBaseActivity.cs
+++ b/src/keepass2android/GroupBaseActivity.cs
@@ -29,6 +29,7 @@ using Android.Widget;
using KeePassLib;
using Android.Preferences;
using keepass2android.view;
+using Android.Graphics.Drawables;
namespace keepass2android
{
@@ -115,42 +116,56 @@ namespace keepass2android
protected void setGroupTitle()
{
- Button tv = (Button)FindViewById(Resource.Id.group_name);
- if (tv == null)
- return;
-
- if (mGroup != null)
+ String name = mGroup.Name;
+ String titleText;
+ bool clickable = (mGroup != null) && (mGroup.IsVirtual == false) && (mGroup.ParentGroup != null);
+ if (!String.IsNullOrEmpty(name))
{
- String name = mGroup.Name;
- if (!String.IsNullOrEmpty(name))
- {
- tv.Text = name;
- } else
- {
- tv.Text = GetText(Resource.String.root);
- }
-
-
- }
-
- if ((mGroup != null) && (mGroup.IsVirtual == false) && (mGroup.ParentGroup != null))
- {
- tv.Click += (object sender, EventArgs e) =>
- {
- Finish();
- };
+ titleText = name;
} else
{
- tv.SetCompoundDrawables(null, null, null, null);
- tv.Clickable = false;
+ titleText = GetText(Resource.String.root);
+ }
+
+ //see if the button for SDK Version < 11 is there
+ Button tv = (Button)FindViewById(Resource.Id.group_name);
+ if (tv != null)
+ {
+ if (mGroup != null)
+ {
+ tv.Text = titleText;
+ }
+
+ if (clickable)
+ {
+ tv.Click += (object sender, EventArgs e) =>
+ {
+ Finish();
+ };
+ } else
+ {
+ tv.SetCompoundDrawables(null, null, null, null);
+ tv.Clickable = false;
+ }
+ }
+ //ICS?
+ if (ActionBar != null)
+ {
+ ActionBar.Title = titleText;
+ if (clickable)
+ ActionBar.SetDisplayHomeAsUpEnabled(true);
}
}
protected void setGroupIcon() {
if (mGroup != null) {
+ Drawable drawable = App.getDB().drawFactory.getIconDrawable(Resources, App.getDB().pm, mGroup.IconId, mGroup.CustomIconUuid);
ImageView iv = (ImageView) FindViewById(Resource.Id.icon);
- App.getDB().drawFactory.assignDrawableTo(iv, Resources, App.getDB().pm, mGroup.IconId, mGroup.CustomIconUuid);
+ if (iv != null)
+ iv.SetImageDrawable(drawable);
+ if (ActionBar != null)
+ ActionBar.SetIcon(drawable);
}
}
@@ -240,6 +255,12 @@ namespace keepass2android
Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show();
}
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
+ Finish();
+ return true;
}
return base.OnOptionsItemSelected(item);
diff --git a/src/keepass2android/Resources/Resource.designer.cs b/src/keepass2android/Resources/Resource.designer.cs
index d19e7e8d..4215fa13 100644
--- a/src/keepass2android/Resources/Resource.designer.cs
+++ b/src/keepass2android/Resources/Resource.designer.cs
@@ -81,29 +81,29 @@ namespace keepass2android
public partial class Color
{
- // aapt resource value: 0x7f050007
- public const int bg_gray = 2131034119;
+ // aapt resource value: 0x7f060007
+ public const int bg_gray = 2131099655;
- // aapt resource value: 0x7f050000
- public const int blue_highlight = 2131034112;
+ // aapt resource value: 0x7f060000
+ public const int blue_highlight = 2131099648;
- // aapt resource value: 0x7f050005
- public const int emphasis = 2131034117;
+ // aapt resource value: 0x7f060005
+ public const int emphasis = 2131099653;
- // aapt resource value: 0x7f050006
- public const int emphasis2 = 2131034118;
+ // aapt resource value: 0x7f060006
+ public const int emphasis2 = 2131099654;
- // aapt resource value: 0x7f050001
- public const int group = 2131034113;
+ // aapt resource value: 0x7f060001
+ public const int group = 2131099649;
- // aapt resource value: 0x7f050004
- public const int group_header_button_pressed = 2131034116;
+ // aapt resource value: 0x7f060004
+ public const int group_header_button_pressed = 2131099652;
- // aapt resource value: 0x7f050002
- public const int icon_background = 2131034114;
+ // aapt resource value: 0x7f060002
+ public const int icon_background = 2131099650;
- // aapt resource value: 0x7f050003
- public const int icon_text = 2131034115;
+ // aapt resource value: 0x7f060003
+ public const int icon_text = 2131099651;
private Color()
{
@@ -403,26 +403,26 @@ namespace keepass2android
// aapt resource value: 0x7f0b000a
public const int Credit = 2131427338;
- // aapt resource value: 0x7f0b0070
- public const int IconGridView = 2131427440;
-
- // aapt resource value: 0x7f0b007d
- public const int QuickUnlock_button = 2131427453;
+ // aapt resource value: 0x7f0b0071
+ public const int IconGridView = 2131427441;
// aapt resource value: 0x7f0b007e
- public const int QuickUnlock_buttonLock = 2131427454;
+ public const int QuickUnlock_button = 2131427454;
- // aapt resource value: 0x7f0b007b
- public const int QuickUnlock_label = 2131427451;
+ // aapt resource value: 0x7f0b007f
+ public const int QuickUnlock_buttonLock = 2131427455;
// aapt resource value: 0x7f0b007c
- public const int QuickUnlock_password = 2131427452;
+ public const int QuickUnlock_label = 2131427452;
+
+ // aapt resource value: 0x7f0b007d
+ public const int QuickUnlock_password = 2131427453;
+
+ // aapt resource value: 0x7f0b0055
+ public const int RelativeLayout = 2131427413;
// aapt resource value: 0x7f0b0054
- public const int RelativeLayout = 2131427412;
-
- // aapt resource value: 0x7f0b0053
- public const int ScrollView = 2131427411;
+ public const int ScrollView = 2131427412;
// aapt resource value: 0x7f0b0009
public const int about_button = 2131427337;
@@ -430,8 +430,8 @@ namespace keepass2android
// aapt resource value: 0x7f0b0000
public const int about_title = 2131427328;
- // aapt resource value: 0x7f0b0051
- public const int accept_button = 2131427409;
+ // aapt resource value: 0x7f0b0052
+ public const int accept_button = 2131427410;
// aapt resource value: 0x7f0b0024
public const int add_advanced = 2131427364;
@@ -451,101 +451,101 @@ namespace keepass2android
// aapt resource value: 0x7f0b0036
public const int bottom_bar = 2131427382;
- // aapt resource value: 0x7f0b0050
- public const int bottom_layout = 2131427408;
+ // aapt resource value: 0x7f0b0051
+ public const int bottom_layout = 2131427409;
- // aapt resource value: 0x7f0b0048
- public const int browse_button = 2131427400;
-
- // aapt resource value: 0x7f0b0059
- public const int btn_length12 = 2131427417;
-
- // aapt resource value: 0x7f0b0058
- public const int btn_length16 = 2131427416;
-
- // aapt resource value: 0x7f0b005b
- public const int btn_length6 = 2131427419;
+ // aapt resource value: 0x7f0b0049
+ public const int browse_button = 2131427401;
// aapt resource value: 0x7f0b005a
- public const int btn_length8 = 2131427418;
+ public const int btn_length12 = 2131427418;
+
+ // aapt resource value: 0x7f0b0059
+ public const int btn_length16 = 2131427417;
+
+ // aapt resource value: 0x7f0b005c
+ public const int btn_length6 = 2131427420;
+
+ // aapt resource value: 0x7f0b005b
+ public const int btn_length8 = 2131427419;
// aapt resource value: 0x7f0b000e
public const int cancel = 2131427342;
- // aapt resource value: 0x7f0b0052
- public const int cancel_button = 2131427410;
-
- // aapt resource value: 0x7f0b008e
- public const int cbCaseSensitive = 2131427470;
+ // aapt resource value: 0x7f0b0053
+ public const int cancel_button = 2131427411;
// aapt resource value: 0x7f0b008f
- public const int cbExcludeExpiredEntries = 2131427471;
+ public const int cbCaseSensitive = 2131427471;
- // aapt resource value: 0x7f0b0084
- public const int cbRegEx = 2131427460;
+ // aapt resource value: 0x7f0b0090
+ public const int cbExcludeExpiredEntries = 2131427472;
- // aapt resource value: 0x7f0b008d
- public const int cbSearchInGroupName = 2131427469;
+ // aapt resource value: 0x7f0b0085
+ public const int cbRegEx = 2131427461;
- // aapt resource value: 0x7f0b008a
- public const int cbSearchInNotes = 2131427466;
+ // aapt resource value: 0x7f0b008e
+ public const int cbSearchInGroupName = 2131427470;
// aapt resource value: 0x7f0b008b
- public const int cbSearchInOtherStrings = 2131427467;
-
- // aapt resource value: 0x7f0b0089
- public const int cbSearchInPassword = 2131427465;
+ public const int cbSearchInNotes = 2131427467;
// aapt resource value: 0x7f0b008c
- public const int cbSearchInTags = 2131427468;
+ public const int cbSearchInOtherStrings = 2131427468;
- // aapt resource value: 0x7f0b0086
- public const int cbSearchInTitle = 2131427462;
+ // aapt resource value: 0x7f0b008a
+ public const int cbSearchInPassword = 2131427466;
+
+ // aapt resource value: 0x7f0b008d
+ public const int cbSearchInTags = 2131427469;
// aapt resource value: 0x7f0b0087
- public const int cbSearchInUrl = 2131427463;
+ public const int cbSearchInTitle = 2131427463;
// aapt resource value: 0x7f0b0088
- public const int cbSearchInUsername = 2131427464;
+ public const int cbSearchInUrl = 2131427464;
- // aapt resource value: 0x7f0b0064
- public const int cb_brackets = 2131427428;
+ // aapt resource value: 0x7f0b0089
+ public const int cbSearchInUsername = 2131427465;
- // aapt resource value: 0x7f0b005f
- public const int cb_digits = 2131427423;
-
- // aapt resource value: 0x7f0b005e
- public const int cb_lowercase = 2131427422;
+ // aapt resource value: 0x7f0b0065
+ public const int cb_brackets = 2131427429;
// aapt resource value: 0x7f0b0060
- public const int cb_minus = 2131427424;
+ public const int cb_digits = 2131427424;
- // aapt resource value: 0x7f0b0062
- public const int cb_space = 2131427426;
-
- // aapt resource value: 0x7f0b0063
- public const int cb_specials = 2131427427;
+ // aapt resource value: 0x7f0b005f
+ public const int cb_lowercase = 2131427423;
// aapt resource value: 0x7f0b0061
- public const int cb_underline = 2131427425;
+ public const int cb_minus = 2131427425;
- // aapt resource value: 0x7f0b005d
- public const int cb_uppercase = 2131427421;
+ // aapt resource value: 0x7f0b0063
+ public const int cb_space = 2131427427;
- // aapt resource value: 0x7f0b004b
- public const int create = 2131427403;
+ // aapt resource value: 0x7f0b0064
+ public const int cb_specials = 2131427428;
- // aapt resource value: 0x7f0b0094
- public const int cred_password = 2131427476;
+ // aapt resource value: 0x7f0b0062
+ public const int cb_underline = 2131427426;
+
+ // aapt resource value: 0x7f0b005e
+ public const int cb_uppercase = 2131427422;
+
+ // aapt resource value: 0x7f0b004c
+ public const int create = 2131427404;
// aapt resource value: 0x7f0b0095
- public const int cred_remember_mode = 2131427477;
+ public const int cred_password = 2131427477;
- // aapt resource value: 0x7f0b0093
- public const int cred_username = 2131427475;
+ // aapt resource value: 0x7f0b0096
+ public const int cred_remember_mode = 2131427478;
- // aapt resource value: 0x7f0b0078
- public const int default_database = 2131427448;
+ // aapt resource value: 0x7f0b0094
+ public const int cred_username = 2131427476;
+
+ // aapt resource value: 0x7f0b0079
+ public const int default_database = 2131427449;
// aapt resource value: 0x7f0b0030
public const int delete = 2131427376;
@@ -565,14 +565,14 @@ namespace keepass2android
// aapt resource value: 0x7f0b0032
public const int divider_comment = 2131427378;
- // aapt resource value: 0x7f0b0079
- public const int enable_quickunlock = 2131427449;
+ // aapt resource value: 0x7f0b007a
+ public const int enable_quickunlock = 2131427450;
+
+ // aapt resource value: 0x7f0b0042
+ public const int entry_accessed = 2131427394;
// aapt resource value: 0x7f0b0041
- public const int entry_accessed = 2131427393;
-
- // aapt resource value: 0x7f0b0040
- public const int entry_accessed_label = 2131427392;
+ public const int entry_accessed_label = 2131427393;
// aapt resource value: 0x7f0b0025
public const int entry_binaries_label = 2131427365;
@@ -592,11 +592,11 @@ namespace keepass2android
// aapt resource value: 0x7f0b0039
public const int entry_contents = 2131427385;
- // aapt resource value: 0x7f0b003d
- public const int entry_created = 2131427389;
+ // aapt resource value: 0x7f0b003e
+ public const int entry_created = 2131427390;
- // aapt resource value: 0x7f0b003c
- public const int entry_created_label = 2131427388;
+ // aapt resource value: 0x7f0b003d
+ public const int entry_created_label = 2131427389;
// aapt resource value: 0x7f0b0038
public const int entry_divider2 = 2131427384;
@@ -619,11 +619,11 @@ namespace keepass2android
// aapt resource value: 0x7f0b0033
public const int entry_icon = 2131427379;
- // aapt resource value: 0x7f0b003f
- public const int entry_modified = 2131427391;
+ // aapt resource value: 0x7f0b0040
+ public const int entry_modified = 2131427392;
- // aapt resource value: 0x7f0b003e
- public const int entry_modified_label = 2131427390;
+ // aapt resource value: 0x7f0b003f
+ public const int entry_modified_label = 2131427391;
// aapt resource value: 0x7f0b002a
public const int entry_override_url = 2131427370;
@@ -646,8 +646,8 @@ namespace keepass2android
// aapt resource value: 0x7f0b0013
public const int entry_scroll = 2131427347;
- // aapt resource value: 0x7f0b003a
- public const int entry_table = 2131427386;
+ // aapt resource value: 0x7f0b003b
+ public const int entry_table = 2131427387;
// aapt resource value: 0x7f0b0028
public const int entry_tags = 2131427368;
@@ -676,71 +676,71 @@ namespace keepass2android
// aapt resource value: 0x7f0b0017
public const int entry_user_name_label = 2131427351;
- // aapt resource value: 0x7f0b003b
- public const int extra_strings = 2131427387;
+ // aapt resource value: 0x7f0b003c
+ public const int extra_strings = 2131427388;
// aapt resource value: 0x7f0b0006
public const int feedback = 2131427334;
- // aapt resource value: 0x7f0b0042
- public const int file_filename = 2131427394;
-
// aapt resource value: 0x7f0b0043
- public const int file_listtop = 2131427395;
+ public const int file_filename = 2131427395;
// aapt resource value: 0x7f0b0044
- public const int file_select = 2131427396;
-
- // aapt resource value: 0x7f0b0073
- public const int filename = 2131427443;
+ public const int file_listtop = 2131427396;
// aapt resource value: 0x7f0b0045
- public const int filename_form = 2131427397;
+ public const int file_select = 2131427397;
- // aapt resource value: 0x7f0b0071
- public const int filename_label = 2131427441;
+ // aapt resource value: 0x7f0b0074
+ public const int filename = 2131427444;
+
+ // aapt resource value: 0x7f0b0046
+ public const int filename_form = 2131427398;
// aapt resource value: 0x7f0b0072
- public const int filenamescroll = 2131427442;
+ public const int filename_label = 2131427442;
- // aapt resource value: 0x7f0b004c
- public const int fnv_cancel = 2131427404;
+ // aapt resource value: 0x7f0b0073
+ public const int filenamescroll = 2131427443;
+
+ // aapt resource value: 0x7f0b004d
+ public const int fnv_cancel = 2131427405;
// aapt resource value: 0x7f0b001c
public const int generate_button = 2131427356;
- // aapt resource value: 0x7f0b0056
- public const int generate_password_button = 2131427414;
+ // aapt resource value: 0x7f0b0057
+ public const int generate_password_button = 2131427415;
- // aapt resource value: 0x7f0b0065
- public const int group_header = 2131427429;
+ // aapt resource value: 0x7f0b006a
+ public const int group_header = 2131427434;
- // aapt resource value: 0x7f0b006b
- public const int group_icon = 2131427435;
+ // aapt resource value: 0x7f0b006c
+ public const int group_icon = 2131427436;
- // aapt resource value: 0x7f0b006d
- public const int group_label = 2131427437;
+ // aapt resource value: 0x7f0b006e
+ public const int group_label = 2131427438;
// aapt resource value: 0x7f0b0068
public const int group_name = 2131427432;
- // aapt resource value: 0x7f0b006c
- public const int group_text = 2131427436;
+ // aapt resource value: 0x7f0b006d
+ public const int group_text = 2131427437;
// aapt resource value: 0x7f0b0005
public const int homepage = 2131427333;
- // aapt resource value: 0x7f0b006a
- public const int icon = 2131427434;
+ // aapt resource value: 0x7f0b006b
+ public const int icon = 2131427435;
// aapt resource value: 0x7f0b0015
public const int icon_button = 2131427349;
- // aapt resource value: 0x7f0b006e
- public const int icon_image = 2131427438;
-
// aapt resource value: 0x7f0b006f
- public const int icon_text = 2131427439;
+ public const int icon_image = 2131427439;
+
+ // aapt resource value: 0x7f0b0070
+ public const int icon_text = 2131427440;
// aapt resource value: 0x7f0b000c
public const int install_market = 2131427340;
@@ -748,89 +748,89 @@ namespace keepass2android
// aapt resource value: 0x7f0b000d
public const int install_web = 2131427341;
+ // aapt resource value: 0x7f0b0048
+ public const int label_open_by_filename = 2131427400;
+
+ // aapt resource value: 0x7f0b004a
+ public const int label_open_by_filename_details = 2131427402;
+
// aapt resource value: 0x7f0b0047
- public const int label_open_by_filename = 2131427399;
+ public const int label_warning = 2131427399;
- // aapt resource value: 0x7f0b0049
- public const int label_open_by_filename_details = 2131427401;
+ // aapt resource value: 0x7f0b005d
+ public const int length = 2131427421;
- // aapt resource value: 0x7f0b0046
- public const int label_warning = 2131427398;
+ // aapt resource value: 0x7f0b0058
+ public const int length_label = 2131427416;
- // aapt resource value: 0x7f0b005c
- public const int length = 2131427420;
-
- // aapt resource value: 0x7f0b0057
- public const int length_label = 2131427415;
-
- // aapt resource value: 0x7f0b0083
- public const int linearLayout1 = 2131427459;
-
- // aapt resource value: 0x7f0b009e
- public const int menu_about = 2131427486;
-
- // aapt resource value: 0x7f0b009d
- public const int menu_app_settings = 2131427485;
-
- // aapt resource value: 0x7f0b009c
- public const int menu_cancel_edit = 2131427484;
-
- // aapt resource value: 0x7f0b00a0
- public const int menu_change_master_key = 2131427488;
-
- // aapt resource value: 0x7f0b0097
- public const int menu_goto_url = 2131427479;
-
- // aapt resource value: 0x7f0b0098
- public const int menu_lock = 2131427480;
-
- // aapt resource value: 0x7f0b009a
- public const int menu_rate = 2131427482;
+ // aapt resource value: 0x7f0b0084
+ public const int linearLayout1 = 2131427460;
// aapt resource value: 0x7f0b009f
- public const int menu_search = 2131427487;
+ public const int menu_about = 2131427487;
+
+ // aapt resource value: 0x7f0b009e
+ public const int menu_app_settings = 2131427486;
+
+ // aapt resource value: 0x7f0b009d
+ public const int menu_cancel_edit = 2131427485;
// aapt resource value: 0x7f0b00a1
- public const int menu_sort = 2131427489;
+ public const int menu_change_master_key = 2131427489;
+
+ // aapt resource value: 0x7f0b0098
+ public const int menu_goto_url = 2131427480;
// aapt resource value: 0x7f0b0099
- public const int menu_suggest_improvements = 2131427481;
-
- // aapt resource value: 0x7f0b0096
- public const int menu_toggle_pass = 2131427478;
+ public const int menu_lock = 2131427481;
// aapt resource value: 0x7f0b009b
- public const int menu_translate = 2131427483;
+ public const int menu_rate = 2131427483;
+
+ // aapt resource value: 0x7f0b00a0
+ public const int menu_search = 2131427488;
+
+ // aapt resource value: 0x7f0b00a2
+ public const int menu_sort = 2131427490;
+
+ // aapt resource value: 0x7f0b009a
+ public const int menu_suggest_improvements = 2131427482;
+
+ // aapt resource value: 0x7f0b0097
+ public const int menu_toggle_pass = 2131427479;
+
+ // aapt resource value: 0x7f0b009c
+ public const int menu_translate = 2131427484;
// aapt resource value: 0x7f0b0069
public const int ok = 2131427433;
- // aapt resource value: 0x7f0b004a
- public const int open = 2131427402;
+ // aapt resource value: 0x7f0b004b
+ public const int open = 2131427403;
- // aapt resource value: 0x7f0b0091
- public const int pass_conf_password = 2131427473;
-
- // aapt resource value: 0x7f0b0076
- public const int pass_keyfile = 2131427446;
+ // aapt resource value: 0x7f0b0092
+ public const int pass_conf_password = 2131427474;
// aapt resource value: 0x7f0b0077
- public const int pass_ok = 2131427447;
+ public const int pass_keyfile = 2131427447;
- // aapt resource value: 0x7f0b0090
- public const int pass_password = 2131427472;
+ // aapt resource value: 0x7f0b0078
+ public const int pass_ok = 2131427448;
- // aapt resource value: 0x7f0b0055
- public const int password = 2131427413;
+ // aapt resource value: 0x7f0b0091
+ public const int pass_password = 2131427473;
- // aapt resource value: 0x7f0b0074
- public const int password_label = 2131427444;
+ // aapt resource value: 0x7f0b0056
+ public const int password = 2131427414;
+
+ // aapt resource value: 0x7f0b0075
+ public const int password_label = 2131427445;
// aapt resource value: 0x7f0b002f
public const int protection = 2131427375;
- // aapt resource value: 0x7f0b007a
- public const int qu_filename = 2131427450;
+ // aapt resource value: 0x7f0b007b
+ public const int qu_filename = 2131427451;
// aapt resource value: 0x7f0b000f
public const int rounds = 2131427343;
@@ -838,32 +838,32 @@ namespace keepass2android
// aapt resource value: 0x7f0b0010
public const int rounds_explaination = 2131427344;
+ // aapt resource value: 0x7f0b0083
+ public const int scrollView1 = 2131427459;
+
// aapt resource value: 0x7f0b0082
- public const int scrollView1 = 2131427458;
+ public const int searchEditText = 2131427458;
// aapt resource value: 0x7f0b0081
- public const int searchEditText = 2131427457;
+ public const int search_button = 2131427457;
+
+ // aapt resource value: 0x7f0b0086
+ public const int search_in_label = 2131427462;
// aapt resource value: 0x7f0b0080
- public const int search_button = 2131427456;
+ public const int search_label = 2131427456;
- // aapt resource value: 0x7f0b0085
- public const int search_in_label = 2131427461;
+ // aapt resource value: 0x7f0b0050
+ public const int start_create = 2131427408;
- // aapt resource value: 0x7f0b007f
- public const int search_label = 2131427455;
-
- // aapt resource value: 0x7f0b004f
- public const int start_create = 2131427407;
-
- // aapt resource value: 0x7f0b0092
- public const int start_create_import = 2131427474;
-
- // aapt resource value: 0x7f0b004d
- public const int start_open_file = 2131427405;
+ // aapt resource value: 0x7f0b0093
+ public const int start_create_import = 2131427475;
// aapt resource value: 0x7f0b004e
- public const int start_open_url = 2131427406;
+ public const int start_open_file = 2131427406;
+
+ // aapt resource value: 0x7f0b004f
+ public const int start_open_url = 2131427407;
// aapt resource value: 0x7f0b000b
public const int text = 2131427339;
@@ -874,8 +874,11 @@ namespace keepass2android
// aapt resource value: 0x7f0b0035
public const int title_block = 2131427381;
- // aapt resource value: 0x7f0b0075
- public const int toggle_password = 2131427445;
+ // aapt resource value: 0x7f0b0076
+ public const int toggle_password = 2131427446;
+
+ // aapt resource value: 0x7f0b003a
+ public const int top = 2131427386;
// aapt resource value: 0x7f0b0031
public const int value = 2131427377;
@@ -964,16 +967,19 @@ namespace keepass2android
public const int QuickUnlock = 2130903062;
// aapt resource value: 0x7f030017
- public const int search = 2130903063;
+ public const int SaveButton = 2130903063;
// aapt resource value: 0x7f030018
- public const int set_password = 2130903064;
+ public const int search = 2130903064;
// aapt resource value: 0x7f030019
- public const int StartScreenButtons = 2130903065;
+ public const int set_password = 2130903065;
// aapt resource value: 0x7f03001a
- public const int url_credentials = 2130903066;
+ public const int StartScreenButtons = 2130903066;
+
+ // aapt resource value: 0x7f03001b
+ public const int url_credentials = 2130903067;
private Layout()
{
@@ -1006,770 +1012,770 @@ namespace keepass2android
public partial class String
{
- // aapt resource value: 0x7f060025
- public const int AboutText = 2131099685;
+ // aapt resource value: 0x7f050025
+ public const int AboutText = 2131034149;
- // aapt resource value: 0x7f0600f3
- public const int AskDeletePermanentlyEntry = 2131099891;
+ // aapt resource value: 0x7f0500f3
+ public const int AskDeletePermanentlyEntry = 2131034355;
- // aapt resource value: 0x7f0600f4
- public const int AskDeletePermanentlyGroup = 2131099892;
+ // aapt resource value: 0x7f0500f4
+ public const int AskDeletePermanentlyGroup = 2131034356;
- // aapt resource value: 0x7f0600f5
- public const int AskDeletePermanently_title = 2131099893;
+ // aapt resource value: 0x7f0500f5
+ public const int AskDeletePermanently_title = 2131034357;
- // aapt resource value: 0x7f0600f8
- public const int AskDiscardChanges = 2131099896;
+ // aapt resource value: 0x7f0500f8
+ public const int AskDiscardChanges = 2131034360;
- // aapt resource value: 0x7f0600f9
- public const int AskDiscardChanges_title = 2131099897;
+ // aapt resource value: 0x7f0500f9
+ public const int AskDiscardChanges_title = 2131034361;
- // aapt resource value: 0x7f0600ed
- public const int AskOverwriteBinary = 2131099885;
+ // aapt resource value: 0x7f0500ed
+ public const int AskOverwriteBinary = 2131034349;
- // aapt resource value: 0x7f0600f0
- public const int AskOverwriteBinary_no = 2131099888;
+ // aapt resource value: 0x7f0500f0
+ public const int AskOverwriteBinary_no = 2131034352;
- // aapt resource value: 0x7f0600ee
- public const int AskOverwriteBinary_title = 2131099886;
+ // aapt resource value: 0x7f0500ee
+ public const int AskOverwriteBinary_title = 2131034350;
- // aapt resource value: 0x7f0600ef
- public const int AskOverwriteBinary_yes = 2131099887;
+ // aapt resource value: 0x7f0500ef
+ public const int AskOverwriteBinary_yes = 2131034351;
- // aapt resource value: 0x7f0600f7
- public const int AskReloadFile = 2131099895;
+ // aapt resource value: 0x7f0500f7
+ public const int AskReloadFile = 2131034359;
- // aapt resource value: 0x7f0600f6
- public const int AskReloadFile_title = 2131099894;
+ // aapt resource value: 0x7f0500f6
+ public const int AskReloadFile_title = 2131034358;
- // aapt resource value: 0x7f0600f1
- public const int AttachFailed = 2131099889;
+ // aapt resource value: 0x7f0500f1
+ public const int AttachFailed = 2131034353;
- // aapt resource value: 0x7f060017
- public const int BinaryDirectory_default = 2131099671;
+ // aapt resource value: 0x7f050017
+ public const int BinaryDirectory_default = 2131034135;
- // aapt resource value: 0x7f060016
- public const int BinaryDirectory_key = 2131099670;
+ // aapt resource value: 0x7f050016
+ public const int BinaryDirectory_key = 2131034134;
- // aapt resource value: 0x7f0600df
- public const int BinaryDirectory_summary = 2131099871;
+ // aapt resource value: 0x7f0500df
+ public const int BinaryDirectory_summary = 2131034335;
- // aapt resource value: 0x7f0600de
- public const int BinaryDirectory_title = 2131099870;
+ // aapt resource value: 0x7f0500de
+ public const int BinaryDirectory_title = 2131034334;
- // aapt resource value: 0x7f0600fe
- public const int ChangeLog = 2131099902;
+ // aapt resource value: 0x7f0500fe
+ public const int ChangeLog = 2131034366;
- // aapt resource value: 0x7f0600fd
- public const int ChangeLog_title = 2131099901;
+ // aapt resource value: 0x7f0500fd
+ public const int ChangeLog_title = 2131034365;
- // aapt resource value: 0x7f060039
- public const int ClearClipboard = 2131099705;
+ // aapt resource value: 0x7f050039
+ public const int ClearClipboard = 2131034169;
- // aapt resource value: 0x7f060026
- public const int CreditsText = 2131099686;
+ // aapt resource value: 0x7f050026
+ public const int CreditsText = 2131034150;
- // aapt resource value: 0x7f06006f
- public const int FileNotFound = 2131099759;
+ // aapt resource value: 0x7f05006f
+ public const int FileNotFound = 2131034223;
- // aapt resource value: 0x7f060082
- public const int InvalidPassword = 2131099778;
+ // aapt resource value: 0x7f050082
+ public const int InvalidPassword = 2131034242;
- // aapt resource value: 0x7f06001c
- public const int LastInfoVersionCode_key = 2131099676;
+ // aapt resource value: 0x7f05001c
+ public const int LastInfoVersionCode_key = 2131034140;
- // aapt resource value: 0x7f06001e
- public const int MarketURL = 2131099678;
+ // aapt resource value: 0x7f05001e
+ public const int MarketURL = 2131034142;
- // aapt resource value: 0x7f06008c
- public const int MaskedPassword = 2131099788;
+ // aapt resource value: 0x7f05008c
+ public const int MaskedPassword = 2131034252;
- // aapt resource value: 0x7f060018
- public const int QuickUnlockDefaultEnabled_key = 2131099672;
+ // aapt resource value: 0x7f050018
+ public const int QuickUnlockDefaultEnabled_key = 2131034136;
- // aapt resource value: 0x7f0600da
- public const int QuickUnlockDefaultEnabled_summary = 2131099866;
+ // aapt resource value: 0x7f0500da
+ public const int QuickUnlockDefaultEnabled_summary = 2131034330;
- // aapt resource value: 0x7f0600d9
- public const int QuickUnlockDefaultEnabled_title = 2131099865;
+ // aapt resource value: 0x7f0500d9
+ public const int QuickUnlockDefaultEnabled_title = 2131034329;
- // aapt resource value: 0x7f06001a
- public const int QuickUnlockLength_default = 2131099674;
+ // aapt resource value: 0x7f05001a
+ public const int QuickUnlockLength_default = 2131034138;
- // aapt resource value: 0x7f060019
- public const int QuickUnlockLength_key = 2131099673;
+ // aapt resource value: 0x7f050019
+ public const int QuickUnlockLength_key = 2131034137;
- // aapt resource value: 0x7f0600dc
- public const int QuickUnlockLength_summary = 2131099868;
+ // aapt resource value: 0x7f0500dc
+ public const int QuickUnlockLength_summary = 2131034332;
- // aapt resource value: 0x7f0600db
- public const int QuickUnlockLength_title = 2131099867;
+ // aapt resource value: 0x7f0500db
+ public const int QuickUnlockLength_title = 2131034331;
- // aapt resource value: 0x7f0600d7
- public const int QuickUnlock_button = 2131099863;
+ // aapt resource value: 0x7f0500d7
+ public const int QuickUnlock_button = 2131034327;
- // aapt resource value: 0x7f0600dd
- public const int QuickUnlock_fail = 2131099869;
+ // aapt resource value: 0x7f0500dd
+ public const int QuickUnlock_fail = 2131034333;
- // aapt resource value: 0x7f0600d6
- public const int QuickUnlock_label = 2131099862;
+ // aapt resource value: 0x7f0500d6
+ public const int QuickUnlock_label = 2131034326;
- // aapt resource value: 0x7f0600d8
- public const int QuickUnlock_lockButton = 2131099864;
+ // aapt resource value: 0x7f0500d8
+ public const int QuickUnlock_lockButton = 2131034328;
- // aapt resource value: 0x7f0600f2
- public const int RecycleBin = 2131099890;
+ // aapt resource value: 0x7f0500f2
+ public const int RecycleBin = 2131034354;
- // aapt resource value: 0x7f0600e1
- public const int SaveAttachment_Failed = 2131099873;
+ // aapt resource value: 0x7f0500e1
+ public const int SaveAttachment_Failed = 2131034337;
- // aapt resource value: 0x7f0600e0
- public const int SaveAttachment_doneMessage = 2131099872;
+ // aapt resource value: 0x7f0500e0
+ public const int SaveAttachment_doneMessage = 2131034336;
- // aapt resource value: 0x7f06001f
- public const int SuggestionsURL = 2131099679;
+ // aapt resource value: 0x7f05001f
+ public const int SuggestionsURL = 2131034143;
- // aapt resource value: 0x7f060014
- public const int TanExpiresOnUse_key = 2131099668;
+ // aapt resource value: 0x7f050014
+ public const int TanExpiresOnUse_key = 2131034132;
- // aapt resource value: 0x7f0600ca
- public const int TanExpiresOnUse_summary = 2131099850;
+ // aapt resource value: 0x7f0500ca
+ public const int TanExpiresOnUse_summary = 2131034314;
- // aapt resource value: 0x7f0600c9
- public const int TanExpiresOnUse_title = 2131099849;
+ // aapt resource value: 0x7f0500c9
+ public const int TanExpiresOnUse_title = 2131034313;
- // aapt resource value: 0x7f060020
- public const int TranslationURL = 2131099680;
+ // aapt resource value: 0x7f050020
+ public const int TranslationURL = 2131034144;
- // aapt resource value: 0x7f06001b
- public const int UsageCount_key = 2131099675;
+ // aapt resource value: 0x7f05001b
+ public const int UsageCount_key = 2131034139;
- // aapt resource value: 0x7f06001d
- public const int UseFileTransactions_key = 2131099677;
+ // aapt resource value: 0x7f05001d
+ public const int UseFileTransactions_key = 2131034141;
- // aapt resource value: 0x7f0600ec
- public const int UseFileTransactions_summary = 2131099884;
+ // aapt resource value: 0x7f0500ec
+ public const int UseFileTransactions_summary = 2131034348;
- // aapt resource value: 0x7f0600eb
- public const int UseFileTransactions_title = 2131099883;
+ // aapt resource value: 0x7f0500eb
+ public const int UseFileTransactions_title = 2131034347;
- // aapt resource value: 0x7f060023
- public const int about_feedback = 2131099683;
+ // aapt resource value: 0x7f050023
+ public const int about_feedback = 2131034147;
- // aapt resource value: 0x7f060024
- public const int about_homepage = 2131099684;
+ // aapt resource value: 0x7f050024
+ public const int about_homepage = 2131034148;
- // aapt resource value: 0x7f060027
- public const int accept = 2131099687;
+ // aapt resource value: 0x7f050027
+ public const int accept = 2131034151;
- // aapt resource value: 0x7f0600e7
- public const int add_binary = 2131099879;
+ // aapt resource value: 0x7f0500e7
+ public const int add_binary = 2131034343;
- // aapt resource value: 0x7f060028
- public const int add_entry = 2131099688;
+ // aapt resource value: 0x7f050028
+ public const int add_entry = 2131034152;
- // aapt resource value: 0x7f0600e8
- public const int add_extra_string = 2131099880;
+ // aapt resource value: 0x7f0500e8
+ public const int add_extra_string = 2131034344;
- // aapt resource value: 0x7f060029
- public const int add_group = 2131099689;
+ // aapt resource value: 0x7f050029
+ public const int add_group = 2131034153;
- // aapt resource value: 0x7f06002a
- public const int add_group_title = 2131099690;
+ // aapt resource value: 0x7f05002a
+ public const int add_group_title = 2131034154;
- // aapt resource value: 0x7f06002b
- public const int algorithm = 2131099691;
+ // aapt resource value: 0x7f05002b
+ public const int algorithm = 2131034155;
- // aapt resource value: 0x7f06002c
- public const int algorithm_colon = 2131099692;
+ // aapt resource value: 0x7f05002c
+ public const int algorithm_colon = 2131034156;
- // aapt resource value: 0x7f060008
- public const int algorithm_key = 2131099656;
+ // aapt resource value: 0x7f050008
+ public const int algorithm_key = 2131034120;
- // aapt resource value: 0x7f060009
- public const int app_key = 2131099657;
+ // aapt resource value: 0x7f050009
+ public const int app_key = 2131034121;
- // aapt resource value: 0x7f06002d
- public const int app_name = 2131099693;
+ // aapt resource value: 0x7f05002d
+ public const int app_name = 2131034157;
- // aapt resource value: 0x7f06002f
- public const int app_name_nonet = 2131099695;
+ // aapt resource value: 0x7f05002f
+ public const int app_name_nonet = 2131034159;
- // aapt resource value: 0x7f060031
- public const int app_timeout = 2131099697;
+ // aapt resource value: 0x7f050031
+ public const int app_timeout = 2131034161;
- // aapt resource value: 0x7f06000a
- public const int app_timeout_key = 2131099658;
+ // aapt resource value: 0x7f05000a
+ public const int app_timeout_key = 2131034122;
- // aapt resource value: 0x7f060032
- public const int app_timeout_summary = 2131099698;
+ // aapt resource value: 0x7f050032
+ public const int app_timeout_summary = 2131034162;
- // aapt resource value: 0x7f060033
- public const int application = 2131099699;
+ // aapt resource value: 0x7f050033
+ public const int application = 2131034163;
- // aapt resource value: 0x7f060034
- public const int application_settings = 2131099700;
+ // aapt resource value: 0x7f050034
+ public const int application_settings = 2131034164;
- // aapt resource value: 0x7f060035
- public const int brackets = 2131099701;
+ // aapt resource value: 0x7f050035
+ public const int brackets = 2131034165;
- // aapt resource value: 0x7f060036
- public const int browser_intall_text = 2131099702;
+ // aapt resource value: 0x7f050036
+ public const int browser_intall_text = 2131034166;
- // aapt resource value: 0x7f060037
- public const int building_search_idx = 2131099703;
+ // aapt resource value: 0x7f050037
+ public const int building_search_idx = 2131034167;
- // aapt resource value: 0x7f060038
- public const int cancel = 2131099704;
+ // aapt resource value: 0x7f050038
+ public const int cancel = 2131034168;
- // aapt resource value: 0x7f0600ce
- public const int caseSensitive = 2131099854;
+ // aapt resource value: 0x7f0500ce
+ public const int caseSensitive = 2131034318;
- // aapt resource value: 0x7f06003a
- public const int clipboard_timeout = 2131099706;
+ // aapt resource value: 0x7f05003a
+ public const int clipboard_timeout = 2131034170;
- // aapt resource value: 0x7f060021
- public const int clipboard_timeout_default = 2131099681;
+ // aapt resource value: 0x7f050021
+ public const int clipboard_timeout_default = 2131034145;
- // aapt resource value: 0x7f06000b
- public const int clipboard_timeout_key = 2131099659;
+ // aapt resource value: 0x7f05000b
+ public const int clipboard_timeout_key = 2131034123;
- // aapt resource value: 0x7f06003b
- public const int clipboard_timeout_summary = 2131099707;
+ // aapt resource value: 0x7f05003b
+ public const int clipboard_timeout_summary = 2131034171;
- // aapt resource value: 0x7f06003d
- public const int copy_password = 2131099709;
+ // aapt resource value: 0x7f05003d
+ public const int copy_password = 2131034173;
- // aapt resource value: 0x7f06003c
- public const int copy_username = 2131099708;
+ // aapt resource value: 0x7f05003c
+ public const int copy_username = 2131034172;
- // aapt resource value: 0x7f06003e
- public const int creating_db_key = 2131099710;
+ // aapt resource value: 0x7f05003e
+ public const int creating_db_key = 2131034174;
- // aapt resource value: 0x7f0600ea
- public const int credentials_dialog_title = 2131099882;
+ // aapt resource value: 0x7f0500ea
+ public const int credentials_dialog_title = 2131034346;
- // aapt resource value: 0x7f06003f
- public const int current_group = 2131099711;
+ // aapt resource value: 0x7f05003f
+ public const int current_group = 2131034175;
- // aapt resource value: 0x7f060040
- public const int current_group_root = 2131099712;
+ // aapt resource value: 0x7f050040
+ public const int current_group_root = 2131034176;
- // aapt resource value: 0x7f060041
- public const int database = 2131099713;
+ // aapt resource value: 0x7f050041
+ public const int database = 2131034177;
- // aapt resource value: 0x7f0600e9
- public const int database_loaded_quickunlock_enabled = 2131099881;
+ // aapt resource value: 0x7f0500e9
+ public const int database_loaded_quickunlock_enabled = 2131034345;
- // aapt resource value: 0x7f06000c
- public const int db_key = 2131099660;
+ // aapt resource value: 0x7f05000c
+ public const int db_key = 2131034124;
- // aapt resource value: 0x7f060042
- public const int decrypting_db = 2131099714;
+ // aapt resource value: 0x7f050042
+ public const int decrypting_db = 2131034178;
- // aapt resource value: 0x7f060043
- public const int decrypting_entry = 2131099715;
+ // aapt resource value: 0x7f050043
+ public const int decrypting_entry = 2131034179;
- // aapt resource value: 0x7f060044
- public const int default_checkbox = 2131099716;
+ // aapt resource value: 0x7f050044
+ public const int default_checkbox = 2131034180;
- // aapt resource value: 0x7f060001
- public const int default_file_path = 2131099649;
+ // aapt resource value: 0x7f050001
+ public const int default_file_path = 2131034113;
- // aapt resource value: 0x7f0600b6
- public const int default_username = 2131099830;
+ // aapt resource value: 0x7f0500b6
+ public const int default_username = 2131034294;
- // aapt resource value: 0x7f060015
- public const int default_username_key = 2131099669;
+ // aapt resource value: 0x7f050015
+ public const int default_username_key = 2131034133;
- // aapt resource value: 0x7f060045
- public const int digits = 2131099717;
+ // aapt resource value: 0x7f050045
+ public const int digits = 2131034181;
- // aapt resource value: 0x7f060046
- public const int disclaimer_formal = 2131099718;
+ // aapt resource value: 0x7f050046
+ public const int disclaimer_formal = 2131034182;
- // aapt resource value: 0x7f060002
- public const int donate_url = 2131099650;
+ // aapt resource value: 0x7f050002
+ public const int donate_url = 2131034114;
- // aapt resource value: 0x7f060047
- public const int ellipsis = 2131099719;
+ // aapt resource value: 0x7f050047
+ public const int ellipsis = 2131034183;
- // aapt resource value: 0x7f0600d5
- public const int enable_quickunlock = 2131099861;
+ // aapt resource value: 0x7f0500d5
+ public const int enable_quickunlock = 2131034325;
- // aapt resource value: 0x7f060048
- public const int enter_filename = 2131099720;
+ // aapt resource value: 0x7f050048
+ public const int enter_filename = 2131034184;
- // aapt resource value: 0x7f0600d4
- public const int enter_filename_details_create_import = 2131099860;
+ // aapt resource value: 0x7f0500d4
+ public const int enter_filename_details_create_import = 2131034324;
- // aapt resource value: 0x7f0600d3
- public const int enter_filename_details_url = 2131099859;
+ // aapt resource value: 0x7f0500d3
+ public const int enter_filename_details_url = 2131034323;
- // aapt resource value: 0x7f060049
- public const int entry_accessed = 2131099721;
+ // aapt resource value: 0x7f050049
+ public const int entry_accessed = 2131034185;
- // aapt resource value: 0x7f06004a
- public const int entry_and_or = 2131099722;
+ // aapt resource value: 0x7f05004a
+ public const int entry_and_or = 2131034186;
- // aapt resource value: 0x7f06005a
- public const int entry_binaries = 2131099738;
+ // aapt resource value: 0x7f05005a
+ public const int entry_binaries = 2131034202;
- // aapt resource value: 0x7f06004b
- public const int entry_cancel = 2131099723;
+ // aapt resource value: 0x7f05004b
+ public const int entry_cancel = 2131034187;
- // aapt resource value: 0x7f06004c
- public const int entry_comment = 2131099724;
+ // aapt resource value: 0x7f05004c
+ public const int entry_comment = 2131034188;
- // aapt resource value: 0x7f06004f
- public const int entry_confpassword = 2131099727;
+ // aapt resource value: 0x7f05004f
+ public const int entry_confpassword = 2131034191;
- // aapt resource value: 0x7f060050
- public const int entry_created = 2131099728;
+ // aapt resource value: 0x7f050050
+ public const int entry_created = 2131034192;
- // aapt resource value: 0x7f060051
- public const int entry_expires = 2131099729;
+ // aapt resource value: 0x7f050051
+ public const int entry_expires = 2131034193;
- // aapt resource value: 0x7f060059
- public const int entry_extra_strings = 2131099737;
+ // aapt resource value: 0x7f050059
+ public const int entry_extra_strings = 2131034201;
- // aapt resource value: 0x7f060052
- public const int entry_keyfile = 2131099730;
+ // aapt resource value: 0x7f050052
+ public const int entry_keyfile = 2131034194;
- // aapt resource value: 0x7f060053
- public const int entry_modified = 2131099731;
+ // aapt resource value: 0x7f050053
+ public const int entry_modified = 2131034195;
- // aapt resource value: 0x7f06004e
- public const int entry_override_url = 2131099726;
+ // aapt resource value: 0x7f05004e
+ public const int entry_override_url = 2131034190;
- // aapt resource value: 0x7f060054
- public const int entry_password = 2131099732;
+ // aapt resource value: 0x7f050054
+ public const int entry_password = 2131034196;
- // aapt resource value: 0x7f060055
- public const int entry_save = 2131099733;
+ // aapt resource value: 0x7f050055
+ public const int entry_save = 2131034197;
- // aapt resource value: 0x7f06004d
- public const int entry_tags = 2131099725;
+ // aapt resource value: 0x7f05004d
+ public const int entry_tags = 2131034189;
- // aapt resource value: 0x7f060056
- public const int entry_title = 2131099734;
+ // aapt resource value: 0x7f050056
+ public const int entry_title = 2131034198;
- // aapt resource value: 0x7f060057
- public const int entry_url = 2131099735;
+ // aapt resource value: 0x7f050057
+ public const int entry_url = 2131034199;
- // aapt resource value: 0x7f060058
- public const int entry_user_name = 2131099736;
+ // aapt resource value: 0x7f050058
+ public const int entry_user_name = 2131034200;
- // aapt resource value: 0x7f06005b
- public const int error_arc4 = 2131099739;
+ // aapt resource value: 0x7f05005b
+ public const int error_arc4 = 2131034203;
- // aapt resource value: 0x7f06005c
- public const int error_can_not_handle_uri = 2131099740;
+ // aapt resource value: 0x7f05005c
+ public const int error_can_not_handle_uri = 2131034204;
- // aapt resource value: 0x7f06005d
- public const int error_could_not_create_group = 2131099741;
+ // aapt resource value: 0x7f05005d
+ public const int error_could_not_create_group = 2131034205;
- // aapt resource value: 0x7f06005e
- public const int error_could_not_create_parent = 2131099742;
+ // aapt resource value: 0x7f05005e
+ public const int error_could_not_create_parent = 2131034206;
- // aapt resource value: 0x7f06005f
- public const int error_database_exists = 2131099743;
+ // aapt resource value: 0x7f05005f
+ public const int error_database_exists = 2131034207;
- // aapt resource value: 0x7f060060
- public const int error_database_settings = 2131099744;
+ // aapt resource value: 0x7f050060
+ public const int error_database_settings = 2131034208;
- // aapt resource value: 0x7f060061
- public const int error_failed_to_launch_link = 2131099745;
+ // aapt resource value: 0x7f050061
+ public const int error_failed_to_launch_link = 2131034209;
- // aapt resource value: 0x7f060063
- public const int error_file_not_create = 2131099747;
+ // aapt resource value: 0x7f050063
+ public const int error_file_not_create = 2131034211;
- // aapt resource value: 0x7f060062
- public const int error_filename_required = 2131099746;
+ // aapt resource value: 0x7f050062
+ public const int error_filename_required = 2131034210;
- // aapt resource value: 0x7f060064
- public const int error_invalid_db = 2131099748;
+ // aapt resource value: 0x7f050064
+ public const int error_invalid_db = 2131034212;
- // aapt resource value: 0x7f0600e2
- public const int error_invalid_expiry_date = 2131099874;
+ // aapt resource value: 0x7f0500e2
+ public const int error_invalid_expiry_date = 2131034338;
- // aapt resource value: 0x7f060065
- public const int error_invalid_path = 2131099749;
+ // aapt resource value: 0x7f050065
+ public const int error_invalid_path = 2131034213;
- // aapt resource value: 0x7f060066
- public const int error_no_name = 2131099750;
+ // aapt resource value: 0x7f050066
+ public const int error_no_name = 2131034214;
- // aapt resource value: 0x7f060067
- public const int error_nopass = 2131099751;
+ // aapt resource value: 0x7f050067
+ public const int error_nopass = 2131034215;
- // aapt resource value: 0x7f060068
- public const int error_out_of_memory = 2131099752;
+ // aapt resource value: 0x7f050068
+ public const int error_out_of_memory = 2131034216;
- // aapt resource value: 0x7f060069
- public const int error_pass_gen_type = 2131099753;
+ // aapt resource value: 0x7f050069
+ public const int error_pass_gen_type = 2131034217;
- // aapt resource value: 0x7f06006a
- public const int error_pass_match = 2131099754;
+ // aapt resource value: 0x7f05006a
+ public const int error_pass_match = 2131034218;
- // aapt resource value: 0x7f06006b
- public const int error_rounds_not_number = 2131099755;
+ // aapt resource value: 0x7f05006b
+ public const int error_rounds_not_number = 2131034219;
- // aapt resource value: 0x7f06006c
- public const int error_rounds_too_large = 2131099756;
+ // aapt resource value: 0x7f05006c
+ public const int error_rounds_too_large = 2131034220;
- // aapt resource value: 0x7f0600e3
- public const int error_string_key = 2131099875;
+ // aapt resource value: 0x7f0500e3
+ public const int error_string_key = 2131034339;
- // aapt resource value: 0x7f06006d
- public const int error_title_required = 2131099757;
+ // aapt resource value: 0x7f05006d
+ public const int error_title_required = 2131034221;
- // aapt resource value: 0x7f06006e
- public const int error_wrong_length = 2131099758;
+ // aapt resource value: 0x7f05006e
+ public const int error_wrong_length = 2131034222;
- // aapt resource value: 0x7f0600cc
- public const int excludeExpiredEntries = 2131099852;
+ // aapt resource value: 0x7f0500cc
+ public const int excludeExpiredEntries = 2131034316;
- // aapt resource value: 0x7f0600e4
- public const int field_name = 2131099876;
+ // aapt resource value: 0x7f0500e4
+ public const int field_name = 2131034340;
- // aapt resource value: 0x7f0600e5
- public const int field_value = 2131099877;
+ // aapt resource value: 0x7f0500e5
+ public const int field_value = 2131034341;
- // aapt resource value: 0x7f060070
- public const int file_browser = 2131099760;
+ // aapt resource value: 0x7f050070
+ public const int file_browser = 2131034224;
- // aapt resource value: 0x7f060071
- public const int generate_password = 2131099761;
+ // aapt resource value: 0x7f050071
+ public const int generate_password = 2131034225;
- // aapt resource value: 0x7f060072
- public const int group = 2131099762;
+ // aapt resource value: 0x7f050072
+ public const int group = 2131034226;
- // aapt resource value: 0x7f060073
- public const int hint_comment = 2131099763;
+ // aapt resource value: 0x7f050073
+ public const int hint_comment = 2131034227;
- // aapt resource value: 0x7f060074
- public const int hint_conf_pass = 2131099764;
+ // aapt resource value: 0x7f050074
+ public const int hint_conf_pass = 2131034228;
- // aapt resource value: 0x7f060075
- public const int hint_generated_password = 2131099765;
+ // aapt resource value: 0x7f050075
+ public const int hint_generated_password = 2131034229;
- // aapt resource value: 0x7f060076
- public const int hint_group_name = 2131099766;
+ // aapt resource value: 0x7f050076
+ public const int hint_group_name = 2131034230;
- // aapt resource value: 0x7f060077
- public const int hint_keyfile = 2131099767;
+ // aapt resource value: 0x7f050077
+ public const int hint_keyfile = 2131034231;
- // aapt resource value: 0x7f060078
- public const int hint_length = 2131099768;
+ // aapt resource value: 0x7f050078
+ public const int hint_length = 2131034232;
- // aapt resource value: 0x7f06007a
- public const int hint_login_pass = 2131099770;
+ // aapt resource value: 0x7f05007a
+ public const int hint_login_pass = 2131034234;
- // aapt resource value: 0x7f06007d
- public const int hint_override_url = 2131099773;
+ // aapt resource value: 0x7f05007d
+ public const int hint_override_url = 2131034237;
- // aapt resource value: 0x7f060079
- public const int hint_pass = 2131099769;
+ // aapt resource value: 0x7f050079
+ public const int hint_pass = 2131034233;
- // aapt resource value: 0x7f06007e
- public const int hint_tags = 2131099774;
+ // aapt resource value: 0x7f05007e
+ public const int hint_tags = 2131034238;
- // aapt resource value: 0x7f06007b
- public const int hint_title = 2131099771;
+ // aapt resource value: 0x7f05007b
+ public const int hint_title = 2131034235;
- // aapt resource value: 0x7f06007c
- public const int hint_url = 2131099772;
+ // aapt resource value: 0x7f05007c
+ public const int hint_url = 2131034236;
- // aapt resource value: 0x7f06007f
- public const int hint_username = 2131099775;
+ // aapt resource value: 0x7f05007f
+ public const int hint_username = 2131034239;
- // aapt resource value: 0x7f060003
- public const int homepage = 2131099651;
+ // aapt resource value: 0x7f050003
+ public const int homepage = 2131034115;
- // aapt resource value: 0x7f060004
- public const int homepage_short = 2131099652;
+ // aapt resource value: 0x7f050004
+ public const int homepage_short = 2131034116;
- // aapt resource value: 0x7f060080
- public const int install_from_market = 2131099776;
+ // aapt resource value: 0x7f050080
+ public const int install_from_market = 2131034240;
- // aapt resource value: 0x7f060081
- public const int install_from_website = 2131099777;
+ // aapt resource value: 0x7f050081
+ public const int install_from_website = 2131034241;
- // aapt resource value: 0x7f060083
- public const int invalid_algorithm = 2131099779;
+ // aapt resource value: 0x7f050083
+ public const int invalid_algorithm = 2131034243;
- // aapt resource value: 0x7f060084
- public const int invalid_db_sig = 2131099780;
+ // aapt resource value: 0x7f050084
+ public const int invalid_db_sig = 2131034244;
- // aapt resource value: 0x7f060005
- public const int issues = 2131099653;
+ // aapt resource value: 0x7f050005
+ public const int issues = 2131034117;
- // aapt resource value: 0x7f060085
- public const int keyfile_does_not_exist = 2131099781;
+ // aapt resource value: 0x7f050085
+ public const int keyfile_does_not_exist = 2131034245;
- // aapt resource value: 0x7f060086
- public const int keyfile_is_empty = 2131099782;
+ // aapt resource value: 0x7f050086
+ public const int keyfile_is_empty = 2131034246;
- // aapt resource value: 0x7f06000e
- public const int keyfile_key = 2131099662;
+ // aapt resource value: 0x7f05000e
+ public const int keyfile_key = 2131034126;
- // aapt resource value: 0x7f0600cb
- public const int kp2a_findUrl = 2131099851;
+ // aapt resource value: 0x7f0500cb
+ public const int kp2a_findUrl = 2131034315;
- // aapt resource value: 0x7f060087
- public const int length = 2131099783;
+ // aapt resource value: 0x7f050087
+ public const int length = 2131034247;
- // aapt resource value: 0x7f060000
- public const int library_name = 2131099648;
+ // aapt resource value: 0x7f050000
+ public const int library_name = 2131034112;
- // aapt resource value: 0x7f060022
- public const int list_size_default = 2131099682;
+ // aapt resource value: 0x7f050022
+ public const int list_size_default = 2131034146;
- // aapt resource value: 0x7f060011
- public const int list_size_key = 2131099665;
+ // aapt resource value: 0x7f050011
+ public const int list_size_key = 2131034129;
- // aapt resource value: 0x7f060089
- public const int list_size_summary = 2131099785;
+ // aapt resource value: 0x7f050089
+ public const int list_size_summary = 2131034249;
- // aapt resource value: 0x7f060088
- public const int list_size_title = 2131099784;
+ // aapt resource value: 0x7f050088
+ public const int list_size_title = 2131034248;
- // aapt resource value: 0x7f06008a
- public const int loading_database = 2131099786;
+ // aapt resource value: 0x7f05008a
+ public const int loading_database = 2131034250;
- // aapt resource value: 0x7f06008b
- public const int lowercase = 2131099787;
+ // aapt resource value: 0x7f05008b
+ public const int lowercase = 2131034251;
- // aapt resource value: 0x7f06000f
- public const int maskpass_key = 2131099663;
+ // aapt resource value: 0x7f05000f
+ public const int maskpass_key = 2131034127;
- // aapt resource value: 0x7f06008e
- public const int maskpass_summary = 2131099790;
+ // aapt resource value: 0x7f05008e
+ public const int maskpass_summary = 2131034254;
- // aapt resource value: 0x7f06008d
- public const int maskpass_title = 2131099789;
+ // aapt resource value: 0x7f05008d
+ public const int maskpass_title = 2131034253;
- // aapt resource value: 0x7f06008f
- public const int menu_about = 2131099791;
+ // aapt resource value: 0x7f05008f
+ public const int menu_about = 2131034255;
- // aapt resource value: 0x7f060094
- public const int menu_app_settings = 2131099796;
+ // aapt resource value: 0x7f050094
+ public const int menu_app_settings = 2131034260;
- // aapt resource value: 0x7f060090
- public const int menu_change_key = 2131099792;
+ // aapt resource value: 0x7f050090
+ public const int menu_change_key = 2131034256;
- // aapt resource value: 0x7f060091
- public const int menu_copy_pass = 2131099793;
+ // aapt resource value: 0x7f050091
+ public const int menu_copy_pass = 2131034257;
- // aapt resource value: 0x7f060092
- public const int menu_copy_user = 2131099794;
+ // aapt resource value: 0x7f050092
+ public const int menu_copy_user = 2131034258;
- // aapt resource value: 0x7f060093
- public const int menu_create = 2131099795;
+ // aapt resource value: 0x7f050093
+ public const int menu_create = 2131034259;
- // aapt resource value: 0x7f060095
- public const int menu_db_settings = 2131099797;
+ // aapt resource value: 0x7f050095
+ public const int menu_db_settings = 2131034261;
- // aapt resource value: 0x7f060096
- public const int menu_delete = 2131099798;
+ // aapt resource value: 0x7f050096
+ public const int menu_delete = 2131034262;
- // aapt resource value: 0x7f060097
- public const int menu_donate = 2131099799;
+ // aapt resource value: 0x7f050097
+ public const int menu_donate = 2131034263;
- // aapt resource value: 0x7f060098
- public const int menu_edit = 2131099800;
+ // aapt resource value: 0x7f050098
+ public const int menu_edit = 2131034264;
- // aapt resource value: 0x7f060099
- public const int menu_hide_password = 2131099801;
+ // aapt resource value: 0x7f050099
+ public const int menu_hide_password = 2131034265;
- // aapt resource value: 0x7f06009a
- public const int menu_homepage = 2131099802;
+ // aapt resource value: 0x7f05009a
+ public const int menu_homepage = 2131034266;
- // aapt resource value: 0x7f06009b
- public const int menu_lock = 2131099803;
+ // aapt resource value: 0x7f05009b
+ public const int menu_lock = 2131034267;
- // aapt resource value: 0x7f06009c
- public const int menu_open = 2131099804;
+ // aapt resource value: 0x7f05009c
+ public const int menu_open = 2131034268;
- // aapt resource value: 0x7f06009d
- public const int menu_rename = 2131099805;
+ // aapt resource value: 0x7f05009d
+ public const int menu_rename = 2131034269;
- // aapt resource value: 0x7f06009e
- public const int menu_search = 2131099806;
+ // aapt resource value: 0x7f05009e
+ public const int menu_search = 2131034270;
- // aapt resource value: 0x7f06009f
- public const int menu_url = 2131099807;
+ // aapt resource value: 0x7f05009f
+ public const int menu_url = 2131034271;
- // aapt resource value: 0x7f0600a0
- public const int minus = 2131099808;
+ // aapt resource value: 0x7f0500a0
+ public const int minus = 2131034272;
- // aapt resource value: 0x7f0600a1
- public const int never = 2131099809;
+ // aapt resource value: 0x7f0500a1
+ public const int never = 2131034273;
- // aapt resource value: 0x7f0600a3
- public const int no = 2131099811;
+ // aapt resource value: 0x7f0500a3
+ public const int no = 2131034275;
- // aapt resource value: 0x7f0600a4
- public const int no_keys = 2131099812;
+ // aapt resource value: 0x7f0500a4
+ public const int no_keys = 2131034276;
- // aapt resource value: 0x7f0600a5
- public const int no_results = 2131099813;
+ // aapt resource value: 0x7f0500a5
+ public const int no_results = 2131034277;
- // aapt resource value: 0x7f0600a6
- public const int no_url_handler = 2131099814;
+ // aapt resource value: 0x7f0500a6
+ public const int no_url_handler = 2131034278;
- // aapt resource value: 0x7f060006
- public const int oi_filemanager_market = 2131099654;
+ // aapt resource value: 0x7f050006
+ public const int oi_filemanager_market = 2131034118;
- // aapt resource value: 0x7f060007
- public const int oi_filemanager_web = 2131099655;
+ // aapt resource value: 0x7f050007
+ public const int oi_filemanager_web = 2131034119;
- // aapt resource value: 0x7f060010
- public const int omitbackup_key = 2131099664;
+ // aapt resource value: 0x7f050010
+ public const int omitbackup_key = 2131034128;
- // aapt resource value: 0x7f0600a9
- public const int omitbackup_summary = 2131099817;
+ // aapt resource value: 0x7f0500a9
+ public const int omitbackup_summary = 2131034281;
- // aapt resource value: 0x7f0600a8
- public const int omitbackup_title = 2131099816;
+ // aapt resource value: 0x7f0500a8
+ public const int omitbackup_title = 2131034280;
- // aapt resource value: 0x7f0600a7
- public const int open_recent = 2131099815;
+ // aapt resource value: 0x7f0500a7
+ public const int open_recent = 2131034279;
- // aapt resource value: 0x7f0600aa
- public const int pass_filename = 2131099818;
+ // aapt resource value: 0x7f0500aa
+ public const int pass_filename = 2131034282;
- // aapt resource value: 0x7f0600ab
- public const int password_title = 2131099819;
+ // aapt resource value: 0x7f0500ab
+ public const int password_title = 2131034283;
- // aapt resource value: 0x7f0600ac
- public const int progress_create = 2131099820;
+ // aapt resource value: 0x7f0500ac
+ public const int progress_create = 2131034284;
- // aapt resource value: 0x7f0600ad
- public const int progress_title = 2131099821;
+ // aapt resource value: 0x7f0500ad
+ public const int progress_title = 2131034285;
- // aapt resource value: 0x7f0600e6
- public const int protection = 2131099878;
+ // aapt resource value: 0x7f0500e6
+ public const int protection = 2131034342;
- // aapt resource value: 0x7f0600fb
- public const int rate_app = 2131099899;
+ // aapt resource value: 0x7f0500fb
+ public const int rate_app = 2131034363;
- // aapt resource value: 0x7f0600c8
- public const int regular_expression = 2131099848;
+ // aapt resource value: 0x7f0500c8
+ public const int regular_expression = 2131034312;
- // aapt resource value: 0x7f0600ae
- public const int remember_keyfile_summary = 2131099822;
+ // aapt resource value: 0x7f0500ae
+ public const int remember_keyfile_summary = 2131034286;
- // aapt resource value: 0x7f0600af
- public const int remember_keyfile_title = 2131099823;
+ // aapt resource value: 0x7f0500af
+ public const int remember_keyfile_title = 2131034287;
- // aapt resource value: 0x7f0600b0
- public const int remove_from_filelist = 2131099824;
+ // aapt resource value: 0x7f0500b0
+ public const int remove_from_filelist = 2131034288;
- // aapt resource value: 0x7f0600b1
- public const int rijndael = 2131099825;
+ // aapt resource value: 0x7f0500b1
+ public const int rijndael = 2131034289;
- // aapt resource value: 0x7f0600b2
- public const int root = 2131099826;
+ // aapt resource value: 0x7f0500b2
+ public const int root = 2131034290;
- // aapt resource value: 0x7f0600b3
- public const int rounds = 2131099827;
+ // aapt resource value: 0x7f0500b3
+ public const int rounds = 2131034291;
- // aapt resource value: 0x7f0600b4
- public const int rounds_explaination = 2131099828;
+ // aapt resource value: 0x7f0500b4
+ public const int rounds_explaination = 2131034292;
- // aapt resource value: 0x7f0600b5
- public const int rounds_hint = 2131099829;
+ // aapt resource value: 0x7f0500b5
+ public const int rounds_hint = 2131034293;
- // aapt resource value: 0x7f06000d
- public const int rounds_key = 2131099661;
+ // aapt resource value: 0x7f05000d
+ public const int rounds_key = 2131034125;
- // aapt resource value: 0x7f0600b7
- public const int saving_database = 2131099831;
+ // aapt resource value: 0x7f0500b7
+ public const int saving_database = 2131034295;
- // aapt resource value: 0x7f0600be
- public const int search_hint = 2131099838;
+ // aapt resource value: 0x7f0500be
+ public const int search_hint = 2131034302;
- // aapt resource value: 0x7f0600c0
- public const int search_in = 2131099840;
+ // aapt resource value: 0x7f0500c0
+ public const int search_in = 2131034304;
- // aapt resource value: 0x7f0600b9
- public const int search_label = 2131099833;
+ // aapt resource value: 0x7f0500b9
+ public const int search_label = 2131034297;
- // aapt resource value: 0x7f0600cd
- public const int search_options = 2131099853;
+ // aapt resource value: 0x7f0500cd
+ public const int search_options = 2131034317;
- // aapt resource value: 0x7f0600bf
- public const int search_results = 2131099839;
+ // aapt resource value: 0x7f0500bf
+ public const int search_results = 2131034303;
- // aapt resource value: 0x7f06002e
- public const int short_app_name = 2131099694;
+ // aapt resource value: 0x7f05002e
+ public const int short_app_name = 2131034158;
- // aapt resource value: 0x7f060030
- public const int short_app_name_nonet = 2131099696;
+ // aapt resource value: 0x7f050030
+ public const int short_app_name_nonet = 2131034160;
- // aapt resource value: 0x7f0600ba
- public const int show_password = 2131099834;
+ // aapt resource value: 0x7f0500ba
+ public const int show_password = 2131034298;
- // aapt resource value: 0x7f0600bc
- public const int sort_db = 2131099836;
+ // aapt resource value: 0x7f0500bc
+ public const int sort_db = 2131034300;
- // aapt resource value: 0x7f060012
- public const int sort_key = 2131099666;
+ // aapt resource value: 0x7f050012
+ public const int sort_key = 2131034130;
- // aapt resource value: 0x7f0600bb
- public const int sort_name = 2131099835;
+ // aapt resource value: 0x7f0500bb
+ public const int sort_name = 2131034299;
- // aapt resource value: 0x7f0600b8
- public const int space = 2131099832;
+ // aapt resource value: 0x7f0500b8
+ public const int space = 2131034296;
- // aapt resource value: 0x7f0600bd
- public const int special = 2131099837;
+ // aapt resource value: 0x7f0500bd
+ public const int special = 2131034301;
- // aapt resource value: 0x7f0600d0
- public const int start_create = 2131099856;
+ // aapt resource value: 0x7f0500d0
+ public const int start_create = 2131034320;
- // aapt resource value: 0x7f0600d2
- public const int start_create_import = 2131099858;
+ // aapt resource value: 0x7f0500d2
+ public const int start_create_import = 2131034322;
- // aapt resource value: 0x7f0600cf
- public const int start_open_file = 2131099855;
+ // aapt resource value: 0x7f0500cf
+ public const int start_open_file = 2131034319;
- // aapt resource value: 0x7f0600d1
- public const int start_open_url = 2131099857;
+ // aapt resource value: 0x7f0500d1
+ public const int start_open_url = 2131034321;
- // aapt resource value: 0x7f0600fa
- public const int suggest_improvements = 2131099898;
+ // aapt resource value: 0x7f0500fa
+ public const int suggest_improvements = 2131034362;
- // aapt resource value: 0x7f060013
- public const int timeout_key = 2131099667;
+ // aapt resource value: 0x7f050013
+ public const int timeout_key = 2131034131;
- // aapt resource value: 0x7f0600fc
- public const int translate_app = 2131099900;
+ // aapt resource value: 0x7f0500fc
+ public const int translate_app = 2131034364;
- // aapt resource value: 0x7f0600c1
- public const int twofish = 2131099841;
+ // aapt resource value: 0x7f0500c1
+ public const int twofish = 2131034305;
- // aapt resource value: 0x7f0600c2
- public const int underline = 2131099842;
+ // aapt resource value: 0x7f0500c2
+ public const int underline = 2131034306;
- // aapt resource value: 0x7f0600c3
- public const int unsupported_db_version = 2131099843;
+ // aapt resource value: 0x7f0500c3
+ public const int unsupported_db_version = 2131034307;
- // aapt resource value: 0x7f0600c4
- public const int uppercase = 2131099844;
+ // aapt resource value: 0x7f0500c4
+ public const int uppercase = 2131034308;
- // aapt resource value: 0x7f0600c7
- public const int version_label = 2131099847;
+ // aapt resource value: 0x7f0500c7
+ public const int version_label = 2131034311;
- // aapt resource value: 0x7f0600c5
- public const int warning_read_only = 2131099845;
+ // aapt resource value: 0x7f0500c5
+ public const int warning_read_only = 2131034309;
- // aapt resource value: 0x7f0600c6
- public const int warning_unmounted = 2131099846;
+ // aapt resource value: 0x7f0500c6
+ public const int warning_unmounted = 2131034310;
- // aapt resource value: 0x7f0600a2
- public const int yes = 2131099810;
+ // aapt resource value: 0x7f0500a2
+ public const int yes = 2131034274;
private String()
{
diff --git a/src/keepass2android/Resources/layout-v11/SaveButton.xml b/src/keepass2android/Resources/layout-v11/SaveButton.xml
new file mode 100644
index 00000000..2e543338
--- /dev/null
+++ b/src/keepass2android/Resources/layout-v11/SaveButton.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/keepass2android/Resources/layout-v11/entry_edit.xml b/src/keepass2android/Resources/layout-v11/entry_edit.xml
new file mode 100644
index 00000000..5cf44da9
--- /dev/null
+++ b/src/keepass2android/Resources/layout-v11/entry_edit.xml
@@ -0,0 +1,212 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/keepass2android/Resources/layout-v11/entry_view.xml b/src/keepass2android/Resources/layout-v11/entry_view.xml
new file mode 100644
index 00000000..e2321f3f
--- /dev/null
+++ b/src/keepass2android/Resources/layout-v11/entry_view.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/keepass2android/Resources/layout-v11/group_add_entry.xml b/src/keepass2android/Resources/layout-v11/group_add_entry.xml
new file mode 100644
index 00000000..a36aea4f
--- /dev/null
+++ b/src/keepass2android/Resources/layout-v11/group_add_entry.xml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/keepass2android/Resources/layout/group_add_entry.xml b/src/keepass2android/Resources/layout/group_add_entry.xml
index 4bae1693..2c74f33f 100644
--- a/src/keepass2android/Resources/layout/group_add_entry.xml
+++ b/src/keepass2android/Resources/layout/group_add_entry.xml
@@ -2,10 +2,6 @@
-
+ android:layout_above="@id/divider2" />
\ No newline at end of file
diff --git a/src/keepass2android/Resources/values-v11/styles.xml b/src/keepass2android/Resources/values-v11/styles.xml
index e471da5f..02ede1d3 100644
--- a/src/keepass2android/Resources/values-v11/styles.xml
+++ b/src/keepass2android/Resources/values-v11/styles.xml
@@ -20,69 +20,32 @@
diff --git a/src/keepass2android/Resources/values/styles.xml b/src/keepass2android/Resources/values/styles.xml
index efbc2abc..5da8c0a6 100644
--- a/src/keepass2android/Resources/values/styles.xml
+++ b/src/keepass2android/Resources/values/styles.xml
@@ -22,79 +22,41 @@
\ No newline at end of file
diff --git a/src/keepass2android/icons/DrawableFactory.cs b/src/keepass2android/icons/DrawableFactory.cs
index 15b3abdb..0f7d3fe9 100644
--- a/src/keepass2android/icons/DrawableFactory.cs
+++ b/src/keepass2android/icons/DrawableFactory.cs
@@ -57,7 +57,7 @@ namespace keepass2android
iv.SetImageDrawable (draw);
}
- private Drawable getIconDrawable (Resources res, PwDatabase db, PwIcon icon, PwUuid customIconId)
+ public Drawable getIconDrawable (Resources res, PwDatabase db, PwIcon icon, PwUuid customIconId)
{
if (customIconId != PwUuid.Zero) {
return getIconDrawable (res, db, customIconId);
diff --git a/src/keepass2android/keepass2android.csproj b/src/keepass2android/keepass2android.csproj
index 6ed7b7f5..f6b05dd7 100644
--- a/src/keepass2android/keepass2android.csproj
+++ b/src/keepass2android/keepass2android.csproj
@@ -580,6 +580,10 @@
+
+
+
+
diff --git a/src/keepass2android/views/GroupRootView.cs b/src/keepass2android/views/GroupRootView.cs
index 06d8bce5..f5e3b1da 100644
--- a/src/keepass2android/views/GroupRootView.cs
+++ b/src/keepass2android/views/GroupRootView.cs
@@ -62,7 +62,7 @@ namespace keepass2android.view
LayoutInflater inflater = (LayoutInflater) Context.GetSystemService(Context.LayoutInflaterService);
inflater.Inflate(Resource.Layout.group_add_entry, this);
- Button addEntry = (Button) FindViewById(Resource.Id.add_entry);
+ View addEntry = FindViewById(Resource.Id.add_entry);
addEntry.Visibility = ViewStates.Invisible;
}