diff --git a/src/Android/Resources/drawable-hdpi/more.png b/src/Android/Resources/drawable-hdpi/more.png index edb0f4607..7d1093901 100644 Binary files a/src/Android/Resources/drawable-hdpi/more.png and b/src/Android/Resources/drawable-hdpi/more.png differ diff --git a/src/Android/Resources/drawable-xhdpi/more.png b/src/Android/Resources/drawable-xhdpi/more.png index 519c18f93..4368b9f56 100644 Binary files a/src/Android/Resources/drawable-xhdpi/more.png and b/src/Android/Resources/drawable-xhdpi/more.png differ diff --git a/src/Android/Resources/drawable-xxhdpi/more.png b/src/Android/Resources/drawable-xxhdpi/more.png index 9c764c72a..f87c695d5 100644 Binary files a/src/Android/Resources/drawable-xxhdpi/more.png and b/src/Android/Resources/drawable-xxhdpi/more.png differ diff --git a/src/Android/Resources/drawable-xxxhdpi/more.png b/src/Android/Resources/drawable-xxxhdpi/more.png index af9dcd006..e120002b8 100644 Binary files a/src/Android/Resources/drawable-xxxhdpi/more.png and b/src/Android/Resources/drawable-xxxhdpi/more.png differ diff --git a/src/Android/Resources/drawable/more.png b/src/Android/Resources/drawable/more.png index 7c187e6cc..4496b34a7 100644 Binary files a/src/Android/Resources/drawable/more.png and b/src/Android/Resources/drawable/more.png differ diff --git a/src/App/Controls/VaultListViewCell.cs b/src/App/Controls/VaultListViewCell.cs index 699f8f098..6a9b5525b 100644 --- a/src/App/Controls/VaultListViewCell.cs +++ b/src/App/Controls/VaultListViewCell.cs @@ -17,12 +17,12 @@ namespace Bit.App.Controls LabelIcon.SetBinding(VisualElement.IsVisibleProperty, nameof(VaultListPageModel.Cipher.Shared)); LabelIcon2.SetBinding(VisualElement.IsVisibleProperty, nameof(VaultListPageModel.Cipher.HasAttachments)); - Button.Image = "more"; + Button.Image = "more.png"; Button.Command = new Command(() => moreClickedAction?.Invoke(LoginParameter)); Button.BackgroundColor = Color.Transparent; - LabelIcon.Source = "share"; - LabelIcon2.Source = "paperclip"; + LabelIcon.Source = "share.png"; + LabelIcon2.Source = "paperclip.png"; BackgroundColor = Color.White; }