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

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

Friday, June 16, 2017

Android Spinner and it's adapter

June 16, 2017
Welcome to this post. In this post, we going to learn about Spinner. Spinner is really awesome to give user choice to select from a small list. you can use the spinner to get a value from a list. In this project, we are going to create a list that shows a list in the spinner. The list has 3 items- Everyday Today Schedule Let's start- layout name as you want. I create a fragment that contains a spinner and a text view. I am currently using the same spinner in two or more file so I use...
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

Sunday, May 21, 2017

Android CollapsingToolbarLayout

May 21, 2017
toolbar-min
Android CollapsingToolbarLayout is one of the most common features on android material design. By using collapsing toolbar we can now collapse our android app toolbar and use image or others things on the toolbar and that visibility is gone with collapse. In this post, We will learn how to use Collapsing Tollbar layout. Let's check documentation Now start- First, add design dependence on your...
Read More

Thursday, May 18, 2017

Android RecycleView and OnClickListener part 2

May 18, 2017
screenshot_0111232832
If you miss Part 1. Please Check Part 1 first by clicking here. Now come back to your MainActivity.java follow some steps- Create SubjectList type ArrayList Create Adapter and initialize it set adapter to RecyclerView by recyclerView.setAdapter(adapter); at last, fill the array list. See the code- public class MainActivity extends AppCompatActivity { private ArrayList<SubjectList>...
Read More