Back to project page birthday-adapter.
The source code is released under:
GNU General Public License
If you think the Android project birthday-adapter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2012-2013 Dominik Schrmann <dominik@dominikschuermann.de> *// w ww . j av a2s . c om * This file is part of Birthday Adapter. * * Birthday Adapter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Birthday Adapter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Birthday Adapter. If not, see <http://www.gnu.org/licenses/>. * */ package org.birthdayadapter.ui; import org.birthdayadapter.util.Constants; import org.birthdayadapter.util.Log; import android.annotation.TargetApi; import android.app.Activity; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.provider.CalendarContract; import android.provider.ContactsContract.QuickContact; /* * Uri is built in CalendarSyncAdapterService.insertEvent() and looks like Uri * contactLookupUri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_LOOKUP_URI, * lookupKey); * * Code related to the button is here: * https://github.com/CyanogenMod/android_packages_apps_Calendar * /blob/jellybean-stable/src/com/android/calendar/EventInfoFragment.java in * updateCustomAppButton() * * Label of button can not be set! */ @TargetApi(Build.VERSION_CODES.JELLY_BEAN) public class ShowContactActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle extras = getIntent().getExtras(); if (extras != null && extras.containsKey(CalendarContract.EXTRA_CUSTOM_APP_URI)) { Uri uri = Uri.parse(extras.getString(CalendarContract.EXTRA_CUSTOM_APP_URI)); Log.d(Constants.TAG, "Uri: " + uri); // Intent viewIntent = new Intent(Intent.ACTION_VIEW); // viewIntent.setData(uri); // startActivity(viewIntent); QuickContact.showQuickContact(this, getIntent().getSourceBounds(), uri, QuickContact.MODE_LARGE, null); finish(); } else { Log.e(Constants.TAG, "getIntent().getData() is null!"); finish(); } } }