mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-23 21:12:44 +00:00
37 lines
1.3 KiB
XML
37 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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dp">
|
|
<RelativeLayout
|
|
android:id="@+id/grid_image_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/grid_image"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_width="150dp"
|
|
android:layout_height="100dp">
|
|
</ImageView>
|
|
<ImageView
|
|
android:id="@+id/grid_overlay"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginLeft="65dp"
|
|
android:layout_marginStart="65dp"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp">
|
|
</ImageView>
|
|
</RelativeLayout>
|
|
<TextView
|
|
android:id="@+id/grid_text"
|
|
android:layout_width="150dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/grid_image_layout"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:textSize="18sp" >
|
|
</TextView>
|
|
</RelativeLayout> |