mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-14 05:25:08 -05:00
14 lines
290 B
C#
14 lines
290 B
C#
|
using Android.Content;
|
||
|
using Android.Widget;
|
||
|
using KeePassLib.Security;
|
||
|
|
||
|
namespace keepass2android
|
||
|
{
|
||
|
internal class CopyToClipboardService
|
||
|
{
|
||
|
public static void CopyValueToClipboardWithTimeout(Context ctx, string text)
|
||
|
{
|
||
|
Toast.MakeText(ctx, text, ToastLength.Short).Show();
|
||
|
}
|
||
|
}
|
||
|
}
|