mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 19:14:56 +00:00
24 lines
738 B
XML
24 lines
738 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="192dp"
|
||
|
android:layout_height="192dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:contentDescription="@string/file_type_icon"
|
||
|
android:padding="8dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="0.5"
|
||
|
android:textSize="18sp" />
|
||
|
|
||
|
</LinearLayout>
|