Android Open Source - budget-envelopes Util






From Project

Back to project page budget-envelopes.

License

The source code is released under:

GNU General Public License

If you think the Android project budget-envelopes 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

/*
 * This file is a part of Budget with Envelopes.
 * Copyright 2013 Michael Howell <michael@notriddle.com>
 *//from  w  ww  .j  av a2  s. c  o m
 * Budget 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.
 *
 * Budget 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 Budget. If not, see <http://www.gnu.org/licenses/>.
 */

package com.notriddle.budget;

import android.content.Context;
import android.os.Bundle;
import android.util.SparseArray;
import android.util.SparseBooleanArray;
import android.util.SparseIntArray;
import java.io.InputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Iterator;
import java.util.Set;

public class Util {
    public static Bundle packSparseIntArray(SparseIntArray a) {
        Bundle b = new Bundle();
        for (int i = 0; i != a.size(); ++i) {
            b.putInt(Integer.toString(a.keyAt(i)), a.valueAt(i));
        }
        return b;
    }
    public static SparseIntArray unpackSparseIntArray(Bundle b) {
        SparseIntArray a = new SparseIntArray();
        Set<String> k = b.keySet();
        Iterator<String> i = k.iterator();
        while (i.hasNext()) {
            String key = i.next();
            a.put(Integer.parseInt(key), b.getInt(key));
        }
        return a;
    }
    public static Bundle packSparseLongArray(SparseArray<Long> a) {
        Bundle b = new Bundle();
        for (int i = 0; i != a.size(); ++i) {
            b.putLong(Integer.toString(a.keyAt(i)), a.valueAt(i));
        }
        return b;
    }
    public static SparseArray<Long> unpackSparseLongArray(Bundle b) {
        SparseArray<Long> a = new SparseArray<Long>();
        Set<String> k = b.keySet();
        Iterator<String> i = k.iterator();
        while (i.hasNext()) {
            String key = i.next();
            a.put(Integer.parseInt(key), b.getLong(key));
        }
        return a;
    }
    static public int numberOf(SparseBooleanArray items, boolean value) {
                if (items == null) return 0;
        int retVal = 0;
        for (int i = 0; i != items.size(); ++i) {
            if (items.get(items.keyAt(i)) == value)
                retVal += 1;
        }
        return retVal;
    }
    static public void pump(InputStream src, OutputStream dest) throws IOException {
        byte[] buf = new byte[2048];
        int len;
        while ((len = src.read(buf)) > 0) {
            dest.write(buf, 0, len);
        }
    }
};




Java Source Code List

com.notriddle.budget.AboutFragment.java
com.notriddle.budget.AllTransactionsFragment.java
com.notriddle.budget.CheckableLinearLayout.java
com.notriddle.budget.CheckableRelativeLayout.java
com.notriddle.budget.ColorFragment.java
com.notriddle.budget.CustomActionBarFragment.java
com.notriddle.budget.DeleteAdapter.java
com.notriddle.budget.DeleteView.java
com.notriddle.budget.EditMoney.java
com.notriddle.budget.EditTextDefaultFocus.java
com.notriddle.budget.EditTransactionFragment.java
com.notriddle.budget.EnvelopeDetailsFragment.java
com.notriddle.budget.EnvelopesActivity.java
com.notriddle.budget.EnvelopesAdapter.java
com.notriddle.budget.EnvelopesFragment.java
com.notriddle.budget.EnvelopesOpenHelper.java
com.notriddle.budget.ExportFragment.java
com.notriddle.budget.FileCreatorFragment.java
com.notriddle.budget.GraphFragment.java
com.notriddle.budget.ImportFragment.java
com.notriddle.budget.LockedActivity.java
com.notriddle.budget.LogAdapter.java
com.notriddle.budget.MonitorScrollView.java
com.notriddle.budget.NavAdapter.java
com.notriddle.budget.OkFragment.java
com.notriddle.budget.PaycheckEnvelopesAdapter.java
com.notriddle.budget.PaycheckFragment.java
com.notriddle.budget.PinActivity.java
com.notriddle.budget.SQLiteLoader.java
com.notriddle.budget.SettingsFragment.java
com.notriddle.budget.SimpleEnvelopesAdapter.java
com.notriddle.budget.SimpleLogAdapter.java
com.notriddle.budget.SpendFragment.java
com.notriddle.budget.TACGridView.java
com.notriddle.budget.TitleFragment.java
com.notriddle.budget.TransferFragment.java
com.notriddle.budget.Util.java
com.notriddle.budget.WidgetProvider.java
com.notriddle.budget.WidgetService.java
com.notriddle.budget.csv.CSVReader.java
com.notriddle.budget.csv.CSVWriter.java