mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-02-16 10:31:07 +00:00
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".Game" >
|
|
|
|
<com.limelight.ui.StreamView
|
|
android:id="@+id/surfaceView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center" />
|
|
|
|
<TextView
|
|
android:id="@+id/performanceOverlay"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_gravity="left"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textSize="@dimen/font_size_tiny"
|
|
android:gravity="left"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/notificationOverlay"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_gravity="right"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:gravity="right"
|
|
android:background="#80000000"
|
|
android:visibility="gone" />
|
|
|
|
</merge>
|