summaryrefslogtreecommitdiff
path: root/src/com/android/dialer
diff options
context:
space:
mode:
authorQi Wang <wangqi@google.com>2016-04-08 18:19:39 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-04-08 18:19:39 +0000
commite450f37245e694e72836e78daf02d841c40d9dd8 (patch)
treefbedca188e86d2856da57625eaa83683ac92e8b6 /src/com/android/dialer
parentfed48abb93fa0be22c4459c4834f797fd81249b4 (diff)
parent9618f2596e8eb44c615108d5a445d66b7febc2f2 (diff)
Merge "Remove deprecated ExtendedBlockingButtonRenderer."
Diffstat (limited to 'src/com/android/dialer')
-rw-r--r--src/com/android/dialer/service/ExtendedBlockingButtonRenderer.java93
1 files changed, 0 insertions, 93 deletions
diff --git a/src/com/android/dialer/service/ExtendedBlockingButtonRenderer.java b/src/com/android/dialer/service/ExtendedBlockingButtonRenderer.java
deleted file mode 100644
index c605804fb..000000000
--- a/src/com/android/dialer/service/ExtendedBlockingButtonRenderer.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2016 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.dialer.service;
-
-import android.support.annotation.Nullable;
-import android.view.View;
-import android.view.ViewStub;
-import android.widget.QuickContactBadge;
-import android.widget.TextView;
-
-import java.util.List;
-
-/**
- * Interface responsible for rendering spam buttons.
- */
-public interface ExtendedBlockingButtonRenderer {
-
- final class ViewHolderInfo {
-
- public final List<View> completeListItemViews;
- public final List<View> extendedBlockedViews;
- public final List<View> blockedNumberViews;
- public final String phoneNumber;
- public final String countryIso;
- public final String nameOrNumber;
- public final String displayNumber;
- /**
- * Whether the type of call is missed, voicemail, etc. An example of this is
- * {@link android.provider.CallLog.Calls#VOICEMAIL_TYPE}.
- */
- public final int callType;
-
- public ViewHolderInfo(
- /* All existing views amongst the list item actions, even if invisible */
- List<View> completeListItemViews,
- /* Views that should be seen if the number is in the blacklist */
- List<View> extendedBlockedViews,
- /* Views that should be seen if the number is in the extended blacklist */
- List<View> blockedNumberViews,
- String phoneNumber,
- String countryIso,
- String nameOrNumber,
- String displayNumber,
- int callType) {
-
- this.completeListItemViews = completeListItemViews;
- this.extendedBlockedViews = extendedBlockedViews;
- this.blockedNumberViews = blockedNumberViews;
- this.phoneNumber = phoneNumber;
- this.countryIso = countryIso;
- this.nameOrNumber = nameOrNumber;
- this.displayNumber = displayNumber;
- this.callType = callType;
- }
- }
-
- interface Listener {
- void onBlockedNumber(String number, @Nullable String countryIso);
- void onUnblockedNumber(String number, @Nullable String countryIso);
- }
-
- /**
- * Renders buttons for a phone number.
- */
- void render(ViewStub viewStub);
-
- void setViewHolderInfo(ViewHolderInfo info);
-
- /**
- * Updates the photo and label for the given phone number and country iso.
- *
- * @param number Phone number for which the rendering occurs.
- * @param countryIso Two-letter country code.
- * @param badge {@link QuickContactBadge} in which the photo should be rendered.
- * @param view Textview that will hold the new label.
- */
- void updatePhotoAndLabelIfNecessary(
- String number, String countryIso, QuickContactBadge badge, TextView view);
-}