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

Sunday, September 24, 2017

Android Share Action Provider

September 24, 2017
share+action+provider
Welcome to my Blog. In this post, I am going to talk about android share action provider. What is Share Action Provider? Share action provider is just a provider for share some action. we just create a that enable data sharing and also to show a submenu with sharing activities if the hosting item is placed on the overflow menu. In this post, I will show you how can you add this feature in...
Read More

Monday, September 18, 2017

Android Splash Screen right way

September 18, 2017
splash+screen
Welcome to this post. In this post, I am going to discuss on Android Splash Screen. In this whole post, I gonna cover those topics 1. How to create android Splash Screen 2. How to override default color when app launching (windows background) When you click app icon, the app takes some time to start. To overcome this option android by default show a color until the activity...
Read More

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

Saturday, August 19, 2017

Kotlin null safety

August 19, 2017
Welcome to kotlin Series In this post, we are going to discuss a very important topic of Kotlin. The topic is kotlin null safety. I think you already heard this keyword, null safety, Kotlin is a null safety language. right? what is the null safety? In kotlin by default, you can not assign a value of a variable as null. All the variable must have a value. but if you want an assign a variable as null, you have to use? code- val nullValue:String? = null if you want to create...
Read More