71 lines
2.6 KiB
XML
71 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 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.
|
|
-->
|
|
<LinearLayout 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="72dp"
|
|
android:background="@drawable/chips_dropdown_background"
|
|
android:padding="12dp">
|
|
|
|
<com.android.messaging.ui.ContactIconView
|
|
android:id="@android:id/icon"
|
|
style="@style/ChipIconStyle"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:importantForAccessibility="no" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="middle"
|
|
android:singleLine="true"
|
|
android:textAlignment="viewStart"
|
|
android:textColor="@drawable/chips_dropdown_text_color"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@android:id/text1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="middle"
|
|
android:singleLine="true"
|
|
android:textAlignment="viewStart"
|
|
android:textColor="@drawable/chips_dropdown_text_color"
|
|
android:textSize="14sp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@android:id/icon1"
|
|
style="@style/ChipDeleteIconStyle"
|
|
android:layout_width="36dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:contentDescription="@string/chips_delete_content_description" />
|
|
|
|
</LinearLayout> |