mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 13:23:39 +00:00
accessibility service
This commit is contained in:
17
src/Android/Accessibility/NodeList.cs
Normal file
17
src/Android/Accessibility/NodeList.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user