Loading src/com/android/dialer/DialtactsActivity.java +21 −2 Original line number Diff line number Diff line Loading @@ -29,6 +29,8 @@ import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.RemoteException; import android.os.ServiceManager; import android.provider.CallLog.Calls; Loading Loading @@ -165,6 +167,21 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O private DialerDatabaseHelper mDialerDatabaseHelper; private static final int EVENT_DELAYED_HIDE_SEARCH = 1; // Wait this much time (in ms) before hiding the search fragment after clicking on // a search result to dial, to avoid jank private static final int CLEAR_SEARCH_DELAY = 500; final Handler mHandler = new Handler() { @Override public void handleMessage(Message msg) { if (msg.what == EVENT_DELAYED_HIDE_SEARCH) { hideDialpadAndSearchUi(); } } }; /** * Listener used when one of phone numbers in search UI is selected. This will initiate a * phone call using the phone number. Loading @@ -177,14 +194,16 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O // CallLog screen (search UI will be automatically exited). PhoneNumberInteraction.startInteractionForPhoneCall( DialtactsActivity.this, dataUri, getCallOrigin()); hideDialpadAndSearchUi(); mHandler.sendEmptyMessageDelayed(EVENT_DELAYED_HIDE_SEARCH, CLEAR_SEARCH_DELAY); } @Override public void onCallNumberDirectly(String phoneNumber) { Intent intent = CallUtil.getCallIntent(phoneNumber, getCallOrigin()); startActivity(intent); hideDialpadAndSearchUi(); mHandler.sendEmptyMessageDelayed(EVENT_DELAYED_HIDE_SEARCH, CLEAR_SEARCH_DELAY); } @Override Loading Loading
src/com/android/dialer/DialtactsActivity.java +21 −2 Original line number Diff line number Diff line Loading @@ -29,6 +29,8 @@ import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.RemoteException; import android.os.ServiceManager; import android.provider.CallLog.Calls; Loading Loading @@ -165,6 +167,21 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O private DialerDatabaseHelper mDialerDatabaseHelper; private static final int EVENT_DELAYED_HIDE_SEARCH = 1; // Wait this much time (in ms) before hiding the search fragment after clicking on // a search result to dial, to avoid jank private static final int CLEAR_SEARCH_DELAY = 500; final Handler mHandler = new Handler() { @Override public void handleMessage(Message msg) { if (msg.what == EVENT_DELAYED_HIDE_SEARCH) { hideDialpadAndSearchUi(); } } }; /** * Listener used when one of phone numbers in search UI is selected. This will initiate a * phone call using the phone number. Loading @@ -177,14 +194,16 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O // CallLog screen (search UI will be automatically exited). PhoneNumberInteraction.startInteractionForPhoneCall( DialtactsActivity.this, dataUri, getCallOrigin()); hideDialpadAndSearchUi(); mHandler.sendEmptyMessageDelayed(EVENT_DELAYED_HIDE_SEARCH, CLEAR_SEARCH_DELAY); } @Override public void onCallNumberDirectly(String phoneNumber) { Intent intent = CallUtil.getCallIntent(phoneNumber, getCallOrigin()); startActivity(intent); hideDialpadAndSearchUi(); mHandler.sendEmptyMessageDelayed(EVENT_DELAYED_HIDE_SEARCH, CLEAR_SEARCH_DELAY); } @Override Loading