parent
90593e6284
commit
28518f1574
@ -0,0 +1,59 @@ |
|||||||
|
<?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="wrap_content" |
||||||
|
android:orientation="vertical" |
||||||
|
tools:background="@color/gray_dark_1"> |
||||||
|
|
||||||
|
<androidx.appcompat.widget.AppCompatTextView |
||||||
|
android:id="@+id/appCompatTextView" |
||||||
|
android:layout_width="0dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_marginStart="16dp" |
||||||
|
android:layout_marginTop="16dp" |
||||||
|
android:layout_marginEnd="8dp" |
||||||
|
android:layout_marginBottom="16dp" |
||||||
|
android:text="Blinds" |
||||||
|
android:textColor="@color/white" |
||||||
|
android:textSize="16sp" |
||||||
|
app:layout_constraintBottom_toBottomOf="parent" |
||||||
|
app:layout_constraintEnd_toStartOf="@+id/smallBlind" |
||||||
|
app:layout_constraintStart_toStartOf="parent" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
|
<androidx.appcompat.widget.AppCompatEditText |
||||||
|
android:id="@+id/smallBlind" |
||||||
|
android:layout_width="96dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_marginTop="8dp" |
||||||
|
android:layout_marginEnd="8dp" |
||||||
|
android:layout_marginBottom="8dp" |
||||||
|
android:gravity="end|center_vertical" |
||||||
|
android:imeOptions="actionNext" |
||||||
|
android:inputType="numberDecimal" |
||||||
|
android:lines="1" |
||||||
|
android:textColor="@color/white" |
||||||
|
app:layout_constraintBottom_toBottomOf="parent" |
||||||
|
app:layout_constraintEnd_toStartOf="@+id/bigBlind" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.AppCompatEditText |
||||||
|
android:id="@+id/bigBlind" |
||||||
|
android:layout_width="96dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_marginTop="8dp" |
||||||
|
android:layout_marginEnd="8dp" |
||||||
|
android:layout_marginBottom="8dp" |
||||||
|
android:gravity="end|center_vertical" |
||||||
|
android:imeOptions="actionDone" |
||||||
|
android:inputType="numberDecimal" |
||||||
|
android:lines="1" |
||||||
|
android:textColor="@color/white" |
||||||
|
app:layout_constraintBottom_toBottomOf="parent" |
||||||
|
app:layout_constraintEnd_toEndOf="parent" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout> |
||||||
@ -0,0 +1,11 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" |
||||||
|
android:layout_width="match_parent" android:layout_height="match_parent"> |
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView |
||||||
|
android:id="@+id/gameRecyclerView" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:minHeight="200dp" /> |
||||||
|
|
||||||
|
</FrameLayout> |
||||||
@ -0,0 +1,23 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<menu 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"> |
||||||
|
<item |
||||||
|
android:id="@+id/actionClear" |
||||||
|
android:orderInCategory="100" |
||||||
|
android:title="@string/app_name" |
||||||
|
android:icon="@drawable/ic_close_white_24dp" |
||||||
|
app:showAsAction="always" /> |
||||||
|
<item |
||||||
|
android:id="@+id/actionAdd" |
||||||
|
android:icon="@drawable/ic_add_white_24dp" |
||||||
|
android:orderInCategory="200" |
||||||
|
android:title="Search" |
||||||
|
app:showAsAction="ifRoom" /> |
||||||
|
<item |
||||||
|
android:id="@+id/actionSave" |
||||||
|
android:icon="@drawable/ic_check_white_24dp" |
||||||
|
android:orderInCategory="300" |
||||||
|
android:title="User" |
||||||
|
app:showAsAction="ifRoom" /> |
||||||
|
</menu> |
||||||
Loading…
Reference in new issue