Tuesday, July 12, 2016

Bank Balance Tracker Android App Free

Bank Balance Tracker Android App Free

Bank Balance Tracker is a offline tool which will keep track of your multiple bank account balances.
It will be very easy now to keep track of different bank account balances within single app.
This app is used in offline mode only so there is no drawbacks of security point of view. All data resides locally on your device only.
You just have to add last 4 digits of your account number and last updated amount only to create account in this app.
Bank Balance Tracker is protected by secure PIN so you can protect from other users of your device.
Features :
- Add as many accounts in the app easily
- You can edit balance amount with single click only
- You can delete created account with single click only
- You can set your secure PIN for protection
- You can change PIN anytime from the settings
- You can write us any suggestions or queries anytime from the contact us page
Send improvement ideas and feature requests to the sm.pratik@gmail.com
Download From Here : Bank Balance Tracker Android App






Thursday, July 11, 2013

Best way to earn maximum per download and monetize your android app for maximum revenue

Android Developer? StartApp offers the best app monetization and now you get a great sign up bonus!

Sign Up Here : http://startapp.com/rfy71e8

If you want to monetize your android app for getting the maximum revenue then follow these simple steps and you will get 25$ free bonus when your app reach 100 downloads.

You will earn per android app download:
0.05$ per download from US
and
0.01$ per download from non US.

Its very easy to integrate in your app:

[1] Sign Up Here : http://startapp.com/rfy71e8

[2] Add your android app to startapp dashboard.

[3] Integrate Startapp SDK to your android app.

[4] Publish your app in Google Play Market.

You're Done !!

Now just sit back and see your revenue getting collected in your account.

If you want to get 25$ free bonus on first 100 downloads then you must have to signup from this link.

StartApp SignUp

Happy Earning :)

Enjoy :)

Monday, July 1, 2013

Android Network Booster

Android Network Booster is one of the best tool to get excellent network signal speed and faster internet connection.

Android Network Booster will allows you to connect with better network signal from best available cell towers.

Boost up your network with just single click !!

Its absolutely free to use, so go for it.


Feedback and Suggestions are most welcome to encourage more.

Screenshots :






Download Link :


Enjoy :)

Sunday, June 16, 2013

Android Volume Booster

Android Volume Booster is the great tool to optimize your phone's volume.

Android Volume Booster will make your phone sound and overall volume much more stronger.




Download Link :
https://play.google.com/store/apps/details?id=com.pratik.androidvolumebooster

Enjoy !!

Love Calculator Test HD

Love Calculator Test HD is an excellent tool to find love between your loved ones.

If you are in love with someone then you must give a try to Love Calculator Test HD app and find how much you are in love with your partner.









Download Link :

Friday, June 7, 2013

Way to Identify Mobile and Tablet Devices with simple flag condition

You can identify Mobile and Tablet Devices with simple flag condition.

Set a boolean value in a specific value file like say (res/values-xlarge/):

<resources>
    <bool name="isTabletDevice">true</bool>
</resources>

Then, in the "standard" value file like say (res/values/):

<resources>
    <bool name="isTabletDevice">false</bool>
</resources>

Then from your activity, fetch this flag value to check device type :

boolean tabletDeviceSize = getResources().getBoolean(R.bool.isTabletDevice);
if (tabletDeviceSize) {
    //use tablet code
} else {
    //use mobile code
}

Thanks.

Way to define a min and max value for EditText in Android

First make this class :

public class InputFilterMinMax implements InputFilter {

    private int min, max;

    public InputFilterMinMax(int min, int max) {
        this.min = min;
        this.max = max;
    }

    public InputFilterMinMax(String min, String max) {
        this.min = Integer.parseInt(min);
        this.max = Integer.parseInt(max);
    }

    @Override
    public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {   
        try {
            int input = Integer.parseInt(dest.toString() + source.toString());
            if (isInRange(min, max, input))
                return null;
        } catch (NumberFormatException nfe) { }     
        return "";
    }

    private boolean isInRange(int a, int b, int c) {
        return b > a ? c >= a && c <= b : c >= b && c <= a;
    }
}

Then use this from your Activity :

EditText et = (EditText) findViewById(R.id.myEditText);
et.setFilters(new InputFilter[]{ new InputFilterMinMax("1", "12")});

This will allow user to enter values from 1 to 12 only.
NOTE : Set your edittext with android:inputType="number".
Thanks.