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.
66 lines
2.4 KiB
66 lines
2.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/title"
|
|
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginStart="8dp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/position_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/settings_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp">
|
|
|
|
<net.pokeranalytics.android.ui.view.PlayerImageView
|
|
android:id="@+id/playerImage"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:background="@android:color/transparent" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/position_button"
|
|
style="@style/PokerAnalyticsTheme.HHButton"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"
|
|
android:layout_marginStart="8dp"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ps_hand_layout"
|
|
android:orientation="horizontal"
|
|
android:layout_width="0dp"
|
|
android:layout_height="50dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/rounded_board_background"
|
|
android:layout_marginStart="16dp"
|
|
android:paddingStart="4dp"
|
|
android:paddingEnd="0dp"
|
|
android:gravity="center"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatEditText
|
|
android:id="@+id/stack_edit_text"
|
|
style="@style/PokerAnalyticsTheme.EditText"
|
|
android:hint="@string/stack"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="end"
|
|
android:inputType="none"
|
|
android:maxLines="1" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |