opencv/platforms/android/service/engine/res/layout/main.xml

50 lines
1.8 KiB
XML
Raw Normal View History

2012-06-21 22:50:05 +08:00
<?xml version="1.0" encoding="utf-8"?>
2015-05-20 22:59:42 +08:00
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollBox"
2012-06-21 22:50:05 +08:00
android:layout_width="fill_parent"
2015-05-20 22:59:42 +08:00
android:layout_height="fill_parent" >
2012-06-21 22:50:05 +08:00
<LinearLayout
2015-05-20 22:59:42 +08:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:orientation="vertical"
android:scrollbarStyle="insideInset" >
2012-06-21 22:50:05 +08:00
<TextView
2015-05-20 22:59:42 +08:00
android:id="@+id/textView4"
2012-06-21 22:50:05 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-05-20 22:59:42 +08:00
android:text="@string/about"
android:textAppearance="?android:attr/textAppearanceLarge" />
2012-06-21 22:50:05 +08:00
<TextView
2015-05-20 22:59:42 +08:00
android:id="@+id/textViewIntro"
2012-06-21 22:50:05 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-05-20 22:59:42 +08:00
android:autoLink="web"
android:text="@string/intro"
android:textAppearance="?android:attr/textAppearanceSmall" />
2012-06-21 22:50:05 +08:00
<TextView
2015-05-20 22:59:42 +08:00
android:id="@+id/textView5"
2012-06-21 22:50:05 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-05-20 22:59:42 +08:00
android:textAppearance="?android:attr/textAppearanceSmall" />
2012-06-21 22:50:05 +08:00
<TextView
2015-05-20 22:59:42 +08:00
android:id="@+id/textView6"
2012-06-21 22:50:05 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-05-20 22:59:42 +08:00
android:textAppearance="?android:attr/textAppearanceSmall" />
2012-06-21 22:50:05 +08:00
2015-05-20 22:59:42 +08:00
<Button
android:id="@+id/CheckEngineUpdate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:text="@string/checkUpdate" />
2012-06-21 22:50:05 +08:00
</LinearLayout>
2015-05-20 22:59:42 +08:00
</ScrollView>