mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.8 KiB
49 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
android:id="@+id/ScrollBox" |
|
android:layout_width="fill_parent" |
|
android:layout_height="fill_parent" > |
|
|
|
<LinearLayout |
|
android:layout_width="fill_parent" |
|
android:layout_height="wrap_content" |
|
android:gravity="center_vertical|center_horizontal" |
|
android:orientation="vertical" |
|
android:scrollbarStyle="insideInset" > |
|
|
|
<TextView |
|
android:id="@+id/textView4" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:text="@string/about" |
|
android:textAppearance="?android:attr/textAppearanceLarge" /> |
|
|
|
<TextView |
|
android:id="@+id/textViewIntro" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:autoLink="web" |
|
android:text="@string/intro" |
|
android:textAppearance="?android:attr/textAppearanceSmall" /> |
|
|
|
<TextView |
|
android:id="@+id/textView5" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:textAppearance="?android:attr/textAppearanceSmall" /> |
|
|
|
<TextView |
|
android:id="@+id/textView6" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:textAppearance="?android:attr/textAppearanceSmall" /> |
|
|
|
<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" /> |
|
</LinearLayout> |
|
|
|
</ScrollView>
|
|
|