rename back to current names
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using Android.Graphics.Drawables;
|
||||
using keepass2android;
|
||||
|
||||
|
||||
namespace keepass2android
|
||||
{
|
||||
/// <summary>
|
||||
/// Reperesents the popup menu item in EntryActivity to go to the URL in the field
|
||||
/// </summary>
|
||||
class GotoUrlMenuItem : IPopupMenuItem
|
||||
{
|
||||
public string UrlFieldKey { get; }
|
||||
private readonly EntryActivity _ctx;
|
||||
|
||||
public GotoUrlMenuItem(EntryActivity ctx, string urlFieldKey)
|
||||
{
|
||||
UrlFieldKey = urlFieldKey;
|
||||
_ctx = ctx;
|
||||
}
|
||||
|
||||
public Drawable Icon
|
||||
{
|
||||
get { return _ctx.Resources.GetDrawable(Resource.Drawable.baseline_upload_24); }
|
||||
}
|
||||
|
||||
public string Text
|
||||
{
|
||||
get { return _ctx.Resources.GetString(Resource.String.menu_url); }
|
||||
}
|
||||
|
||||
public void HandleClick()
|
||||
{
|
||||
_ctx.GotoUrl(UrlFieldKey);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user