Wednesday, October 4, 2017

Android Material App intro (part 2)

October 04, 2017
Welcome to the second Second part of the tutorial "How to create Android Material App intro". In the previous part, we finish all of our XML code.  In this part, we are going through the Java code and Finished the app intro. Lets Start- First, open the newly created activity java file. By Shudipto Trafder ...
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

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