Browse Source
android: Shape/spacing adjustments to game card
android: Shape/spacing adjustments to game card
Ripple effect now reaches into rounded corners, icon size changed, company text removed, title font adjusted, and spacing around the card was adjusted as well. Text also doesn't get cut off anymore and instead scrolls indefinitely on one line.nce_cpp
committed by
bunnei
3 changed files with 64 additions and 58 deletions
-
16src/android/app/src/main/java/org/yuzu/yuzu_emu/adapters/GameAdapter.kt
-
104src/android/app/src/main/res/layout/card_game.xml
-
2src/android/app/src/main/res/values/dimens.xml
@ -1,64 +1,66 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<androidx.constraintlayout.widget.ConstraintLayout |
|||
<FrameLayout |
|||
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:foreground="?attr/selectableItemBackground" |
|||
android:clickable="true" |
|||
android:clipToPadding="false" |
|||
android:focusable="true" |
|||
android:paddingStart="4dp" |
|||
android:paddingTop="8dp" |
|||
android:paddingEnd="4dp" |
|||
android:paddingBottom="8dp" |
|||
android:transitionName="card_game"> |
|||
android:layout_height="wrap_content"> |
|||
|
|||
<com.google.android.material.card.MaterialCardView |
|||
style="?attr/materialCardViewElevatedStyle" |
|||
android:id="@+id/card_game_art" |
|||
android:layout_width="140dp" |
|||
android:layout_height="140dp" |
|||
app:cardCornerRadius="4dp" |
|||
app:layout_constraintEnd_toEndOf="parent" |
|||
app:layout_constraintStart_toStartOf="parent" |
|||
app:layout_constraintTop_toTopOf="parent"> |
|||
android:id="@+id/card_game" |
|||
android:layout_width="wrap_content" |
|||
android:layout_height="wrap_content" |
|||
android:background="?attr/selectableItemBackground" |
|||
android:clickable="true" |
|||
android:clipToPadding="false" |
|||
android:focusable="true" |
|||
android:transitionName="card_game" |
|||
android:layout_gravity="center" |
|||
app:cardElevation="0dp" |
|||
app:cardCornerRadius="12dp"> |
|||
|
|||
<ImageView |
|||
android:id="@+id/image_game_screen" |
|||
android:layout_width="match_parent" |
|||
android:layout_height="match_parent" /> |
|||
<androidx.constraintlayout.widget.ConstraintLayout |
|||
android:layout_width="wrap_content" |
|||
android:layout_height="wrap_content" |
|||
android:padding="6dp"> |
|||
|
|||
</com.google.android.material.card.MaterialCardView> |
|||
<com.google.android.material.card.MaterialCardView |
|||
style="?attr/materialCardViewElevatedStyle" |
|||
android:id="@+id/card_game_art" |
|||
android:layout_width="150dp" |
|||
android:layout_height="150dp" |
|||
app:cardCornerRadius="4dp" |
|||
app:layout_constraintEnd_toEndOf="parent" |
|||
app:layout_constraintStart_toStartOf="parent" |
|||
app:layout_constraintTop_toTopOf="parent"> |
|||
|
|||
<com.google.android.material.textview.MaterialTextView |
|||
style="@style/TextAppearance.Material3.BodyLarge" |
|||
android:id="@+id/text_game_title" |
|||
android:layout_width="0dp" |
|||
android:layout_height="wrap_content" |
|||
android:ellipsize="end" |
|||
android:maxLines="2" |
|||
android:paddingTop="8dp" |
|||
android:textAlignment="viewStart" |
|||
app:layout_constraintEnd_toEndOf="@+id/card_game_art" |
|||
app:layout_constraintStart_toStartOf="@+id/card_game_art" |
|||
app:layout_constraintTop_toBottomOf="@+id/card_game_art" |
|||
tools:text="Super Mario Odyssey" /> |
|||
<ImageView |
|||
android:id="@+id/image_game_screen" |
|||
android:layout_width="match_parent" |
|||
android:layout_height="match_parent" /> |
|||
|
|||
<com.google.android.material.textview.MaterialTextView |
|||
style="@style/TextAppearance.Material3.BodyMedium" |
|||
android:id="@+id/text_game_caption" |
|||
android:layout_width="0dp" |
|||
android:layout_height="wrap_content" |
|||
android:ellipsize="end" |
|||
android:lines="1" |
|||
android:maxLines="1" |
|||
android:paddingTop="8dp" |
|||
android:textAlignment="viewStart" |
|||
app:layout_constraintEnd_toEndOf="@+id/card_game_art" |
|||
app:layout_constraintStart_toStartOf="@+id/card_game_art" |
|||
app:layout_constraintTop_toBottomOf="@+id/text_game_title" |
|||
tools:text="Nintendo" /> |
|||
</com.google.android.material.card.MaterialCardView> |
|||
|
|||
<com.google.android.material.textview.MaterialTextView |
|||
style="@style/TextAppearance.Material3.TitleMedium" |
|||
android:id="@+id/text_game_title" |
|||
android:layout_width="0dp" |
|||
android:layout_height="wrap_content" |
|||
android:layout_marginTop="8dp" |
|||
android:textAlignment="center" |
|||
android:textSize="14sp" |
|||
android:singleLine="true" |
|||
android:marqueeRepeatLimit="marquee_forever" |
|||
android:ellipsize="none" |
|||
android:requiresFadingEdge="horizontal" |
|||
app:layout_constraintEnd_toEndOf="@+id/card_game_art" |
|||
app:layout_constraintStart_toStartOf="@+id/card_game_art" |
|||
app:layout_constraintTop_toBottomOf="@+id/card_game_art" |
|||
tools:text="The Legend of Zelda: Skyward Sword" /> |
|||
|
|||
</androidx.constraintlayout.widget.ConstraintLayout> |
|||
|
|||
</com.google.android.material.card.MaterialCardView> |
|||
|
|||
</androidx.constraintlayout.widget.ConstraintLayout> |
|||
</FrameLayout> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue