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've seen this in lots of applications , when you open the application for the first time, to shows a semi transparent screen and mark a tools and shows some description about it .
like this :
as you can see,it marks an icon on menu and shows some text about it and there is a button at the end of the page .
How can I make something like this ?
Try this way to get Showcase
View showcasedView = findViewById(R.id.view_to_showcase);
ViewTarget target = new ViewTarget(showcasedView);
ShowcaseView.insertShowcaseView(target, this, R.string.showcase_title, R.string.showcase_details);
OR you can try with TourGuide
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 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.
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 9 years ago.
Improve this question
I am creating one app for solve quadratic equations, this app is for a work to school. I am very estressed because I don't knkow how start. I am a aficionated and I work hard but I have a lot of doubts. One this is How I do to open keyboard in my app when I click in the label?
Use an EditText, and the input will be handled automatically.
You can get the text with yourEditText.getText().toString(); in your Activity
DonĀ“t forget to define your EditText there (in OnCreate()) first:
EditText yourEditText = (EditText)findViewById(R.id.youredittext);
(youredittext is the id of your EditText in your XML-Layout)