blob: 8c8d07048358009367f16a0f16b391871c9a1724 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2018 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
-->
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/car_padding_4"
android:layout_marginBottom="@dimen/car_padding_4"
app:cardCornerRadius="@dimen/car_radius_3">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@color/car_suggestion_card"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/car_padding_2"
android:layout_marginTop="@dimen/car_padding_2"
android:layout_marginEnd="@dimen/car_keyline_1"
android:background="@color/car_suggestion_card"
android:layout_marginStart="@dimen/car_keyline_1"
android:gravity="center_vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/car_suggestion_card"
android:textAppearance="@style/TextAppearance.Car.Body1.SingleLine"/>
<TextView
android:id="@+id/desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/car_suggestion_card"
android:textAppearance="@style/TextAppearance.Car.Body2.SingleLine"
android:layout_marginTop="@dimen/car_padding_1"
android:layout_below="@id/title"
android:visibility="gone"/>
<ImageView
android:id="@+id/end_icon"
android:layout_alignParentEnd="true"
android:layout_marginStart="@dimen/car_padding_4"
android:background="@color/car_suggestion_card"
android:layout_width="@dimen/car_primary_icon_size"
android:layout_height="@dimen/car_primary_icon_size"
android:layout_centerVertical="true"
android:gravity="center_vertical"
android:tint="@color/car_body1"
android:layout_gravity="center_vertical"/>
</RelativeLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="@dimen/car_card_action_bar_height"
android:paddingLeft="@dimen/car_keyline_1"
android:background="@color/car_card_toolbar">
<Button
android:id="@+id/action_button_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textColor="@color/action_button_text_color"
style="?android:attr/borderlessButtonStyle" />
</FrameLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>