summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/main/impl/toolbar/res/layout/toolbar_layout.xml
blob: 049cf2ef53f88bb1a1366a3970161724134515e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?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.
-->
<com.android.dialer.main.impl.toolbar.MainToolbar
    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="@dimen/expanded_search_bar_height"
    android:background="?android:attr/colorPrimary"
    app:contentInsetEnd="0dp"
    app:contentInsetStart="0dp">
  <FrameLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent">
    <com.android.dialer.main.impl.toolbar.SearchBarView
        android:id="@+id/search_view_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/search_bar_margin"
        android:background="@drawable/search_bar_background_rounded_corners"
        android:elevation="4dp"
        android:minHeight="@dimen/collapsed_search_bar_height">

      <RelativeLayout
          android:id="@+id/search_box_collapsed"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_gravity="center_vertical"
          android:background="?android:attr/selectableItemBackground"
          android:gravity="center_vertical">

        <ImageView
            android:id="@+id/search_magnifying_glass"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_marginStart="8dp"
            android:layout_centerVertical="true"
            android:importantForAccessibility="no"
            android:scaleType="center"
            android:src="@drawable/quantum_ic_search_vd_theme_24"
            android:tint="?colorIcon"/>

        <TextView
            android:id="@+id/search_box_start_search"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_centerVertical="true"
            android:layout_toEndOf="@+id/search_magnifying_glass"
            android:layout_toStartOf="@+id/voice_search_button"
            android:text="@string/dialer_hint_find_contact"
            android:textSize="16dp"
            style="@style/Dialer.TextAppearance.Secondary"/>

        <ImageView
            android:id="@+id/voice_search_button"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_toStartOf="@+id/main_options_menu_button"
            android:background="?android:attr/selectableItemBackgroundBorderless"
            android:contentDescription="@string/description_start_voice_search"
            android:scaleType="center"
            android:src="@drawable/quantum_ic_mic_vd_theme_24"
            android:tint="?colorIcon"/>

        <ImageButton
            android:id="@+id/main_options_menu_button"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_alignParentEnd="true"
            android:background="?android:attr/selectableItemBackgroundBorderless"
            android:contentDescription="@string/action_menu_overflow_description"
            android:scaleType="center"
            android:src="@drawable/quantum_ic_more_vert_vd_theme_24"
            android:tint="?colorIcon"/>
      </RelativeLayout>

      <include layout="@layout/expanded_search_bar"/>
    </com.android.dialer.main.impl.toolbar.SearchBarView>

    <!-- Sets android:importantForAccessibility="no" to avoid being announced when navigating with
         talkback enabled. It will still be announced when user drag or drop contact onto it.
         This is required since drag and drop event is only sent to views are visible when drag
         starts. -->
    <com.android.dialer.app.list.RemoveView
        android:id="@+id/remove_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="@dimen/search_bar_margin"
        android:layout_gravity="center_vertical"
        android:contentDescription="@string/main_remove_contact"
        android:importantForAccessibility="no">

      <!-- We set this view's visibility to gone instead of the parent because if we hide remove
      view, it won't receive drag and accessibility events. -->
      <LinearLayout
          android:id="@+id/remove_view_content"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="?android:attr/colorPrimary"
          android:gravity="center"
          android:orientation="horizontal"
          android:visibility="gone">

        <ImageView
            android:id="@+id/remove_view_icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp"
            android:src="@drawable/quantum_ic_close_vd_theme_24"
            android:tint="?colorIconOnUnthemedDarkBackground"/>

        <TextView
            android:id="@+id/remove_view_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/main_remove_contact"
            android:textColor="?colorTextOnUnthemedDarkBackground"
            android:textSize="16sp"/>
      </LinearLayout>
    </com.android.dialer.app.list.RemoveView>
  </FrameLayout>
</com.android.dialer.main.impl.toolbar.MainToolbar>