From 146a4cdf57f0d4d0cd85e808f1df2bdea639b24c Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Mon, 5 May 2014 16:51:42 -0700 Subject: Adding support for expandable call log entries. Bug: 13962594 Change-Id: I19a4a65dce922619df0a709293ca291c345c8be7 --- src/com/android/dialer/PhoneCallDetailsViews.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/com/android/dialer/PhoneCallDetailsViews.java') diff --git a/src/com/android/dialer/PhoneCallDetailsViews.java b/src/com/android/dialer/PhoneCallDetailsViews.java index 4e482109b..30023ea11 100644 --- a/src/com/android/dialer/PhoneCallDetailsViews.java +++ b/src/com/android/dialer/PhoneCallDetailsViews.java @@ -29,16 +29,17 @@ public final class PhoneCallDetailsViews { public final TextView nameView; public final View callTypeView; public final CallTypeIconsView callTypeIcons; - public final TextView callTypeAndDate; - public final TextView labelView; + public final TextView callLocationAndDate; + public final TextView voicemailTranscriptionView; private PhoneCallDetailsViews(TextView nameView, View callTypeView, - CallTypeIconsView callTypeIcons, TextView callTypeAndDate, TextView labelView) { + CallTypeIconsView callTypeIcons, TextView callLocationAndDate, + TextView voicemailTranscriptionView) { this.nameView = nameView; this.callTypeView = callTypeView; this.callTypeIcons = callTypeIcons; - this.callTypeAndDate = callTypeAndDate; - this.labelView = labelView; + this.callLocationAndDate = callLocationAndDate; + this.voicemailTranscriptionView = voicemailTranscriptionView; } /** @@ -52,8 +53,8 @@ public final class PhoneCallDetailsViews { return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name), view.findViewById(R.id.call_type), (CallTypeIconsView) view.findViewById(R.id.call_type_icons), - (TextView) view.findViewById(R.id.call_count_and_date), - (TextView) view.findViewById(R.id.label)); + (TextView) view.findViewById(R.id.call_location_and_date), + (TextView) view.findViewById(R.id.voicemail_transcription)); } public static PhoneCallDetailsViews createForTest(Context context) { -- cgit v1.2.3