History log of /packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
b06d00924123aa13086be564fee6404215fcc0d5 02-Mar-2018 linyuh <linyuh@google.com> Disable phone number formatting for devices with Argentinian SIMs.

Bug: 73718977
Test: PhoneNumberHelperTest
PiperOrigin-RevId: 187540382
Change-Id: I814ec62b2215c24b8cde3442c5dc83d98ad87164
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
9e335e2d4fb43b22c7f95b2e9d4e048798e8e239 01-Mar-2018 Android Dialer <noreply@google.com> Updating SecondaryInfo value class to use AutoValue with builder pattern.

Test: CallCardPresenterTest,SecondaryInfoTest
PiperOrigin-RevId: 187481728
Change-Id: I3d2b23b5d51ea1e5ff30b8f6b6570d76c006fe86
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
31fe99856b34854bd36a17d02b774095dcfe51a6 26-Feb-2018 Android Dialer <noreply@google.com> Updating PrimaryCallState value class to use AutoValue with builder pattern.

Bug: 34502119
Test: BottomRowTest,CallCardPresenterTest,PrimaryCallStateTest,TopRowTest
PiperOrigin-RevId: 187071451
Change-Id: Ib1b4baee397f61eade84bf1a887596dddc37230a
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
f94391034e9d591c18d04c0b796d944938201f6a 21-Feb-2018 Android Dialer <noreply@google.com> Updating PrimaryInfo value class to use AutoValue with builder pattern.

Bug: 34502119
Test: BottomRowTest,CallCardPresenterTest,PrimaryInfoTest,TopRowTest
PiperOrigin-RevId: 186460178
Change-Id: Ifb90019b6a5568788d51f4a55a07f7693c803eaf
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
974fc2903d4ecd0d8392a02b988982d24a2e93f4 02-Feb-2018 Android Dialer <noreply@google.com> internal change

Bug: 68825005
Test: Added unit tests on CallFeedbackListenerImpl, CallFeedbackNotificationManager and DialerCall. Also manually verified the change.
PiperOrigin-RevId: 184211115
Change-Id: I50927036c3cd5d47862704376e2eef108c473fbf
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
dd5f1a58c8453d56e334a54e0035392abd14c21c 24-Jan-2018 wangqi <wangqi@google.com> Updated call number by NW is not displayed

CallCardPresenter updates a call number if the number is updated by NW.
But the logic is worng. The comparing numbers are always same. Because
it compares with the same objects in DialerCall#areSameNumber.

This is a upstream change from:
https://android-review.googlesource.com/c/platform/packages/apps/Dialer/+/556000

originating number is shown in the call screen.
Bug: 70201489
Test: manual - Verified that a call number that changed from a
PiperOrigin-RevId: 183022988
Change-Id: I04305998e77ca120b1248636c63984b3d20f0db1
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
f4ba34589194d4609cfeed64d53d815a11a1d5d1 09-Jan-2018 wangqi <wangqi@google.com> Handle android.telephony.event.EVENT_CALL_FORWARDED.

Bug: 33761801
Test: none
PiperOrigin-RevId: 181347696
Change-Id: Iaf09d1b45a2e97e4d8da24b5bd7172da152d703c
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
183cb71663320f16149d83eeebaff7795a4b55f2 28-Dec-2017 linyuh <linyuh@google.com> Remove field prefixes.

Test: Existing tests
PiperOrigin-RevId: 180230450
Change-Id: I0b2589cfeeaef81e42a04efa48af24b4e4d0e95f
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
1d62ab209130bdacdb64b2cd824b5ff35817b89f 29-Nov-2017 wangqi <wangqi@google.com> Enable timer in emergency call.

"This phone's number: xxx" is shown for emergency call which replaces in call
timer. This change move it to under emergency location service so timer could
be shown again.

Bug: 69810801
Test: manual
PiperOrigin-RevId: 177363955
Change-Id: I543fbbee869923800ffd92a5799819b712f0b953
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
3855a6b60d226062ae2b311590b16534f3c4dd85 21-Nov-2017 Android Dialer <noreply@google.com> Adding call feedback mechanism

