OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <!-- NOTES ON SPEC IMPLEMENTATION: |
| 7 +................................................................+ |
| 8 42dp | STRING TO SHOW MIC | |
| 9 +................................................................+ |
| 10 |
| 11 The microphone icon is supposed to be 24dp x 24dp. To allow a bigger |
| 12 touch target, we make it 42dp by adding 9dp of padding to each side. |
| 13 Because there is supposed to be a 12dp in between the microphone and |
| 14 the box, we use a total of 12dp for the end padding. |
| 15 --> |
| 16 |
| 17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 android:id="@+id/text_container" |
| 19 android:layout_width="match_parent" |
| 20 android:layout_height="wrap_content" |
| 21 android:layout_gravity="center" |
| 22 android:alpha="0.9" |
| 23 android:background="@drawable/card_single" |
| 24 android:gravity="center_vertical" |
| 25 android:orientation="horizontal" > |
| 26 |
| 27 <TextView |
| 28 android:id="@+id/title" |
| 29 android:layout_width="0dp" |
| 30 android:layout_height="42dp" |
| 31 android:layout_weight="1" |
| 32 android:paddingStart="12dp" |
| 33 android:gravity="center_vertical" |
| 34 android:singleLine="true" |
| 35 android:textAlignment="viewStart" |
| 36 android:textColor="@color/google_grey_600" |
| 37 android:textSize="17sp" /> |
| 38 |
| 39 <ImageView |
| 40 android:id="@+id/microphone_icon" |
| 41 android:layout_width="42dp" |
| 42 android:layout_height="42dp" |
| 43 android:paddingTop="9dp" |
| 44 android:paddingBottom="9dp" |
| 45 android:paddingStart="9dp" |
| 46 android:paddingEnd="12dp" |
| 47 android:src="@drawable/infobar_microphone" |
| 48 android:tint="@color/light_normal_color" |
| 49 android:contentDescription="@null" |
| 50 android:scaleType="centerInside" /> |
| 51 |
| 52 </LinearLayout> |
OLD | NEW |