summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/main/impl/toolbar
diff options
context:
space:
mode:
authorMichael W <baddaemon87@gmail.com>2021-03-13 15:06:04 +0100
committerMichael W <baddaemon87@gmail.com>2021-03-14 16:56:17 +0100
commit21bf85c4859bbd25242fd5f377154855a53b39cb (patch)
tree37c05f489c776b567a1062995f278b38c4ad7a87 /java/com/android/dialer/main/impl/toolbar
parent62924a3cf27ec62e6bfa2d128f5659559ac8c55f (diff)
Dialer: Add a helpline phone book
* Expose the sensitive numbers to the user so they can easily call one of them * Make sure to leave as few traces of access as possible: * Calling a number closes the helpline activity * Opening a link closes the helpline activity * Before opening a link, a warning about browser history appears * This makes use of a changed xml-format, which now allows adding various things: <item> <categories>violence|human trafficking</categories> <name>Some NGO or whatever</name> <number>1234</number> <anything>anything else</anything> </item> Change-Id: I952bf10ee9516b83e595d8a19450696b303393b6
Diffstat (limited to 'java/com/android/dialer/main/impl/toolbar')
-rw-r--r--java/com/android/dialer/main/impl/toolbar/res/menu/main_menu.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/java/com/android/dialer/main/impl/toolbar/res/menu/main_menu.xml b/java/com/android/dialer/main/impl/toolbar/res/menu/main_menu.xml
index 0e354cece..c75a17d01 100644
--- a/java/com/android/dialer/main/impl/toolbar/res/menu/main_menu.xml
+++ b/java/com/android/dialer/main/impl/toolbar/res/menu/main_menu.xml
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2018 The Android Open Source Project
+ ~ Copyright (C) 2021 The LineageOS Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
@@ -29,6 +30,10 @@
android:visible="false"/>
<item
+ android:id="@+id/menu_helplines"
+ android:title="@string/action_menu_helplines"/>
+
+ <item
android:id="@+id/settings"
android:title="@string/settings"
app:showAsAction="collapseActionView"/>