Friday, June 8, 2018

Communication between View and ViewModel

June 08, 2018
1*3Kr2-5HE0TLZ4eqq8UQCkQ
Welcome to this post. In this post, I am going to talk about, how to communicate between view and viewModel. Let's take a look on ViewModel ViewModel was introduced on Google I/O 17, a part of Lifecycle extensions. Now it's released version is 1.1.0. Src: Medium From the picture, you can see that it launch with the creation of activity. And it will be cleared only when the activity is finished....
Read More

Sunday, June 3, 2018

Dart: Introduction

June 03, 2018
dart-logo-for-shares
Welcome to this post. Recently I start to learn Dart programming language. From today, I will post about dart programming language. Src: Dartlang What is dart? Dart is an object-oriented programming language, developed by Google. It is used to build web, server, and mobile applications(Flutter). Before Learning darts, some important concept, we have to understand. Concepts: Everything...
Read More

Saturday, June 2, 2018

Kotlin Data Structure: Circular Queue

June 02, 2018
circular+queue
Welcome to this post. In this post, we are going to learn about the Circular queue. If you don't know the queue data structure, please check this post Queue. In the previous post of Queue, I discuss the problem about the queue. So today we learn about the circular queue. In queue, to data in the queue, the method is called enqueue()   and to get data from the queue, the...
Read More

Friday, June 1, 2018

Kotlin Data Structure: Queue

June 01, 2018
300px-Data_Queue.svg
Welcome to this post. This is the second post about data Structure. In this post, we are going to learn about Queue data structure. In the previous post, we discuss Stack. Stack is FILO type data structure. But Queue is the FIFO data structure, that means the data enter first that also come first. Src: Wikipedia In queue, to data in the queue, the method is called enqueue()   and...
Read More

Tuesday, May 29, 2018

Kotlin Data Structure: Stack

May 29, 2018
page1-375px-Towersofhanoi4.pdf
Welcome to this post. This is going to be a series post about data structure and algorithm, In this series, I use kotlin as a default language. Let's start with stack data structure- Stack is a simple data structure. The implementation of this data structure is also called LIFO that means Last in Fast out. Basically, in this data structure, the last data will come in first. Src: Wikipedia In...
Read More

Friday, April 13, 2018

Android ThemeLibrary

April 13, 2018
sample1
Hello visitors, After a long gap, I bring a post for you. I don't like to waste your time anymore. Let's start- Today, I will write about a new library. The Library is about for android theming and color plate. First of all, see some screenshot- So you can see that this library has an awesome theme list. You can use this list and with your own additional list. You can also remove this list...
Read More

Sunday, December 24, 2017

Android Material SearchView with Recent Search Suggestions

December 24, 2017
Welcome to this post. In this post, I am going to cover Android Search View with Recent Search Suggestion. In a previous post, I already cover Android Material SearchView. In that post, I use a 3rd party library. If you want to use 3rd party library to add search functionality, see this post. Android Material SearchView But Now I don't want to use any 3rd party library. In this post, I use: Search Widget Let's start: create a new activity:(In my case, I named it: SearchActivity) First...
Read More