mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-19 00:09:15 +01:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="15dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="50dp"
|
||
|
android:layout_height="50dp"
|
||
|
android:layout_alignParentStart="true"
|
||
|
android:layout_alignParentTop="false"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:contentDescription="@string/icon"
|
||
|
android:src="@drawable/ic_missing_icon" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text_title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="60dp"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceListItem" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text_subtitle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@id/text_title"
|
||
|
android:layout_alignStart="@id/text_title"
|
||
|
android:textAppearance="?android:attr/textAppearanceListItemSecondary"
|
||
|
android:textColor="@android:color/tertiary_text_light" />
|
||
|
</RelativeLayout>
|