5
0
mirror of https://github.com/cwinfo/envayasms.git synced 2024-09-19 13:59:35 +00:00
envayasms/res/layout/help.xml

24 lines
828 B
XML
Raw Normal View History

2011-09-13 02:06:03 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#333333">
<TextView
android:linksClickable="true"
android:drawablePadding="5px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
2011-09-13 02:06:03 +00:00
android:id="@+id/help"
android:autoLink="web"
2011-09-13 02:06:03 +00:00
android:textColor="#FFFFFF"
android:layout_margin="5px">
</TextView>
<Button
android:id="@+id/reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:onClick="resetClicked"
android:text="Reset All Settings" />
2011-09-13 02:06:03 +00:00
</LinearLayout>