blob: 7f165e86d0d4ec11dc968cb517e9789102da3698 [file] [log] [blame]
Jin Cao079d02b2014-08-20 16:30:25 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2014 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<LinearLayout
20 xmlns:android="http://schemas.android.com/apk/res/android"
21 android:id="@+id/conversation_tip_swipeable_content"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:background="@color/tip_teaser_bg">
25
26 <ImageView
27 android:id="@+id/conversation_tip_icon1"
28 android:layout_width="40dp"
Jin Cao9710a602014-08-24 12:34:36 -070029 android:layout_height="40dp"
Jin Cao079d02b2014-08-20 16:30:25 -070030 android:layout_gravity="center_vertical"
31 android:scaleType="center"
32 style="@style/TeaserStartMargin" />
33
34 <TextView
35 android:id="@+id/conversation_tip_text"
36 android:layout_width="0dp"
37 android:layout_height="wrap_content"
38 android:layout_gravity="center_vertical"
39 android:layout_weight="1"
Jin Cao079d02b2014-08-20 16:30:25 -070040 android:paddingTop="16dp"
41 android:paddingBottom="16dp"
Jin Caodeb92dd2014-08-28 19:51:38 -070042 android:textColor="@color/tip_teaser_text"
Jin Cao079d02b2014-08-20 16:30:25 -070043 android:textSize="16sp"
44 style="@style/TeaserStartMargin" />
45
46 <ImageView
47 android:id="@+id/dismiss_icon"
48 android:layout_width="56dp"
49 android:layout_height="match_parent"
50 android:layout_gravity="center_vertical"
51 android:contentDescription="@string/dismiss_tip_hover_text"
52 android:background="?android:attr/selectableItemBackground"
53 android:scaleType="center"
Jin Caodeb92dd2014-08-28 19:51:38 -070054 android:src="@drawable/ic_cancel_24dp" />
Jin Cao079d02b2014-08-20 16:30:25 -070055
56</LinearLayout>