2016-03-22 19:39:31 -06:00
|
|
|
<?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"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2021-05-28 12:43:15 +02:00
|
|
|
android:paddingStart="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingEnd="@dimen/activity_horizontal_margin"
|
2017-04-09 14:34:00 -03:00
|
|
|
tools:context=".fragments.detail.VideoDetailFragment">
|
2016-03-22 19:39:31 -06:00
|
|
|
|
|
|
|
<TextView
|
2020-10-09 20:24:02 +02:00
|
|
|
android:id="@+id/mainBGTitle"
|
2016-03-22 19:39:31 -06:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_gravity="center_horizontal"
|
2016-03-22 19:39:31 -06:00
|
|
|
android:layout_marginTop="30dp"
|
2021-05-28 12:43:15 +02:00
|
|
|
android:layout_marginBottom="20dp"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:fontFamily="sans-serif-condensed"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textSize="40sp" />
|
2016-03-22 19:39:31 -06:00
|
|
|
|
|
|
|
<TextView
|
2020-10-09 20:24:02 +02:00
|
|
|
android:id="@+id/mainBGSubtitle"
|
2021-05-28 12:43:15 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-03-22 19:39:31 -06:00
|
|
|
android:layout_height="wrap_content"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_gravity="center_horizontal"
|
2021-05-28 12:43:15 +02:00
|
|
|
android:gravity="center"
|
2016-03-22 19:39:31 -06:00
|
|
|
android:text="@string/main_bg_subtitle"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2016-03-22 19:55:00 -06:00
|
|
|
|
2020-10-09 20:24:02 +02:00
|
|
|
</LinearLayout>
|