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

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

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

Android Night Mode

June 15, 2017
night
welcome to this post.In this post we are going to learn about how to use night mode on Android app. you can turn on night mode in your app by using android support library. you can use this option in settings or in the menu item. Night mode In this case, I use this on settings. In a past post, we learn how to make app settings you can take a look Let's start- First, add new file name colors.xml...
Read More

Wednesday, June 14, 2017

Android Material SearchView

June 14, 2017
searchViewOpen
Welcome to this post. Android Material Search view tutorial. In this tutorial, we going to make a project and Implement A search view on the toolbar. For search view, I use a 3rd party library Material SearchView Note: If you don't want to use 3rd party library see this post,  Android Material SearchView with Recent Search Suggestions Let's start- Before starting, see a screenshot- Material...
Read More