Video Demo:
JSON means JavaScript Object Notation. Json parsing is used when our app wants to exchange data with our server. There are alots of tutorial in Json paring in android java But there are limited tutorial of json parsing in android using kotlin. So here I am showing tutorial of Jsonparsing in android Kotlin. Download source code from...
Saturday, May 12, 2018
Saturday, April 28, 2018
Themes and Styles on Android allow us to separate the details of our app design from the UI structure and behavior, Similar to Stylesheets in web design. Download source code from here
activity_main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
...
Saturday, April 21, 2018
A toast is used to display simple feedback about an operation in popup and automatically fade out after timeout. In this tutorial I am create a custom toast by using custom layout. Download source code from here:
activity_main:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
...
Saturday, March 17, 2018
In Android Parcelable interface is used to transfer the Arraylist or Object from one Activity to another activity. Parcelable is faster then serialization. Download the source code from below.
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
Saturday, March 3, 2018
Video Demo:
TabLayout provides a horizontal layout to display tabs. We can show the number of layout in single screen. In this tutorial, I am using the two fragments to shows the tab data. DOWNLOAD SOURCE CODE FROM BELOW:
activity_main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android android:layout_width="match_parent"
...
Sunday, February 18, 2018
Video Demo:
TabLayout provides a horizontal layout to display tabs. We can show the number of layout in single screen. In this tutorial I am using the two fragments to shows the tab data. DOWNLOAD SOURCE CODE FROM BELOW:
activity_main.xml:;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
...
Sunday, February 11, 2018
Video Demo:
In this tutorial, I am creating a demo of expandable listview with search bar. Expandable listview is used to show the data according to particular category. You can expand or collapse the data of particular group. To search the data I am using the TextWatcher. DOWNLOAD SOURCE CODE FROM BELOW
activity_main.xml:
<RelativeLayout...