RpyPlayer/res/layout/main.xml

33 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black" >
<ImageView
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"
android:contentDescription="@string/app_name" />
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:background="#7f000000"
android:textColor="#FFDEC88C"
android:layout_gravity="bottom"
android:gravity="start|top"
android:layout_margin="10dp"
android:padding="8dp"
android:textAppearance="?android:attr/textAppearanceMedium" />
</FrameLayout>