HTTP status codes 2

HTTP Status Codes HTTP Status Code Basics Most people don’t think too hard about what actually happens when they navigate to a web page. They just open their browser, click something, and there it is on my screen! Looking for a specific code? Have a look at the table of contents on the right! We […]

person shubham sharmaaccess_time February 1, 2017launch Read More

HTTP status codes

HTTP Status and Error Codes Explained The following is a list of HTTP response status codes and standard associated phrases, intended to give a short textual description of the status. 1xx Informational 2xx Success 3xx Redirection 4xx Client Error 5xx Server Error 1xx Informational Request received, continuing process. top Code Status Explanation 100 Continue The […]

person shubham sharmaaccess_time February 1, 2017launch Read More

Android Internal and External storage example – Store and Retrieve Data

Android Internal Storage  Internal storage are private to your application and other applications cannot access them (nor can the user). When the user uninstalls your application, these files are removed. Android External Storage  External storage such as SD card can also store application data, there’s no security enforced upon files you save to the external […]

person shubham sharmaaccess_time February 1, 2017launch Read More

Android marshmallow request permission?

Open a Dialog using the code below:

  Get the Activity result as below:

  More info: https://developer.android.com/training/permissions/requesting.html

person shubham sharmaaccess_time January 31, 2017launch Read More

Reset Password Template wordpress

Download File

person shubham sharmaaccess_time January 27, 2017launch Read More

Android Spinner Dropdown Example

person shubham sharmaaccess_time January 11, 2017launch Read More

Android Studio Gradle project sync failed

    Just a blind guess: try to add something like this to your gradle.properties file in the project:

 

person shubham sharmaaccess_time January 2, 2017launch Read More

getChildFragmentManager

getChildFragmentManager() on programmatically (dynamically) added Fragments? accepted In conclusion, I want to reference OuterFrag in MainActivity always. And I want OuterFrag act as a placeholder to load different InnerFrags. In short, I want to call getChildFragmentManager() in OuterFrag, when it is added programmatically (dynamically). If you want this then make your OuterFrag have a container […]

person shubham sharmaaccess_time December 31, 2016launch Read More

How to make android app’s background image repeat

Ok, here’s what I’ve got in my app. It includes a hack to prevent ListViews from going black while scrolling. drawable/app_background.xml:

  values/styles.xml:

  AndroidManifest.xml:

 

person shubham sharmaaccess_time December 29, 2016launch Read More