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.
32 lines
1.2 KiB
32 lines
1.2 KiB
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".dogfood.MainActivity">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/start_stop_button"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="36dp"
|
||
|
android:layout_marginLeft="36dp"
|
||
|
android:onClick="startStopTestClicked"
|
||
|
android:text="Start NN API Test"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/message"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:text=""
|
||
|
app:layout_constraintStart_toStartOf="@+id/start_button"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/start_stop_button" />
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|