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