Test: No impact on existing functionalities
PiperOrigin-RevId: 176562444
Change-Id: I209379dde3e920a27d6e735c8494647154e40e5a
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
c8cf79e8e834148ff37759f59e83e169584ee99f 17-Oct-2017 wangqi <wangqi@google.com> Some cleanup of incoming call latency.

1. Only update secondary info when it's changed.
2. Removed redundant call to update notification on activity start (b/36649622)
3. Use same call back for notification update from contact info query to avoid duplicated call backs.

The actual latency reduction is insignificant (<10%).

Bug: 36649622,64542087
Test: manual
PiperOrigin-RevId: 172475223
Change-Id: I1c91cb5715287991de774a1d9b95e4c8b722d28f
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
9982f0db5e9b74a66d22befa113073c9cfcd221e 12-Oct-2017 wangqi <wangqi@google.com> Optimization for incoming call latency.

There are many binder call triggered by IPC on main thread. This change will try to reduce them by caching thing that's bound to a call. It reduce total binder transaction from 1002 to 664 and saves ~11% latency of incoming call on locked screen.

1. Cache isVoiceMailNumber in DialerCall
2. Cache call capable accounts in DialerCall
3. Cache current country iso in DialerCall
4. Don't set orientation change if it's not changed.

This change also add lots of trace info. It won't affect release build though since they are stripped out by proguard.

Bug: 64542087
Test: manual
PiperOrigin-RevId: 171901266
Change-Id: Iec48f030529aa59974212147276f6d0ae121872a
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
d0f207f160a4abac488de29df82a842b6e3a353d 11-Oct-2017 erfanian <erfanian@google.com> Fix incallui to use latest ux mocks for assisted dialing.

* Remove old language icon from bottom row.

Screenshot=In change as scuba test
Bug: 64205446
Test: new unit tests
PiperOrigin-RevId: 171858076
Change-Id: Idf781be193dae3593f778af1ac833f046abd87e3
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
ae6c8ec0d86d2c4756ab876b8ee44249713c86fb 29-Sep-2017 wangqi <wangqi@google.com> Fix bug that phone number is shown for local contacts.

This is a regression caused by cl/169961072.
This change will make sure phone number is only shown on top row for non-local contacts if the name is not number and the call is active.

Bug: 67047386
Test: TopRowTest
PiperOrigin-RevId: 170424277
Change-Id: I9b3ab9432a938b2fb1c6632f2d9404bee413588f
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
385a5a1e620bf1ecf465d9f60b13b98482bc5c53 28-Sep-2017 wangqi <wangqi@google.com> Fix crash on incoming video call when video upgrade call is pending.

This is a upstream fix from AOSP:
https://android-review.googlesource.com/#/c/platform/packages/apps/Dialer/+/475598/

Bug: 63608380
Test: none
PiperOrigin-RevId: 170365033
Change-Id: Id58cf4c67a3b0144521622a14997a83403017bee
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
975393515b8b5e0699142fafcb78214f1873e38f 25-Sep-2017 wangqi <wangqi@google.com> Update text of call back number in emergency calls.

Screeshot:
Before:
https://screenshot.googleplex.com/bnByOaCTV4O
After:
https://screenshot.googleplex.com/v0vhkuuvT28
Bug: 38347145
Test: manual
PiperOrigin-RevId: 169933363
Change-Id: Ia3728be488ff329531c171b03a3045f1839d1d5e
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
2ca4318cc1ee57dda907ba2069bd61d162b1baef 31-Aug-2017 Eric Erfanian <erfanian@google.com> Update Dialer source to latest internal Google revision.

Previously, Android's Dialer app was developed in an internal Google
source control system and only exported to public during AOSP drops.

The Dialer team is now switching to a public development model similar
to the telephony team.

This CL represents all internal Google changes that were committed to
Dialer between the public O release and today's tip of tree on internal
master. This CL squashes those changes into a single commit.
In subsequent changes, changes will be exported on a per-commit basis.

Test: make, flash install, run
Merged-In: I45270eaa8ce732d71a1bd84b08c7fa0e99af3160
Change-Id: I529aaeb88535b9533c0ae4ef4e6c1222d4e0f1c8
PiperOrigin-RevId: 167068436
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
83b20211c3be04a850de3674977deee8e448d17f 31-May-2017 Eric Erfanian <erfanian@google.com> Update Dialer to v10 RC45.

