|
|
|
@ -2,10 +2,10 @@ |
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
android:id="@+id/rowTitleValue.container" |
|
|
|
android:id="@+id/rowStatsTitleValue.container" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:orientation="horizontal"> |
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
@ -13,31 +13,41 @@ |
|
|
|
android:background="?selectableItemBackground"> |
|
|
|
android:background="?selectableItemBackground"> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView |
|
|
|
<androidx.appcompat.widget.AppCompatTextView |
|
|
|
android:id="@+id/rowTitleValue.title" |
|
|
|
android:id="@+id/rowStatsTitleValue.title" |
|
|
|
style="@style/PokerAnalyticsTheme.TextView.RowTitle" |
|
|
|
style="@style/PokerAnalyticsTheme.TextView.RowStatsTitle" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="0dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="16dp" |
|
|
|
android:layout_marginTop="8dp" |
|
|
|
android:layout_marginBottom="16dp" |
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layout_constraintEnd_toStartOf="@+id/nextArrow" |
|
|
|
app:layout_constraintStart_toStartOf="@+id/guidelineStart" |
|
|
|
app:layout_constraintStart_toStartOf="@+id/guidelineStart" |
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
tools:text="Title" /> |
|
|
|
tools:text="Title" /> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView |
|
|
|
<androidx.appcompat.widget.AppCompatTextView |
|
|
|
android:id="@+id/rowTitleValue.value" |
|
|
|
android:id="@+id/rowStatsTitleValue.value" |
|
|
|
style="@style/PokerAnalyticsTheme.TextView.RowValue" |
|
|
|
style="@style/PokerAnalyticsTheme.TextView.RowStatsValue" |
|
|
|
android:layout_width="0dp" |
|
|
|
android:layout_width="0dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="16dp" |
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
android:ellipsize="end" |
|
|
|
android:layout_marginBottom="8dp" |
|
|
|
android:gravity="end" |
|
|
|
android:paddingTop="-8dp" |
|
|
|
android:maxLines="1" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/nextArrow" |
|
|
|
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/guidelineStart" |
|
|
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/rowStatsTitleValue.title" |
|
|
|
|
|
|
|
tools:text="Value" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView |
|
|
|
|
|
|
|
android:id="@+id/nextArrow" |
|
|
|
|
|
|
|
android:layout_width="24dp" |
|
|
|
|
|
|
|
android:layout_height="24dp" |
|
|
|
|
|
|
|
android:src="@drawable/ic_arrow_right" |
|
|
|
|
|
|
|
android:tint="@color/gray_light" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd" |
|
|
|
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd" |
|
|
|
app:layout_constraintStart_toEndOf="@+id/rowTitleValue.title" |
|
|
|
app:layout_constraintTop_toTopOf="parent" /> |
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
|
|
|
|
tools:text="Value" app:layout_constraintHorizontal_bias="1.0"/> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Guideline |
|
|
|
<androidx.constraintlayout.widget.Guideline |
|
|
|
android:id="@+id/guidelineStart" |
|
|
|
android:id="@+id/guidelineStart" |
|
|
|
@ -56,7 +66,7 @@ |
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
|
|
|
|
|
|
|
|
<FrameLayout |
|
|
|
<FrameLayout |
|
|
|
android:id="@+id/rowTitleValue.separator" |
|
|
|
android:id="@+id/rowStatsTitleValue.separator" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="16dp" |
|
|
|
android:layout_height="16dp" |
|
|
|
android:visibility="gone" |
|
|
|
android:visibility="gone" |