In Android Weight Limit Chart we can show weight limit (Upper limit, lower limit and normal value) by different colors. How to use it: LimitLineChart mChart = (LimitLineChart) findViewById(R.id.chart1); mChart.upperLimit = 70.5f; // Start of upper limit mChart.lowerLimit = 50f; // End of lower limit mChart.currentValue = 0f; mChart.drawGraph(); Complete solution with example and source …
Category Archives: Android
English Urdu Dictionary – Free
If you have Smartphone and facing difficulty to find English Urdu meaning without Internet then you are in right place. Pak English to Urdu Dictionary free available is most popular Dictionary English to Urdu and it’s free of cost. Means you can use this offline dictionary without connecting to WI-Fi or Mobile data.
https://play.google.com/store/apps/details?id=innovativepocket.com.pakenglish2urdudictionary
Sending Email in Android without using the default / built-in app
It is very easy to programmatically send email without using default email application in android. We can send email by using gmail, hotmail, yahoo or your domain email like info@wisdomitsol.com
Saving Activity state on Android when change orientation
In Android application when we change the orientation of device then our activity is recreated and some time we face the NullPointerException. To handle NullPointerException or other exceptions we can save current state and retrive the values or tell in AndroidManifest.xml that don’t destroy this activity. Solution 1: