From 9618f2596e8eb44c615108d5a445d66b7febc2f2 Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Thu, 7 Apr 2016 11:57:46 -0700 Subject: Remove deprecated ExtendedBlockingButtonRenderer. * All funtion in ExtendedBlockingButtonRenderer has been migrated into CallLogAdapter and CallLogListItemViewHolder. Bug: 27655063 Change-Id: I74bf2a2b3207ea3ee07b557bce97a4ae70ea0cbf --- .../service/ExtendedBlockingButtonRenderer.java | 93 ---------------------- 1 file changed, 93 deletions(-) delete mode 100644 src/com/android/dialer/service/ExtendedBlockingButtonRenderer.java (limited to 'src/com/android/dialer') 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 completeListItemViews; - public final List extendedBlockedViews; - public final List 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 completeListItemViews, - /* Views that should be seen if the number is in the blacklist */ - List extendedBlockedViews, - /* Views that should be seen if the number is in the extended blacklist */ - List 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); -} -- cgit v1.2.3