startandroiddevelopment.blogspot.com
Android Development: November 2014
https://startandroiddevelopment.blogspot.com/2014_11_01_archive.html
November 18, 2014. How to parse a json file In Android. N this blog I am going to explain How to parse a json file. Here I am going to explain how to parse a json file stored in Asset folder. Here my file name is user details.json. Which stored in asset folder(json file/user details.json). Here is my json file. UserId" : "1",. Website" : " http:/ shidhints.com. Mobile" : " 91XXXXXXXXXX",. Institute": "Institute Name1",. Year": "2006 - 2009",. Institute": "Institute Name2",. Year": "2004 - 2006",. String ...
startandroiddevelopment.blogspot.com
Android Development: May 2014
https://startandroiddevelopment.blogspot.com/2014_05_01_archive.html
May 07, 2014. Is one of the storage mechanism in Android. The value we are storing in. Shared Preferences is permanent so the value stored will remains there when we close the application. Here the storing of data is done as key value pair. Here we store the data with the help of an editor. To get the value we have saved we need to call getSharedPreferences(). Here I am going to Explain How to save the details Id. Of an Employee in SharedPreferences. Public class EmployeeSession {. Private Editor editor;.
startandroiddevelopment.blogspot.com
Android Development: March 2014
https://startandroiddevelopment.blogspot.com/2014_03_01_archive.html
March 19, 2014. How to play embeded youtube video on webview. In this blog i am going to explain how to play embeded Youtube. Video on webview. am loading the video file in an iframe. While Loading the html page my webview is loading like,. Here is my HTML Page. Iframe width="560" height="315" class="youtube-player" type="text/html" src="http:/ www.youtube.com/embed/YfQW6cpRHlo" frameborder="0" allowfullscreen. Here the embeded video link is " http:/ www.youtube.com/embed/YfQW6cpRHlo. ProgressDialog = Pr...
startandroiddevelopment.blogspot.com
Android Development: December 2013
https://startandroiddevelopment.blogspot.com/2013_12_01_archive.html
December 26, 2013. How to Sign an Android Application. In this Blog I want to explain How to Sign an Android Application. Your Application Project and then Select Android Tools- Export Signed Application Package. Then It will Show Export Signed Application Package. Dialog and In this Dialog it will Show the Application Name. Then Press Next. Then It will ask for keystore. Browse the Keystore. And enter the password of keystore then press Next . And enter the password then press Next. December 24, 2013.
startandroiddevelopment.blogspot.com
Android Development: How to parse a json file In Android
https://startandroiddevelopment.blogspot.com/2014/11/how-to-parse-json-file-in-android.html
November 18, 2014. How to parse a json file In Android. N this blog I am going to explain How to parse a json file. Here I am going to explain how to parse a json file stored in Asset folder. Here my file name is user details.json. Which stored in asset folder(json file/user details.json). Here is my json file. UserId" : "1",. Website" : " http:/ shidhints.com. Mobile" : " 91XXXXXXXXXX",. Institute": "Institute Name1",. Year": "2006 - 2009",. Institute": "Institute Name2",. Year": "2004 - 2006",. String ...
startandroiddevelopment.blogspot.com
Android Development: April 2014
https://startandroiddevelopment.blogspot.com/2014_04_01_archive.html
April 29, 2014. How To Get KeyHash, MD5 , SHA1, SHA256 of keystore. Here is the Steps,. Step1 : We need to download openssl. From Google code ( 64 bit users. Must download openssl-0.9.8e X64. Not the latest version). Step2 : Extract it. and create a folder- "OpenSSL". In C:/ and copy the extracted code here.First open a terminal and go to JAVA bin. Step3 : Detect keystore. File path and go to that directory in command promp (cmd). Step4 : Type this command in 1 line. If it is not Working Use This,. Step5...
custom-listview-with-separate-headers.blogspot.com
Custom Listview with Separate Headers: August 2013
http://custom-listview-with-separate-headers.blogspot.com/2013_08_01_archive.html
Custom Listview with Separate Headers. Sunday, 25 August 2013. Android Custom ListView with Seperate Header. In this tutorial we will display a custom listview with header like,. Xml version="1.0" encoding="utf-8"? LinearLayout xmlns:android="http:/ schemas.android.com/apk/res/android". Android:layout height="fill parent" /. List item header.xml. Xml version="1.0" encoding="utf-8"? TextView xmlns:android="http:/ schemas.android.com/apk/res/android". Android:id="@ id/list header title". System.out....
custom-listview-with-separate-headers.blogspot.com
Custom Listview with Separate Headers: October 2013
http://custom-listview-with-separate-headers.blogspot.com/2013_10_01_archive.html
Custom Listview with Separate Headers. Wednesday, 30 October 2013. How to Start Android Development. Please see this blog How to. Subscribe to: Posts (Atom). How to Start Android Development. You can find more about me from Here. View my complete profile. Simple theme. Powered by Blogger.
startandroiddevelopment.blogspot.com
Android Development: SQLite Database in android
https://startandroiddevelopment.blogspot.com/2014/11/sqlite-database-in-android.html
November 11, 2014. SQLite Database in android. N this blog I am going to explain SQLite database in android. It is an Open Source Database, Also Its is embedded to all the android devices so there is no need to add any library to the application. You are need to import SQLiteDatabase and SQLiteOpenHelper for that. Import android.database.sqlite.SQLiteDatabase;. Import android.database.sqlite.SQLiteOpenHelper;. More Information about SQLite : http:/ www.sqlite.org. Public class DbHelper {. On this class .
SOCIAL ENGAGEMENT