This release was created following the instructions at:
go/dialer-aosp-release

Subsequent dialer releases will follow as O bugs are
fixed, until we reach our final RC.

Version: 10
Candidate: RC45
Branch: dialer-android_release_branch/153304843.1
dialer-android_20170416.00/dialer-android_20170416.00_RC45

This release contains the following bug fixes since RC39:
Bug: 38131932 38302993 38347350 38368993 38395481
62100344

Test: make, on device
Change-Id: Ib4af5dcc58c684d51ea1f4628b301e40184b81b3
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
c857f90590e7d7fcffa89511982eb33afd34805f 15-May-2017 Eric Erfanian <erfanian@google.com> Update Dialer to v10 RC32

This release was created following the instructions at:
go/dialer-aosp-release

Subsequent dialer releases will follow as O bugs are
fixed, until we reach our final RC.

Version: 10
Candidate: RC32
Branch: dialer-android_release_branch/153304843.1
dialer-android_20170416.00/dialer-android_20170416.00_RC32

This release contains the following bug fixes since RC17:
Bug: 33176679 33272455 3646510 36773894 37297649 37413780
37513689 37640315 37680595 37698062 37873639 37901752
37919295 37953423 38062852 38069600 38137349 38173549
38180252 38191514

Test: make, on device
Change-Id: I4e4bb630082758e418ff24892b7db3142c6eb09a
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
10b34a5ebf12e97ecba0caf3c8e30b476b038a96 04-May-2017 Eric Erfanian <erfanian@google.com> Update Dialer to V10 RC16

This release was created following the instructions at:
go/dialer-aosp-release

Subsequent dialer releases will follow as O bugs are
fixed, until we reach our final RC.

Version: 10
Candidate: RC16
Branch: dialer-android_release_branch/153304843.1
dialer-android/dialer-android_20170416.00/dialer-android_20170416.00_RC16

This release contains the following bug fixes since RC00:
Bug: 37324705 35304403 36067503 35304446 33203808 37280992
37346084 35766990 37481880 37424493 36470282 37347691
37519015 37168472 35805360 37545472 27704934 36515614
35766990 37577470 34739750 35801628 36788693 35264204
36708536 37628370 36904650 37314436 37642171 37530847
37637799 37666625 37548549 37648036 37636412 37323529
37630507 35919141 37198343 37548572 36178218 37640315
37663896 37720467 37275944 37710497 31634477 37744796
37348506 37744796 37568534 37672424 34872683 34873026
37681461 34873295 37748373 37526812 37618638 37663896
37536088 37727455 37165687 36651204 36900708 37323529
36902926 37256480 37328353 37432034 37436952 34093562
37720889 37321935 37780300 37781115 37755902 36588206
34258266 37290464 37698062 37618638 37473004 37432034
37918676 37870494 37722091

Test: make, on device
Change-Id: I99e1a484ccd578c1f8a13e7a6a4b4952f0791297
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
8369df095a73a77b3715f8ae7ba06089cebca4ce 03-May-2017 Eric Erfanian <erfanian@google.com> This change reflects the Dialer V10 RC00 branch.

RC00 is based on:
branch: dialer-android_release_branch/153304843.1
synced to: 153304843

following the instructions at go/dialer-aosp-release.

In this release:

* Removes final apache sources.
* Uses native lite compilation.

More drops will follow with subsequent release candidates
until we reach our final v10 release, in cadence with our
prebuilt drops.

Test: TreeHugger, on device
Change-Id: Ic9684057230f9b579c777820c746cd21bf45ec0f
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
d8046e520a866b9948ee9ba47cf642b441ca8e23 06-Apr-2017 Eric Erfanian <erfanian@google.com> Update AOSP Dialer source from internal google3 repository at
cl/152373142.

Test: make, treehugger

This CL updates the AOSP Dialer source with all the changes that have
gone into the private google3 repository. This includes all the
changes from cl/151342913 (3/27/2017) to cl/152373142 (4/06/2017).

