1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 13:23:39 +00:00

accessibility service

This commit is contained in:
Kyle Spearrin
2019-04-30 14:33:00 -04:00
parent 464f4ba300
commit 9eeafcd027
14 changed files with 756 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
using Android.Views.Accessibility;
using System;
using System.Collections.Generic;
namespace Bit.Droid.Accessibility
{
public class NodeList : List<AccessibilityNodeInfo>, IDisposable
{
public void Dispose()
{
foreach(var item in this)
{
item.Dispose();
}
}
}
}