mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-23 04:52:48 +00:00
49 lines
1.8 KiB
XML
49 lines
1.8 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="10dp">
|
|
<RelativeLayout
|
|
android:id="@+id/grid_image_layout"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ProgressBar
|
|
android:id="@+id/grid_spinner"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:indeterminate="true">
|
|
</ProgressBar>
|
|
<ImageView
|
|
android:id="@+id/grid_image"
|
|
android:cropToPadding="false"
|
|
android:scaleType="fitXY"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_width="100dp"
|
|
android:layout_height="117dp">
|
|
</ImageView>
|
|
<ImageView
|
|
android:id="@+id/grid_overlay"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="33dp"
|
|
android:layout_height="33dp">
|
|
</ImageView>
|
|
</RelativeLayout>
|
|
<TextView
|
|
android:id="@+id/grid_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/grid_image_layout"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:scrollHorizontally="true"
|
|
android:textSize="14sp" >
|
|
</TextView>
|
|
</RelativeLayout> |