Overview: I am going to explain some easy steps for upload project on GitHub by using eclipse Git.
So let's start eclipse and create a demo project for upload.
Before upload, a project on GitHub create an account on github.com if you are not on GitHub.
...
Tuesday, July 21, 2015
Thursday, May 28, 2015
Android - Crop image.

Overview:-You may notice on e-commerce site they showing product image on separate large window via crop certain portion of the product image.
have a look
In the bellow snippet, i am going to demonstrate it.
1.
2.
3.
...
Monday, May 25, 2015
Android - Canvas

Android comes along with powerful open-source API libraries which support custom 2D and 3D graphics as well animations. In this tutorial, i am going to explain 2D graphics only.Canvas allows the user to draw any shapes, text, bitmap on view and its also allow the user to override...
Thursday, May 14, 2015
Android - Android Studio Short Keys and tips
For Android studio shortcuts. Here are a few that I know.
Add unimplemented methods: CTRL + I
Override methods: ...
Wednesday, April 8, 2015
Android - Get Image from Canvas
Overview: We can create an image that canvas draw in view.
1. Draw Something: First, we going to draw some shapes such as a circle by using canvas.
Now Launching Application.
2.Creating image: Now we going to create an image from draw view. Let see...