Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a72918aa authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "Add voice search button in Dialer"

parents f00e1cfc 191df33b
Loading
Loading
Loading
Loading
+1.24 KiB
Loading image diff...
+913 B
Loading image diff...
+1.57 KiB
Loading image diff...
+10 −0
Original line number Diff line number Diff line
@@ -49,8 +49,18 @@
                android:layout_width="40dp"
                android:padding="6dp"
                android:src="@drawable/ic_close_dk"
                android:clickable="true"
                android:background="?android:attr/selectableItemBackground"
                android:visibility="gone" />
            <ImageView
                android:id="@+id/voice_search_button"
                android:layout_height="40dp"
                android:layout_width="40dp"
                android:padding="6dp"
                android:src="@drawable/ic_voice_search"
                android:clickable="true"
                android:contentDescription="@string/description_start_voice_search"
                android:background="?android:attr/selectableItemBackground" />
        </LinearLayout>
        <FrameLayout
            android:layout_height="0dp"
+3 −0
Original line number Diff line number Diff line
@@ -452,6 +452,9 @@
    -->
    <string name="description_call_log_unheard_voicemail">Unheard voicemail</string>

    <!-- String describing the icon used to start a voice search -->
    <string name="description_start_voice_search">Start voice search</string>

    <!-- The string used to represent an unknown location for a phone number in the call log [CHAR LIMIT=3] -->
    <string name="call_log_empty_gecode">-</string>

Loading