30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/mainBG"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".fragments.detail.VideoDetailFragment">
|
|
|
|
<TextView
|
|
android:id="@+id/mainBGTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="30dp"
|
|
android:fontFamily="sans-serif-condensed"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textSize="40sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/mainBGSubtitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="@string/main_bg_subtitle"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
</LinearLayout>
|