RpyPlayer/res/layout/main.xml

33 lines
1.1 KiB
XML
Raw Normal View History

2015-04-04 15:09:43 +03:00
<?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" >
2015-04-04 15:09:43 +03:00
<com.annimon.everlastingsummer.AnimatableImageView
2015-04-04 15:09:43 +03:00
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"
android:contentDescription="@string/app_name" />
2015-04-04 15:09:43 +03:00
<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>