Android Open Source - tiptap-android-app Split Picker Dialog






From Project

Back to project page tiptap-android-app.

License

The source code is released under:

Copyright (c) 2014 Tomaz Nedeljko. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...

If you think the Android project tiptap-android-app listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.nedeljko.tiptap.app;
//from  ww  w  .  jav a  2s  .c om
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.ContextThemeWrapper;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.NumberPicker;

public class SplitPickerDialog extends DialogFragment {
    int splitCount;
    NumberPicker npSplitCount;
    SplitPickerDialogListener mListener;

    public interface SplitPickerDialogListener {
        void onFinishSplitPickerDialog(int splitCount);
    }

    public SplitPickerDialog(int sc) {
        splitCount = sc;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        ContextThemeWrapper context = new ContextThemeWrapper(getActivity(), android.R.style.Theme_Holo_Dialog);

        LayoutInflater inflater = LayoutInflater.from(context);
        View v = inflater.inflate(R.layout.fragment_split_picker, null);
        npSplitCount = (NumberPicker)v.findViewById(R.id.npSplitCount);

        String[] values = new String[9];
        for (int i = 0; i < values.length; i++) {
            values[i] = Integer.toString(i+2);
        }
        npSplitCount.setMaxValue(values.length-1);
        npSplitCount.setMinValue(0);
        npSplitCount.setWrapSelectorWheel(false);
        npSplitCount.setDisplayedValues(values);
        npSplitCount.setValue(Math.min(Math.max(0, splitCount-2), 8));

        AlertDialog.Builder builder = new AlertDialog.Builder(context);
        builder.setTitle(R.string.split_bill)
                .setView(v)
                .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        int count = Integer.parseInt(npSplitCount.getDisplayedValues()[npSplitCount.getValue()]);
                        mListener.onFinishSplitPickerDialog(count);
                    }
                })
                .setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {

                    }
                });
        return builder.create();
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        try {
            mListener = (SplitPickerDialogListener)activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString() + " must implement SplitPickerDialogListener");
        }
    }
}




Java Source Code List

com.nedeljko.tiptap.app.MainActivity.java
com.nedeljko.tiptap.app.SplitPickerDialog.java
com.nedeljko.tiptap.app.TipAmountDialog.java