use of android.app.UiAutomation.OnAccessibilityEventListener in project platform_frameworks_base by android.
the class EventsCommand method run.
@Override
public void run(String[] args) {
UiAutomationShellWrapper automationWrapper = new UiAutomationShellWrapper();
automationWrapper.connect();
automationWrapper.getUiAutomation().setOnAccessibilityEventListener(new OnAccessibilityEventListener() {
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
SimpleDateFormat formatter = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
System.out.println(String.format("%s %s", formatter.format(new Date()), event.toString()));
}
});
// for user to press Ctrl+C
synchronized (mQuitLock) {
try {
mQuitLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
automationWrapper.disconnect();
}
use of android.app.UiAutomation.OnAccessibilityEventListener in project android_frameworks_base by AOSPA.
the class EventsCommand method run.
@Override
public void run(String[] args) {
UiAutomationShellWrapper automationWrapper = new UiAutomationShellWrapper();
automationWrapper.connect();
automationWrapper.getUiAutomation().setOnAccessibilityEventListener(new OnAccessibilityEventListener() {
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
SimpleDateFormat formatter = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
System.out.println(String.format("%s %s", formatter.format(new Date()), event.toString()));
}
});
// for user to press Ctrl+C
synchronized (mQuitLock) {
try {
mQuitLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
automationWrapper.disconnect();
}
use of android.app.UiAutomation.OnAccessibilityEventListener in project android_frameworks_base by DirtyUnicorns.
the class EventsCommand method run.
@Override
public void run(String[] args) {
UiAutomationShellWrapper automationWrapper = new UiAutomationShellWrapper();
automationWrapper.connect();
automationWrapper.getUiAutomation().setOnAccessibilityEventListener(new OnAccessibilityEventListener() {
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
SimpleDateFormat formatter = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
System.out.println(String.format("%s %s", formatter.format(new Date()), event.toString()));
}
});
// for user to press Ctrl+C
synchronized (mQuitLock) {
try {
mQuitLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
automationWrapper.disconnect();
}
use of android.app.UiAutomation.OnAccessibilityEventListener in project android_frameworks_base by ResurrectionRemix.
the class EventsCommand method run.
@Override
public void run(String[] args) {
UiAutomationShellWrapper automationWrapper = new UiAutomationShellWrapper();
automationWrapper.connect();
automationWrapper.getUiAutomation().setOnAccessibilityEventListener(new OnAccessibilityEventListener() {
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
SimpleDateFormat formatter = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
System.out.println(String.format("%s %s", formatter.format(new Date()), event.toString()));
}
});
// for user to press Ctrl+C
synchronized (mQuitLock) {
try {
mQuitLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
automationWrapper.disconnect();
}
use of android.app.UiAutomation.OnAccessibilityEventListener in project android_frameworks_base by crdroidandroid.
the class EventsCommand method run.
@Override
public void run(String[] args) {
UiAutomationShellWrapper automationWrapper = new UiAutomationShellWrapper();
automationWrapper.connect();
automationWrapper.getUiAutomation().setOnAccessibilityEventListener(new OnAccessibilityEventListener() {
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
SimpleDateFormat formatter = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
System.out.println(String.format("%s %s", formatter.format(new Date()), event.toString()));
}
});
// for user to press Ctrl+C
synchronized (mQuitLock) {
try {
mQuitLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
automationWrapper.disconnect();
}
Aggregations