blob: bf001328b2eaeb9791a43a2dac309ad816a7ad73 [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;
21import android.net.Uri;
Walter Jang7ce53522014-10-29 13:26:43 -070022import android.text.Spannable;
Paul Soulosb3054e52014-06-05 16:46:02 -070023
24/**
25 * Represents a default interaction between the phone's owner and a contact
26 */
27public interface ContactInteraction {
28 Intent getIntent();
Paul Soulosb3054e52014-06-05 16:46:02 -070029 long getInteractionDate();
30 String getViewHeader(Context context);
31 String getViewBody(Context context);
32 String getViewFooter(Context context);
33 Drawable getIcon(Context context);
34 Drawable getBodyIcon(Context context);
35 Drawable getFooterIcon(Context context);
Walter Jang7ce53522014-10-29 13:26:43 -070036 Spannable getContentDescription(Context context);
Paul Soulos48290be2014-09-08 13:44:51 -070037 /** The resource id for the icon, if available. May be 0 if one is not available. */
38 int getIconResourceId();
Paul Soulosb3054e52014-06-05 16:46:02 -070039}