mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-02-03 13:40:30 +03:00
4076d84efc
* NCA decryption * Remove unnecessary new lines * Remove loader error dialog * Always show ROMs * Address CRs * Add subtitle padding in grid mode
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView 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"
|
|
app:cardElevation="0dp"
|
|
app:cardUseCompatPadding="true"
|
|
app:strokeColor="?attr/colorOnSurface"
|
|
app:strokeWidth="1dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/errorText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAllCaps="true"
|
|
android:textColor="#F0FF0000"
|
|
android:textStyle="bold"
|
|
tools:text="File" />
|
|
|
|
<TextView
|
|
android:id="@+id/fileText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
tools:text="Error" />
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|