mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-02-15 06:20:12 -05:00
27 lines
544 B
C#
27 lines
544 B
C#
using System;
|
|
using Android.Content.Res;
|
|
using Android.Graphics.Drawables;
|
|
using Android.Widget;
|
|
using KeePassLib;
|
|
using keepass2android;
|
|
|
|
namespace Kp2aUnitTests
|
|
{
|
|
internal class TestDrawableFactory : IDrawableFactory
|
|
{
|
|
public void AssignDrawableTo(ImageView iv, Resources res, PwDatabase db, PwIcon icon, PwUuid customIconId)
|
|
{
|
|
|
|
}
|
|
|
|
public Drawable GetIconDrawable(Resources res, PwDatabase db, PwIcon icon, PwUuid customIconId)
|
|
{
|
|
return res.GetDrawable(Resource.Drawable.Icon);
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |