Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Basically I want to insert navigation drawer and button inside AutoCompleteTextView like search text in google map.
How do I do that ?
thank you very much.
First you need to define your layout (the searchbox), which will have an ImageView. Then you can add an OnClickListener() to open the NavigationDrawer.
You could combine it with something like this:
Add search toolbar over google map like in native android app
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Button with image and Text
if it is not possible with button than please recommend the other way.
Instead of a button, use any layout eg. Linear Layout and place the image and text on it and add a click listener to the layout. It'll work the same way, plus more customization.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
how to Slide an activity like the image below, after sliding the trail of the activities must be visible like the below image.
enter image description here
you can use this library DiscreteScrollView just you need to customize the adapter layout as your requirement.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a problem. I'm working an android project and I want to using FAB button in ActionBar. Just like ActionBar item. Is it possible or impossible? I'm looking for a lot tutorial but I've never seen just like I want.. Thanks a lot.
Try it using toolbar instead of action bar, use custom layout for toolbar
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want home page like this and after selecting the category this view should overlap the homepage with slide in from right animation & slide out from left on back pressed
https://developer.android.com/training/implementing-navigation/index.html
For you own sake try to learn using google. That is called a navigation drawer, the blurred part is backgroundtint and backgroundtintmode, note that those are available in later APIs.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How to create the following help view for android application. This image is from Zapya application and it's appear after first open.
You can try TourGuide(https://github.com/worker8/TourGuide).
screenshot(https://raw.githubusercontent.com/worker8/all_my_media_files/695d9a2/2015-07-01_screenshot.png)
Or MaterialIntroView(https://github.com/iammert/MaterialIntroView).
screenshot(https://raw.githubusercontent.com/iammert/MaterialIntroView/master/art/materialintroviewgif.gif)
Or you can do it simply.
Change layout to :
<FrameLayout>
<your rootView/>
<your guideView/>
</FrameLayout>
When people enter this page,you show your guideView.When people click the next,you hide guideView.The transparent area can be implemented by adding a same view in your rootView or changing the ondraw of your guideView.