Tuesday, August 28, 2018

Dependency Injection with KOIN to Androidx Jetpack

August 28, 2018
Welcome to this post. A few months ago google launch jetpack. This library includes some new component, like Work Manager. The problem is if you want to use dependency injection, then you can not do easily. If you heard about dependency injection then the first library coming in our mind is Dagger. But the problem is Dagger still not support androidx. A few days ago I work with a new project, and I decide to use Work manger. But the problem arises because I am used Dagger. I search...
Read More

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

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

Tuesday, November 14, 2017

Android Settings Series (part 2)

November 14, 2017
Welcome to this series post. In this series post, we are going to create a complete Settings for a productive app. We already published a post- Android Settings Series (part 1) Now I am starting where I left in the previous post. Now we need to create other 2 XML file. (In our final settings we need 3 XML file, we already have done one.) By Shudipto Trafder ...
Read More

Saturday, November 11, 2017

Android Settings Series (part 1)

November 11, 2017
Welcome to this Series post. In this series post, we are going to create a complete Settings for a productive app. Basic overview of our final settings? Our final settings contains-  multiple preference screen  In a previous post, I  cover android settings with a single preference screen (Android App Settings with Preference Fragment Compat). we create 3 screen that's are- General Backup  Advance So we create multiple preference screen in the same XML file...
Read More

Monday, October 2, 2017

Android Common Code

October 02, 2017
All the common android code list that used almost every android project. Here is the list of all code in this post: Support vector drawable PreferenceFragment support Java 8 support Support vector drawable: to support vector drawable add below line on the build.gradle file compile 'com.android.support:support-vector-drawable:26.1.0' also adds below line on those activities where you use vector drawable. static { AppCompatDelegate.setCompatVectorFromResourcesEnabled(true); } PreferenceFragment...
Read More

Wednesday, September 27, 2017

How to create Android Material App intro

September 27, 2017
app+intro
Welcome to this post. In this post, we are going to make awesome app into for android app. By Shudipto Trafder ...
Read More

Monday, September 18, 2017

Android text to speech tutorial

September 18, 2017
Welcome to this post. In this post, we are going to discuss android text to speech. Before the start, check the official documentation of Android text to speech. In my case, I use this option with a fab (Floating action button). When the user clicks on this fab button this text to speech is triggered and user heard the speech. Let's start, Implement TextToSpeech.OnIntListener on your activity class. public class DetailsActivity extends AppCompatActivity implements TextToSpeech.OnInitListener...
Read More

Tuesday, September 5, 2017

How to connect firebase directly from android studio

September 05, 2017
firbase-basic1
welcome to firebase series. In this post, we are going to learn about how to connect firebase from the android studio. This is the easiest methods ever. we can directly connect firebase through the android studio. Let's start- open any project or create the new project I am going throw picture by picture. Follow picture to picture for completing this process. In android studio click tool and select...
Read More

Wednesday, August 30, 2017

How to set sign in anonymously in Firebase

August 30, 2017
firebase-auth
welcome to firebase series tutorial. In this post, we are going learn about how to sign in anonymously in firebase. But before starting, I am providing you some ideas why we need sign in anonymously? If you are using real-time database and storage you need to create a rule for access database and storage. By default the rule is {   "rules": {     ".read": "auth != null",  ...
Read More

Friday, June 23, 2017

Android: Job Scheduler schedule you job

June 23, 2017
android
Welcome to the android tutorial. Android In this post, we talk about JobSchedular. A job scheduler is more effective than alarm manager. Want to see it benefits then check out this link. For scheduling, you have many options to use. 1. Android Alarm manager 2. Job Scheduler 3. Gcm Network Manager In the previous post, we talk about android alarm manager. Are you confused about those?...
Read More

Friday, June 16, 2017

Android: Alarm Manger with broadcast receiver

June 16, 2017
Welcome to this post. In this post, we are going to learn about Alarm manager and BroadCast Receiver. As usual before start please check official documentation. 1.Alarm Manager official documentation 2.BroadCast Receiver official documentation Alarm manager is used for scheduling task. If you want to do a task after some time intervals or if want to do some task at 11 am. of the daytime, you have to use alarm manager. Because there is a possibility that user is not using this app at that particular...
Read More

Thursday, June 15, 2017

RecyclerView OnClick Listener again

June 15, 2017
Untitled-2
RecyclerView is the more flexible than ListView. Now we all use RecyclerView. But In the RecyclerVIew there is a problem that it's not come with the listener. So we can not handle click event easily. I already post a method to handle click event click here. Here are an another methods to handle click event. Note: In this post, I just show only some methods where you have to change not full...
Read More