blob: ccaf838fcd1c090d01ad2eb4d6a615d1149745d1 [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="@dimen/dvr_card_layout_width"
android:layout_height="@dimen/dvr_card_layout_height">
<ImageView
android:id="@+id/image"
android:layout_width="@dimen/dvr_card_image_layout_width"
android:layout_height="@dimen/dvr_card_image_layout_height"
android:layout_gravity="center_horizontal"
android:layout_margin="2dp"
android:gravity="center"
tv:layout_viewType="main"/>
<LinearLayout
android:orientation="vertical"
android:id="@+id/info_area"
android:layout_width="match_parent"
android:layout_height="match_parent"
tv:layout_viewType="info">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"/>
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"/>
</LinearLayout>
</merge>