Show instructions on how to use an app on Android [closed] - android

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 5 years ago.
Improve this question
How do you show the user, how to use the app. Is there a tool or something which allows the user to learn how to use it, like a tutorial.
Or what would you do?
By the way, in my app, the user just needs to understand which button needs to be clicked. Basically, he must pick the correct button according to the background color.

To show or introduce your app to the user is called as show casing your app/views(we can say aka tutorial).
You can make your own showcasing animations but there are some libraries for that purpose
ShowCaseView
spotlight(my favourite one)
You can easily implement that by reading some more stuff about showcasing app or views

Related

How to get android running widgets? [closed]

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 5 years ago.
Improve this question
I am getting installed widgets but I need to find out only running widgets of home screen. Is there any possible solution.
Thanks in advance.
Write your own home screen implementation, where you allow the user to add app widgets to that home screen. Then, you will know what the "running" app widgets are.
Other home screen implementations do not have to publish this information to third parties, and hopefully they do not, for privacy and security reasons.

What to make first while making android apps? [closed]

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'm a beginner in android. I learn the basic concepts one at a time. But now i'm trying to make a slightly large project. How should i approach this? Should I make all the activities first or should i make activities along with code? Or should i just continue on with the anything i like?
The first thing you would need to think of is what exactly your app does.Once you have that in mind the next thing your're going to want to do is think of an interface for the app which usually leads to deciding what information needs to be shown when and on which screen.Once you know what needs to be where you can start the actual coding,i suggest 1 activity at a time.
If you want a large project i suggest a to-do app.

How to show a user how to write a letter in android? [closed]

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
I am working on a language Learning android app. I want to include a feature on how to write a particular letter of a particular language.
So, the general idea is when a user clicked on a letter say 'A',a pop up activity appears and A is written with a pencil, i.e., sort of showing the user how to write A.
Any one had idea how i can implement this in android?
thanks
You need to draw letter on canvas, using Android drawing APIs. You can do it in two steps:
First draw letter, and save all drawing objects.
Second, draw again (replay) using previously saved objects.
There is an other way which will be easy but it will require alot of effort by designer. You will have to create gif files for each letter from which you can animation.

Custom download progressdialog android [closed]

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 8 years ago.
Improve this question
I am creating a Data Backup application in android that can synchronize with server and device to take backup of specified data.
Here when the synchronize process carry on i want to show the progress to the user on screen.For that i have a beautiful design of progress dialog that shown in below image.
Here i have developed outside design of half circle , but i am unable to create the moving line inside circle that show the progress.
So please help me how can i do this.
You need to customzie this using following libraries:
https://github.com/ntoskrnl/SpeedometerView
https://github.com/bilthon/Android-Speedometer
http://www.oodlestechnologies.com/blogs/Implementing-Speedometer-in-Android
https://github.com/CodeAndMagic/GaugeView
You can also use this library.
https://github.com/TriggerTrap/SeekArc

Making a Circular Dial like menu [closed]

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 8 years ago.
Improve this question
Am currently working on a circular dial like menu like one below, where user can scroll to select an option. May I get any UI ideas for achieving this in native Android development.
AbsoluteLayout is deprecated.
However, you are lucky:
there is a similar open source project on github:
https://github.com/LukeDeighton/WheelView
Good Question,
You can use "AbsoluteLayout" for this type of UI.
Black Image for Dialer and , Than small images for numbers.
Thank you,

Categories

Resources