You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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">
-
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <Button
- android:id="@+id/buttonImage"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="选图" />
- <Button
- android:id="@+id/buttonDetect"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="识别-cpu" />
- <Button
- android:id="@+id/buttonDetectGPU"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="识别-gpu" />
- </LinearLayout>
-
- <TextView
- android:id="@+id/infoResult"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="" />
-
- <ImageView
- android:id="@+id/imageView"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1" />
-
- </LinearLayout>
|