Name user call activity "Phone"

Name the main call activity differently from the app label so that
it's a simpler name in activity disambuation dialogues.

Bug:23090337
Change-Id: I2f4eb92022dcce2c29f08dc4cdd2ee4282af8842
This commit is contained in:
Jay Shrauner 2015-08-11 10:46:08 -07:00
parent 1a37383033
commit 4d0b4198e8
2 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,7 @@
URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
contacts provider entries. Any data not fitting the schema described is ignored. --> contacts provider entries. Any data not fitting the schema described is ignored. -->
<activity android:name=".components.UserCallActivity" <activity android:name=".components.UserCallActivity"
android:label="@string/userCallActivityLabel"
android:theme="@style/Theme.Telecomm.Transparent" android:theme="@style/Theme.Telecomm.Transparent"
android:permission="android.permission.CALL_PHONE" android:permission="android.permission.CALL_PHONE"
android:excludeFromRecents="true" android:excludeFromRecents="true"

View File

@ -20,6 +20,10 @@
and app info screens. --> and app info screens. -->
<string name="telecommAppLabel" product="default">Phone Call Management</string> <string name="telecommAppLabel" product="default">Phone Call Management</string>
<!-- Title used for the activity for placing a call. This name appears
in activity disambig dialogs -->
<string name="userCallActivityLabel" product="default">Phone</string>
<!-- Name for an "unknown" caller. --> <!-- Name for an "unknown" caller. -->
<string name="unknown">Unknown</string> <string name="unknown">Unknown</string>