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

Friday, November 17, 2017

Android Runtime permission

November 17, 2017
Welcome to this post. In this post, I am going to discussing a new topic that is android runtime permission. What is runtime permission? Basically, when we want to access some data on the device or want to make a network request from our app, we need user permission.Basically, we need to write the permissions on the AndroidMenifest.xml AndroidMenifest.xml <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"...
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

Saturday, November 4, 2017

Google Chrome Custom Tab on your Android App

November 04, 2017
Welcome to this post. In this post, we are going to learn how to use google chrome custom tab in our app. In our app, we basically use webview for loading a web address. Or sometimes we make an intent that opens other browser and loads the web address. But why we use Chrome custom tab? Chrome custom tabs offer apps additional management over their internet expertise and build transitions between native and web content more seamless while not having to resort to a WebView. Is any customization...
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

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 12, 2017

Android studio: share code on Github and add SSH key to you Git

August 12, 2017
share+git+android+studio
Welcome to this post. In this post, we are going to discuss how to share code on Git from Android Studio. (I don't want to describe what is GitHub or why you need to use git. I just want to show you the process only) Let's jump in. Before share, you need to create a GitHub account click here for GitHub account. After creating a GitHub account, you can now share your code into GitHub. Open android...
Read More