diff options
author | Yorke Lee <yorkelee@google.com> | 2013-05-07 11:55:48 -0700 |
---|---|---|
committer | Yorke Lee <yorkelee@google.com> | 2013-05-08 12:38:08 -0700 |
commit | 50e3bc935962ca360d7a681cd8be90b2eee77ea6 (patch) | |
tree | dec8ef2c6bdac8a94f267b7bfba3c6963d6dcb5e | |
parent | 006d071bd477768b4685385d15b3385f6d2e834d (diff) |
Setting to toggle smart dialing on/off
Bug 8840243
Change-Id: I1d1fea4f958821f3a9273ba189e2140367049516
-rw-r--r-- | src/com/android/dialer/dialpad/DialpadFragment.java | 51 |
1 files changed, 35 insertions, 16 deletions
diff --git a/src/com/android/dialer/dialpad/DialpadFragment.java b/src/com/android/dialer/dialpad/DialpadFragment.java index 3693e6aa0..ab632e177 100644 --- a/src/com/android/dialer/dialpad/DialpadFragment.java +++ b/src/com/android/dialer/dialpad/DialpadFragment.java @@ -21,6 +21,7 @@ import android.app.AlertDialog; import android.app.Dialog; import android.app.DialogFragment; import android.app.Fragment; +import android.content.ContentResolver; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; @@ -154,6 +155,13 @@ public class DialpadFragment extends Fragment */ private SmartDialAdapter mSmartDialAdapter; + private SmartDialCache mSmartDialCache; + /** + * Master switch controlling whether or not smart dialing is enabled, and whether the + * smart dialing suggestion strip is visible. + */ + private boolean mSmartDialEnabled = false; + /** * Regular expression prohibiting manual phone call. Can be empty, which means "no rule". */ @@ -172,7 +180,6 @@ public class DialpadFragment extends Fragment // Vibration (haptic feedback) for dialer key presses. private final HapticFeedback mHaptic = new HapticFeedback(); - private SmartDialCache mSmartDialCache; /** Identifier for the "Add Call" intent extra. */ private static final String ADD_CALL_MODE_KEY = "add_call_mode"; @@ -282,8 +289,6 @@ public class DialpadFragment extends Fragment mFirstLaunch = true; mContactsPrefs = new ContactsPreferences(getActivity()); mCurrentCountryIso = GeoUtil.getCurrentCountryIso(getActivity()); - mSmartDialCache = SmartDialCache.getInstance(getActivity(), - mContactsPrefs.getDisplayOrder()); try { mHaptic.init(getActivity(), getResources().getBoolean(R.bool.config_enable_dialer_key_vibration)); @@ -370,7 +375,6 @@ public class DialpadFragment extends Fragment mSmartDialList.setOnItemClickListener(new OnSmartDialItemClick()); mSmartDialList.setOnItemLongClickListener(new OnSmartDialLongClick()); } - return fragmentView; } @@ -541,10 +545,16 @@ public class DialpadFragment extends Fragment stopWatch.lap("qloc"); + final ContentResolver contentResolver = getActivity().getContentResolver(); + // retrieve the DTMF tone play back setting. - mDTMFToneEnabled = Settings.System.getInt(getActivity().getContentResolver(), + mDTMFToneEnabled = Settings.System.getInt(contentResolver, Settings.System.DTMF_TONE_WHEN_DIALING, 1) == 1; + // retrieve dialpad autocomplete setting + mSmartDialEnabled = Settings.Secure.getInt(contentResolver, + Settings.Secure.DIALPAD_AUTOCOMPLETE, 1) == 1; + stopWatch.lap("dtwd"); // Retrieve the haptic feedback setting. @@ -609,15 +619,24 @@ public class DialpadFragment extends Fragment showDialpadChooser(false); } - // Don't force recache if this is the first time onResume is being called, since caching - // should already happen in setUserVisibleHint. - if (!mFirstLaunch) { - // This forced recache covers the case where the dialer was previously running, and - // was brought back into the foreground. If the dialpad fragment hasn't actually - // become visible throughout the entire activity's lifecycle, it is possible that - // caching hasn't happened yet. In this case, we can force a recache anyway, since we - // are not worried about startup performance anymore. - mSmartDialCache.cacheIfNeeded(true); + // Handle smart dialing related state + if (mSmartDialEnabled) { + mSmartDialList.setVisibility(View.VISIBLE); + mSmartDialCache = SmartDialCache.getInstance(getActivity(), + mContactsPrefs.getDisplayOrder()); + // Don't force recache if this is the first time onResume is being called, since + // caching should already happen in setUserVisibleHint. + if (!mFirstLaunch) { + // This forced recache covers the case where the dialer was previously running, and + // was brought back into the foreground. If the dialpad fragment hasn't actually + // become visible throughout the entire activity's lifecycle, it is possible that + // caching hasn't happened yet. In this case, we can force a recache anyway, since + // we are not worried about startup performance anymore. + mSmartDialCache.cacheIfNeeded(true); + } + } else { + mSmartDialList.setVisibility(View.GONE); + mSmartDialCache = null; } mFirstLaunch = false; @@ -1663,7 +1682,7 @@ public class DialpadFragment extends Fragment @Override public void setUserVisibleHint(boolean isVisibleToUser) { super.setUserVisibleHint(isVisibleToUser); - if (isVisibleToUser) { + if (mSmartDialEnabled && isVisibleToUser) { // This is called if the dialpad fragment is swiped into to view for the very first // time in the activity's lifecycle, or the user starts the dialer for the first time // and the dialpad fragment is displayed immediately, and is what causes the initial @@ -1675,7 +1694,7 @@ public class DialpadFragment extends Fragment private String mLastDigitsForSmartDial; private void loadSmartDialEntries() { - if (mSmartDialAdapter == null) { + if (!mSmartDialEnabled || mSmartDialAdapter == null) { // No smart dial views. Landscape? return; } |