From c843bc787b2de729f97e5deb0176b541d1884e8c Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 25 Sep 2015 17:20:48 -0700 Subject: Add custom call type affordance to TestActivity. Add a text field to manually enter a call type. The TouchListener is so that if the user edits the text specifying the custom type, the toggle is automatically switched to select it as the call type. Bug: 24341350 Change-Id: I524b211b17997280a6d4d3537411a39ada73e5de --- .../dialer/tests/calllog/FillCallLogTestActivity.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'tests/src') diff --git a/tests/src/com/android/dialer/tests/calllog/FillCallLogTestActivity.java b/tests/src/com/android/dialer/tests/calllog/FillCallLogTestActivity.java index 1cfdc2833..aa2d2653b 100644 --- a/tests/src/com/android/dialer/tests/calllog/FillCallLogTestActivity.java +++ b/tests/src/com/android/dialer/tests/calllog/FillCallLogTestActivity.java @@ -42,6 +42,7 @@ import android.telecom.PhoneAccountHandle; import android.telecom.TelecomManager; import android.text.format.DateFormat; import android.util.Log; +import android.view.MotionEvent; import android.view.View; import android.widget.Button; import android.widget.CheckBox; @@ -80,6 +81,8 @@ public class FillCallLogTestActivity extends Activity { private RadioButton mCallTypeMissed; private RadioButton mCallTypeOutgoing; private RadioButton mCallTypeVoicemail; + private RadioButton mCallTypeCustom; + private EditText mCustomCallTypeTextView; private CheckBox mCallTypeVideo; private RadioButton mPresentationAllowed; private RadioButton mPresentationRestricted; @@ -134,6 +137,8 @@ public class FillCallLogTestActivity extends Activity { mCallTypeMissed = (RadioButton) findViewById(R.id.call_type_missed); mCallTypeOutgoing = (RadioButton) findViewById(R.id.call_type_outgoing); mCallTypeVoicemail = (RadioButton) findViewById(R.id.call_type_voicemail); + mCallTypeCustom = (RadioButton) findViewById(R.id.call_type_custom); + mCustomCallTypeTextView = (EditText) findViewById(R.id.call_type_custom_text); mCallTypeVideo = (CheckBox) findViewById(R.id.call_type_video); mPresentationAllowed = (RadioButton) findViewById(R.id.presentation_allowed); mPresentationPayphone = (RadioButton) findViewById(R.id.presentation_payphone); @@ -146,6 +151,14 @@ public class FillCallLogTestActivity extends Activity { mAccount0 = (RadioButton) findViewById(R.id.account0); mAccount1 = (RadioButton) findViewById(R.id.account1); + mCustomCallTypeTextView.setOnTouchListener(new View.OnTouchListener() { + @Override + public boolean onTouch(View v, MotionEvent event) { + mCallTypeCustom.toggle(); + return false; + } + }); + // Use the current time as the default values for the picker final Calendar c = Calendar.getInstance(); mCallTimeHour = c.get(Calendar.HOUR_OF_DAY); @@ -386,6 +399,8 @@ public class FillCallLogTestActivity extends Activity { return Calls.OUTGOING_TYPE; } else if (mCallTypeVoicemail.isChecked()) { return Calls.VOICEMAIL_TYPE; + } else if (mCallTypeCustom.isChecked()) { + return Integer.parseInt(mCustomCallTypeTextView.getText().toString()); } else { return Calls.MISSED_TYPE; } -- cgit v1.2.3