summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-05-13 18:33:23 -0700
committerAndrew Lee <anwlee@google.com>2015-05-15 10:20:35 -0700
commit2b63359e974a2a67b68ea75d4a44a64e0dadbcfe (patch)
tree5c78c07a1bd29a9d5cddb0489e539949e98c2f15 /src
parent6ed11569195e1a267aacd14b5464f73f3578f738 (diff)
Delete unused code in CallDetailActivity.
- I don't know of any affordances in call detail to make a call, so the onKeyDown code seems to be superfluous. - No references to ViewEntry or forceLeftToRight. Bug: 20433758 Change-Id: Idbf6ffb81d3697b27cb51eda346b46eb5d083878
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/CallDetailActivity.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/com/android/dialer/CallDetailActivity.java b/src/com/android/dialer/CallDetailActivity.java
index a509c7fa1..401c2ae80 100644
--- a/src/com/android/dialer/CallDetailActivity.java
+++ b/src/com/android/dialer/CallDetailActivity.java
@@ -290,26 +290,6 @@ public class CallDetailActivity extends Activity {
return uris;
}
- @Override
- public boolean onKeyDown(int keyCode, KeyEvent event) {
- switch (keyCode) {
- case KeyEvent.KEYCODE_CALL: {
- // Make sure phone isn't already busy before starting direct call
- TelephonyManager tm = (TelephonyManager)
- getSystemService(Context.TELEPHONY_SERVICE);
- if (tm.getCallState() == TelephonyManager.CALL_STATE_IDLE) {
- DialerUtils.startActivityWithErrorToast(this,
- IntentUtil.getCallIntent(
- Uri.fromParts(PhoneAccount.SCHEME_TEL, mNumber, null)),
- R.string.call_not_available);
- return true;
- }
- }
- }
-
- return super.onKeyDown(keyCode, event);
- }
-
/**
* Update user interface with details of given call.
*
@@ -550,33 +530,6 @@ public class CallDetailActivity extends Activity {
false /* darkTheme */, true /* isCircular */, request);
}
- static final class ViewEntry {
- public final String text;
- public final Intent primaryIntent;
- /** The description for accessibility of the primary action. */
- public final String primaryDescription;
-
- public CharSequence label = null;
- /** Icon for the secondary action. */
- public int secondaryIcon = 0;
- /** Intent for the secondary action. If not null, an icon must be defined. */
- public Intent secondaryIntent = null;
- /** The description for accessibility of the secondary action. */
- public String secondaryDescription = null;
-
- public ViewEntry(String text, Intent intent, String description) {
- this.text = text;
- primaryIntent = intent;
- primaryDescription = description;
- }
-
- public void setSecondaryAction(int icon, Intent intent, String description) {
- secondaryIcon = icon;
- secondaryIntent = intent;
- secondaryDescription = description;
- }
- }
-
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.call_details_options, menu);
@@ -643,13 +596,4 @@ public class CallDetailActivity extends Activity {
private void closeSystemDialogs() {
sendBroadcast(new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS));
}
-
- /** Returns the given text, forced to be left-to-right. */
- private static CharSequence forceLeftToRight(CharSequence text) {
- StringBuilder sb = new StringBuilder();
- sb.append(LEFT_TO_RIGHT_EMBEDDING);
- sb.append(text);
- sb.append(POP_DIRECTIONAL_FORMATTING);
- return sb.toString();
- }
}