2020-04-12 22:23:03 +02:00
|
|
|
<?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:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:nextFocusRight="@id/game_play"
|
2020-04-12 22:23:03 +02:00
|
|
|
android:padding="16dp">
|
|
|
|
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
|
|
android:id="@+id/game_icon"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="150dp"
|
|
|
|
android:contentDescription="@string/icon"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:focusable="false"
|
2020-04-12 22:23:03 +02:00
|
|
|
app:shapeAppearanceOverlay="@style/roundedAppImage" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/game_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/game_subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Display2"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/game_play"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="6dp"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:focusedByDefault="true"
|
2020-04-12 22:23:03 +02:00
|
|
|
android:text="@string/play"
|
|
|
|
app:icon="@drawable/ic_play" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/game_pin"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="6dp"
|
|
|
|
android:text="@string/pin" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|