Just Simple Info

Pages

Android Send Email


Android send email

Sometimes our android application need to send email  for whatever reason.

So this time I going to post a simple code snippet on how android application can send email.
I make this code simple. No xml coding in this post.

CakePhp Pagination Issue with Group by Solution

It is easy to use in Cakephp it built in pagination in a simple way. But if you will try to use Group By keyword in querying your data. The pagination will return unexpected result. I have notice that the total number of data count is not correct. I Google about this issue, read a blogs and try to run all recommended solution and luckily I found a working one.

Android Upload File To Server With Data

Upload file to server with data and progress bar
Sometimes our android application need to upload some file to our live server like images, text files, etc.
Uploading file to server is one of my worst task. Searching, testing and searching, testing and again and again. I spent a lot of time just to upload the image to server. After a day, lucky I uploaded my first file to server. What I done is, I convert bitmap to byte[] then convert to Base64String then send to server as POST. But the size of original size increase which is not good. It consume extra bandwidth and time of uploading.

Android Use Sqlite Database Example


Almost all android application need database for storing data like username, password and other. Now we are going to write simple code on how to INSERT, UPDATE, DELETE and RETRIEVE data from database. The most popular database on mobile is the SqliteDatabase. So, this database we will going to used in this example.

Android StateListDrawable Example

StateListDrawable is android drawable that response on the current state of element (' pressed ',' focus', ' selected','etc').
Some element has default drawable that automatically change on press, focus, selected ,etc like Button, CheckBox, RadioButton. etc.

Android Custom ListView Adapter Example


ListView in android arrange views vertically scrollable automatically. If you want to display your items vertically and make it scrollable the ListView is the best choice but customizing ListView appearance get little tricky.

Now we are going to customize the background color and put icon on the left corner of each item.