/* * Copyright 2012 GitHub Inc. * * 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.github.mobile.ui.issue; import static android.app.Activity.RESULT_OK; import static android.content.DialogInterface.BUTTON_NEGATIVE; import static android.content.DialogInterface.BUTTON_NEUTRAL; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; import android.text.TextUtils; import android.view.LayoutInflater; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ListView; import com.github.kevinsawicki.wishlist.SingleTypeAdapter; import com.github.kevinsawicki.wishlist.ViewUtils; import com.github.mobile.R.id; import com.github.mobile.R.layout; import com.github.mobile.R.string; import com.github.mobile.ui.DialogFragmentActivity; import com.github.mobile.ui.SingleChoiceDialogFragment; import java.util.ArrayList; import org.eclipse.egit.github.core.Milestone; /** * Dialog fragment to select an issue milestone */ public class MilestoneDialogFragment extends SingleChoiceDialogFragment { private static class MilestoneListAdapter extends SingleTypeAdapter<Milestone> { private final int selected; public MilestoneListAdapter(LayoutInflater inflater, Milestone[] milestones, int selected) { super(inflater, layout.milestone_item); this.selected = selected; setItems(milestones); } @Override protected int[] getChildViewIds() { return new int[] { id.rb_selected, id.tv_milestone_title, id.tv_milestone_description }; } @Override protected void update(int position, Milestone item) { setText(1, item.getTitle()); String description = item.getDescription(); if (!TextUtils.isEmpty(description)) ViewUtils.setGone(setText(2, description), false); else setGone(2, true); setChecked(0, selected == position); } @Override public long getItemId(int position) { return getItem(position).getNumber(); } } /** * Get selected milestone from results bundle * * @param arguments * @return milestone */ public static Milestone getSelected(Bundle arguments) { return (Milestone) arguments.getSerializable(ARG_SELECTED); } /** * Confirm message and deliver callback to given activity * * @param activity * @param requestCode * @param title * @param message * @param choices * @param selectedChoice */ public static void show(final DialogFragmentActivity activity, final int requestCode, final String title, final String message, ArrayList<Milestone> choices, final int selectedChoice) { show(activity, requestCode, title, message, choices, selectedChoice, new MilestoneDialogFragment()); } @Override public Dialog onCreateDialog(final Bundle savedInstanceState) { Activity activity = getActivity(); Bundle arguments = getArguments(); final AlertDialog dialog = createDialog(); dialog.setButton(BUTTON_NEGATIVE, activity.getString(string.cancel), this); dialog.setButton(BUTTON_NEUTRAL, activity.getString(string.clear), this); LayoutInflater inflater = activity.getLayoutInflater(); ListView view = (ListView) inflater.inflate(layout.dialog_list_view, null); view.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { onClick(dialog, position); } }); ArrayList<Milestone> choices = getChoices(); int selected = arguments.getInt(ARG_SELECTED_CHOICE); MilestoneListAdapter adapter = new MilestoneListAdapter(inflater, choices.toArray(new Milestone[choices.size()]), selected); view.setAdapter(adapter); if (selected >= 0) view.setSelection(selected); dialog.setView(view); return dialog; } @SuppressWarnings("unchecked") private ArrayList<Milestone> getChoices() { return (ArrayList<Milestone>) getArguments().getSerializable( ARG_CHOICES); } @Override public void onClick(DialogInterface dialog, int which) { super.onClick(dialog, which); switch (which) { case BUTTON_NEGATIVE: break; case BUTTON_NEUTRAL: onResult(RESULT_OK); break; default: getArguments().putSerializable(ARG_SELECTED, getChoices().get(which)); onResult(RESULT_OK); } } }