mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
34 lines
1.3 KiB
XML
34 lines
1.3 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:orientation="vertical" android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:id="@+id/mainBG"
|
||
|
tools:context=".VideoItemDetailActivity"
|
||
|
tools:showIn="@layout/activity_videoitem_list">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/imageView"
|
||
|
android:layout_gravity="center_horizontal" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
android:text="@string/app_name"
|
||
|
android:textSize="40sp"
|
||
|
android:fontFamily="sans-serif-condensed"
|
||
|
android:layout_marginTop="30dp"
|
||
|
android:id="@+id/mainBGTitle"
|
||
|
android:layout_gravity="center_horizontal" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:text="@string/main_bg_subtitle"
|
||
|
android:id="@+id/mainBGSubtitle"
|
||
|
android:layout_gravity="center_horizontal" />
|
||
|
</LinearLayout>
|