Java tutorial
/* * Copyright 2017 SchedJoules * * * 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.schedjoules.eventdiscovery.framework.actions; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.support.annotation.NonNull; import android.support.v4.app.ShareCompat; import android.widget.Toast; import com.schedjoules.client.eventsdiscovery.Event; import com.schedjoules.client.insights.steps.ActionInteraction; import com.schedjoules.eventdiscovery.R; import com.schedjoules.eventdiscovery.framework.datetime.LongDateAndTime; import com.schedjoules.eventdiscovery.framework.utils.InsightsTask; import org.dmfs.httpessentials.types.Link; import java.net.URI; /** * {@link ActionExecutable} that sends an ACTION_SEND Intent with text info from the event: * <p> * <localized date+time> - <title> * * @author Gabor Keszthelyi */ public final class ShareActionExecutable implements ActionExecutable { private final Link mLink; private final Event mEvent; public ShareActionExecutable(@NonNull Link link, @NonNull Event event) { mLink = link; mEvent = event; } @Override public void execute(@NonNull Activity activity) { new InsightsTask(activity).execute(new ActionInteraction(mLink, mEvent)); String eventText = eventText(activity); Intent sendIntent = ShareCompat.IntentBuilder.from(activity).setText(eventText).setType("text/plain") .setChooserTitle(R.string.schedjoules_action_share_chooser_title).createChooserIntent(); if (sendIntent.resolveActivity(activity.getPackageManager()) != null) { activity.startActivity(sendIntent); } else { Toast.makeText(activity, R.string.schedjoules_action_cannot_handle_message, Toast.LENGTH_LONG).show(); } } private String eventText(Context context) { URI uri = mLink.target(); return String.format(uri == null ? "%s - %s" : "%s - %s %s", new LongDateAndTime(mEvent.start()).value(context), mEvent.title(), uri); } }