This goal of these drops is to keep the AOSP source in sync with the
internal google3 repository. Currently these sync are done by hand
with very minor modifications to the internal source code.
See the Android.mk file for list of modifications.
Our current goal is to do frequent drops (daily if possible) and
eventually switched to an automated process.

Change-Id: I2fbc88cf6867b90ac8b65f75e5e34468988c7217
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
9050823ccf6f512e06ad65c8a741cb17cbc4a833 24-Mar-2017 Eric Erfanian <erfanian@google.com> Update AOSP Dialer source from internal google3 repository at
cl/151128062

Test: make, treehugger

This CL updates the AOSP Dialer source with all the changes that have
gone into the private google3 repository. This includes all the
changes from cl/150756069 (3/21/2017) to cl/151128062 (3/24/2017).

Notable this release:
- Explicitly enumerate host and target dependencies.
- Update proguard flag references.

This goal of these drops is to keep the AOSP source in sync with the
internal google3 repository. Currently these sync are done by hand
with very minor modifications to the internal source code.
See the Android.mk file for list of modifications.
Our current goal is to do frequent drops (daily if possible) and
eventually switched to an automated process.

Bug: 33210202 36511925

Addresses
33210202 - Proguard support
36511925 - Compiler warnings when building against platform sdk

Change-Id: I448ec3b3f2358886859cf7a4ef76a8fcef3244ae
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
d5e47f6da5b08b13ecdfa7f1edc7e12aeb83fab9 15-Mar-2017 Eric Erfanian <erfanian@google.com> Update Dialer source from latest green build.

* Refactor voicemail component
* Add new enriched calling components

Test: treehugger, manual aosp testing

Change-Id: I521a0f86327d4b42e14d93927c7d613044ed5942
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java
ccca31529c07970e89419fb85a9e8153a5396838 23-Feb-2017 Eric Erfanian <erfanian@google.com> Update dialer sources.

Test: Built package and system image.

This change clobbers the old source, and is an export
from an internal Google repository.

The internal repository was forked form Android in March,
and this change includes modifications since then, to
near the v8 release.

Since the fork, we've moved code from monolithic to independent modules. In addition,
we've switched to Blaze/Bazel as the build sysetm. This export, however, still uses make.

New dependencies have been added:
- Dagger
- Auto-Value
- Glide
- Libshortcutbadger

Going forward, development will still be in Google3, and the Gerrit release
will become an automated export, with the next drop happening in ~ two weeks.

Android.mk includes local modifications from ToT.

Abridged changelog:

Bug fixes
● Not able to mute, add a call when using Phone app in multiwindow mode
● Double tap on keypad triggering multiple key and tones
● Reported spam numbers not showing as spam in the call log
● Crash when user tries to block number while Phone app is not set as default
● Crash when user picks a number from search auto-complete list

Visual Voicemail (VVM) improvements
● Share Voicemail audio via standard exporting mechanisms that support file attachment
(email, MMS, etc.)
● Make phone number, email and web sites in VVM transcript clickable
● Set PIN before declining VVM Terms of Service {Carrier}
● Set client type for outbound visual voicemail SMS {Carrier}

New incoming call and incall UI on older devices
(Android M)
● Updated Phone app icon
● New incall UI (large buttons, button labels)
● New and animated Answer/Reject gestures

Accessibility
● Add custom answer/decline call buttons on answer screen for touch exploration
accessibility services
● Increase size of touch target
● Add verbal feedback when a Voicemail fails to load
● Fix pressing of Phone buttons while in a phone call using Switch Access
● Fix selecting and opening contacts in talkback mode
● Split focus for ‘Learn More’ link in caller id & spam to help distinguish similar text

Other
● Backup & Restore for App Preferences
● Prompt user to enable Wi-Fi calling if the call ends due to out of service and Wi-Fi is
connected
● Rename “Dialpad” to “Keypad”
● Show "Private number" for restricted calls
● Delete unused items (vcard, add contact, call history) from Phone menu

Change-Id: I2a7e53532a24c21bf308bf0a6d178d7ddbca4958
/packages/apps/Dialer/java/com/android/incallui/CallCardPresenter.java