summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/searchfragment/nearbyplaces
diff options
context:
space:
mode:
authorcalderwoodra <calderwoodra@google.com>2017-09-20 14:03:33 -0700
committerEric Erfanian <erfanian@google.com>2017-09-22 15:55:15 +0000
commitf7d8f63913c8d1e83ee379cbf60077f02c978cad (patch)
tree8ef43661758ddd74f6e0ec563bc3801006fcdeb5 /java/com/android/dialer/searchfragment/nearbyplaces
parent81643679f629176a6e79e6b3f08ad0a78f426935 (diff)
Added location permission request inline the search fragment.
This change adds a prompt inline the search fragment list view to request the location permission (if they haven't already granted it). screenshot: http://screen/upu9t55mghq Bug: 65858857 Test: NSFT, SAT, SCMT PiperOrigin-RevId: 169447095 Change-Id: I6c312057ff3c4e2362ce21b0c57e1e5de7b25ce0
Diffstat (limited to 'java/com/android/dialer/searchfragment/nearbyplaces')
-rw-r--r--java/com/android/dialer/searchfragment/nearbyplaces/res/layout/location_permission_row.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/java/com/android/dialer/searchfragment/nearbyplaces/res/layout/location_permission_row.xml b/java/com/android/dialer/searchfragment/nearbyplaces/res/layout/location_permission_row.xml
new file mode 100644
index 000000000..800bf62a8
--- /dev/null
+++ b/java/com/android/dialer/searchfragment/nearbyplaces/res/layout/location_permission_row.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2017 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
+ -->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
+ android:paddingTop="16dp">
+
+ <ImageView
+ android:id="@+id/permission_image"
+ android:layout_width="56dp"
+ android:layout_height="56dp"
+ android:layout_marginEnd="16dp"
+ android:src="@drawable/quantum_ic_my_location_vd_theme_24"
+ android:tint="@color/dialer_secondary_text_color"/>
+
+ <TextView
+ android:id="@+id/permission_text"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_toEndOf="@id/permission_image"
+ android:minHeight="56dp"
+ android:text="@string/permission_no_location_for_search"
+ android:textSize="16sp"
+ android:textColor="@color/dialer_secondary_text_color"/>
+
+ <Button
+ android:id="@+id/location_permission_allow"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentEnd="true"
+ android:layout_below="@id/permission_text"
+ android:text="@string/nearby_places_allow"
+ android:textColor="@color/dialer_theme_color"
+ style="@style/Widget.AppCompat.Button.Borderless"/>
+</RelativeLayout> \ No newline at end of file