summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2014-06-27 14:43:51 -0700
committerSantos Cordon <santoscordon@google.com>2014-07-01 08:56:34 -0700
commite9b9290142e0e0e767536bc0e8f89f80f7ad3926 (patch)
treeb5aa564cffacbf4577994ec0e822d0dfa4421dd3
parent9f308503f0c64296a8272b7fa3c25259ca4ecc2d (diff)
downloadandroid_packages_apps_Dialer-e9b9290142e0e0e767536bc0e8f89f80f7ad3926.tar.gz
android_packages_apps_Dialer-e9b9290142e0e0e767536bc0e8f89f80f7ad3926.tar.bz2
android_packages_apps_Dialer-e9b9290142e0e0e767536bc0e8f89f80f7ad3926.zip
Move call-related SystemAPIs to TelecommManager. (3/3)
Bug: 15672803 Change-Id: I46e448fe93a9c5b4ae013e8b2fd6f0ce89b94e69
-rw-r--r--src/com/android/dialer/dialpad/DialpadFragment.java27
1 files changed, 13 insertions, 14 deletions
diff --git a/src/com/android/dialer/dialpad/DialpadFragment.java b/src/com/android/dialer/dialpad/DialpadFragment.java
index 21c7d82cd..9752aa7fb 100644
--- a/src/com/android/dialer/dialpad/DialpadFragment.java
+++ b/src/com/android/dialer/dialpad/DialpadFragment.java
@@ -41,6 +41,7 @@ import android.provider.Contacts.Phones;
import android.provider.Contacts.PhonesColumns;
import android.provider.Settings;
import android.telecomm.Subscription;
+import android.telecomm.TelecommManager;
import android.telephony.PhoneNumberUtils;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
@@ -85,7 +86,6 @@ import com.android.phone.common.CallLogAsync;
import com.android.phone.common.HapticFeedback;
import com.android.phone.common.dialpad.DialpadKeyButton;
import com.android.phone.common.dialpad.DialpadView;
-
import com.google.common.annotations.VisibleForTesting;
import java.util.HashSet;
@@ -280,6 +280,10 @@ public class DialpadFragment extends Fragment
return (TelephonyManager) getActivity().getSystemService(Context.TELEPHONY_SERVICE);
}
+ private TelecommManager getTelecommManager() {
+ return (TelecommManager) getActivity().getSystemService(Context.TELECOMM_SERVICE);
+ }
+
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
mWasEmptyBeforeTextChange = TextUtils.isEmpty(s);
@@ -510,7 +514,7 @@ public class DialpadFragment extends Fragment
|| Intent.ACTION_MAIN.equals(action)) {
// If there's already an active call, bring up an intermediate UI to
// make the user confirm what they really want to do.
- if (phoneIsInUse()) {
+ if (isPhoneInUse()) {
needToShowDialpadChooser = true;
}
}
@@ -626,7 +630,7 @@ public class DialpadFragment extends Fragment
// are currently in use. (Right now we let the user try to add
// another call, but that call is guaranteed to fail. Perhaps the
// entire dialer UI should be disabled instead.)
- if (phoneIsInUse()) {
+ if (isPhoneInUse()) {
final SpannableString hint = new SpannableString(
getActivity().getString(R.string.dialerDialpadHintText));
hint.setSpan(new RelativeSizeSpan(0.8f), 0, hint.length(), 0);
@@ -1092,7 +1096,9 @@ public class DialpadFragment extends Fragment
}
private void handleDialButtonClickWithEmptyDigits() {
- if (phoneIsCdma() && phoneIsOffhook()) {
+ if (phoneIsCdma() && isPhoneInUse()) {
+ // TODO(santoscordon): Move this logic into services/Telephony
+ //
// This is really CDMA specific. On GSM is it possible
// to be off hook and wanted to add a 3rd party using
// the redial feature.
@@ -1402,10 +1408,10 @@ public class DialpadFragment extends Fragment
/**
* @return true if the phone is "in use", meaning that at least one line
- * is active (ie. off hook or ringing or dialing).
+ * is active (ie. off hook or ringing or dialing, or on hold).
*/
- public boolean phoneIsInUse() {
- return getTelephonyManager().getCallState() != TelephonyManager.CALL_STATE_IDLE;
+ public boolean isPhoneInUse() {
+ return getTelecommManager().isInAPhoneCall();
}
/**
@@ -1415,13 +1421,6 @@ public class DialpadFragment extends Fragment
return getTelephonyManager().getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA;
}
- /**
- * @return true if the phone state is OFFHOOK
- */
- private boolean phoneIsOffhook() {
- return getTelephonyManager().getCallState() == TelephonyManager.CALL_STATE_OFFHOOK;
- }
-
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {