xref: /aosp_15_r20/external/tensorflow/tensorflow/lite/java/ovic/demo/app/res/layout/activity_main.xml (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2018 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<RelativeLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:tools="http://schemas.android.com/tools"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent"
22    android:paddingBottom="@dimen/activity_vertical_margin"
23    android:paddingLeft="@dimen/activity_horizontal_margin"
24    android:paddingRight="@dimen/activity_horizontal_margin"
25    android:paddingTop="@dimen/activity_vertical_margin"
26    tools:context="ovic.demo.app.OvicBenchmarkerActivity">
27
28  <TextView
29    android:layout_width="wrap_content"
30    android:layout_height="wrap_content"
31    android:text="@string/initial_status_msg"
32    android:id="@+id/textView"
33    android:layout_above="@+id/button_clf_start"
34    android:layout_alignParentTop="true"/>
35
36  <Button
37    android:layout_width="wrap_content"
38    android:layout_height="wrap_content"
39    android:text="@string/start_clf_label"
40    android:id="@id/button_clf_start"
41    android:layout_alignParentBottom="true"
42    android:layout_alignParentLeft="true"
43    android:background="@drawable/start_button_color"
44    android:padding="10dp"
45    android:layout_marginRight="30dp"
46    android:layout_marginLeft="100dp"
47    android:layout_marginTop="10dp"
48    android:foreground="#000000"
49    android:textColor="#ffffff"
50    android:enabled="true"
51    style="?android:attr/buttonBarButtonStyle"
52    android:onClick="classifyPressed"/>
53
54  <Button
55    android:layout_width="wrap_content"
56    android:layout_height="wrap_content"
57    android:text="@string/start_det_label"
58    android:id="@+id/button_det_start"
59    android:layout_alignParentBottom="true"
60    android:layout_alignParentRight="true"
61    android:layout_toRightOf="@id/button_clf_start"
62    android:background="@drawable/start_button_color"
63    android:padding="10dp"
64    android:layout_marginRight="100dp"
65    android:layout_marginLeft="30dp"
66    android:layout_marginTop="10dp"
67    android:foreground="#000000"
68    android:textColor="#ffffff"
69    android:enabled="true"
70    style="?android:attr/buttonBarButtonStyle"
71    android:onClick="detectPressed"/>
72
73</RelativeLayout>
74