blob: 53a7cf3d9fcadc1f51c45c8e1f2e4c944668a72e [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2016 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tv="http://schemas.android.com/apk/res/com.android.tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<FrameLayout
android:layout_width="@dimen/dvr_library_card_image_layout_width"
android:layout_height="@dimen/dvr_library_card_image_layout_height"
android:layout_margin="2dp">
<ImageView android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:scaleType="centerCrop"
android:contentDescription="@null"
tv:layout_viewType="main" />
<ProgressBar android:id="@+id/recording_progress"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="@dimen/dvr_library_card_progress_height"
android:mirrorForRtl="false"
android:progressTint="@color/play_controls_progress_bar_watched"
android:progressDrawable="@drawable/progress_horizontal"
android:indeterminate="false"
android:visibility="gone"
android:max="100"
android:layout_gravity="bottom" />
<FrameLayout android:id="@+id/affiliated_icon_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/card_image_gradient"
android:visibility="invisible">
<ImageView android:id="@+id/affiliated_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="12dp" />
</FrameLayout>
</FrameLayout>
<LinearLayout android:id="@+id/info_area"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="11dp"
android:paddingEnd="11dp"
android:paddingTop="7dp"
android:paddingBottom="7dp"
android:background="@color/dvr_card_info"
tv:layout_viewType="info">
<FrameLayout android:id="@+id/title_area"
android:layout_width="match_parent"
android:layout_height="@dimen/dvr_library_card_folded_title_height">
<TextView android:id="@+id/title_one_line"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:gravity="start"
android:maxLines="1"
style="@style/dvr_card_view_title_text"
tv:layout_viewType="main"/>
<TextView android:id="@+id/title_two_lines"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:gravity="start"
android:maxLines="2"
android:alpha="0"
style="@style/dvr_card_view_title_text"
tv:layout_viewType="main"/>
</FrameLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView android:id="@+id/content_major"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start"
style="@style/dvr_card_view_content_text" />
<TextView android:id="@+id/content_minor"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@+id/content_major"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
style="@style/dvr_card_view_content_text" />
</RelativeLayout>
</LinearLayout>
</merge>