Files
android_development/samples/Support4Demos/res/layout/accessibility_manager.xml
Svetoslav Ganov bd9f43a8e8 Adding a sample showing how to use the accessibility API in the compat library.
NOTE: This affects only the SDK and not the system image.

bug:5485208

Change-Id: I2b086e880cfe147883a0db8222522710132d67a3
2011-10-20 18:33:59 -07:00

25 lines
761 B
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/accessibility_manager_instructions"/>
<TextView
android:id="@+id/accessibility_state"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dip"/>
</LinearLayout>
</ScrollView>