All checks were successful
continuous-integration/drone/push Build is passing
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.counter.TeamNames">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/viewNames"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
android:id="@+id/nameTeamA"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:autofillHints=""
|
|
android:gravity="center"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="text"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:text="@string/team_a"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large" />
|
|
|
|
<EditText
|
|
android:id="@+id/nameTeamB"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:autofillHints=""
|
|
android:gravity="center"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="text"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:text="@string/team_b"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |