blob: 6bca0af3a9c026088f9de9b9bf91861dce1d5e00 [file] [log] [blame]
Paul Soulosb3054e52014-06-05 16:46:02 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.contacts.interactions;
17
18import android.content.Context;
19import android.content.Intent;
20import android.graphics.drawable.Drawable;
Walter Jang7ce53522014-10-29 13:26:43 -070021import android.text.Spannable;
Paul Soulosb3054e52014-06-05 16:46:02 -070022
23/**
24 * Represents a default interaction between the phone's owner and a contact
25 */
26public interface ContactInteraction {
27 Intent getIntent();
Paul Soulosb3054e52014-06-05 16:46:02 -070028 long getInteractionDate();
29 String getViewHeader(Context context);
30 String getViewBody(Context context);
31 String getViewFooter(Context context);
32 Drawable getIcon(Context context);
33 Drawable getBodyIcon(Context context);
34 Drawable getFooterIcon(Context context);
Walter Jang7ce53522014-10-29 13:26:43 -070035 Spannable getContentDescription(Context context);
Paul Soulos48290be2014-09-08 13:44:51 -070036 /** The resource id for the icon, if available. May be 0 if one is not available. */
37 int getIconResourceId();
Paul Soulosb3054e52014-06-05 16:46:02 -070038}