we are trying to achieve a UI design which is similar to the UI shown in this below video:
Video to demonstrate required UI
If anyone has any idea on how to implement this UI, please guide me.
Im new to Android Development, If more information required I'll provide.
You should implement design elements such as RecyclerView, CardView within your gradle and modify them as you like in the XML.
I leave you an example video of UI design in Android Studio that you can follow to achieve what you want: https://www.youtube.com/watch?v=yeQ1XHgQxHw
Related
A bit of context here. I'm an iOS developer with no knowledge on Android development.
I need to know whether it's feasible in Android to embed custom interactive UI elements (in iOS that'd be a UIView) inside of EditText.
A library I found to do this in iOS is: https://github.com/vlas-voloshin/SubviewAttachingTextView
You can see a GIF in that link showcasing the kind of behavior I'm looking for.
Is there built in support, or any third party library I can use to achieve something similar in Android?
in normal way this is not possible in android and we don't have any standard component or any library (that i know) for doing such a thing but we can create something similar to this (for this you should search about custom Views in android !) and also there is other way and easier way to achieve something similar to this is using the container layouts in android like LinearLayout and adding all your component to that container layout in run-time base on your text ! for example in your code you can dive in to your text and find tags like or and create appropriate view for your tag and add it to your container layout and at the end your layout looks like that gif wich is in your question ! and also in android we can show some basic html code in textView
I often see this UI pattern on Android. It consists of a circle .
First Google Fit uses it.
Timely has the same UI pattern. And you can interact with it , change the timer.
It is not part of Android standard View.
What is the name of this view / UI pattern ?
Can you give links to similar open source library ?
Thanks everyone who posted the comments.
Let's call this custom widget Circular SeekBar
https://github.com/RaghavSood/AndroidCircularSeekBar
https://github.com/devadvance/circularseekbar
https://github.com/TriggerTrap/SeekArc
Or Circular ProgressBar
https://android-arsenal.com/details/1/1513
https://android-arsenal.com/details/1/1446
https://github.com/passsy/android-HoloCircularProgressBar
These are custom widgets, developed by application developers - it's not part of Android Framework, yet it's relatively easy to write own circular widget. See docs here.
I am in a situation like i have to generate UI Controls like Button,Switcher,Progress Bar, Label text etc based on my list Items .
I am looking for a way to generate the controls in a View and add Views with generated controls in a Layout .
Can anyone give me a proper way to do that?
Why not to use Fragments?
Google docs about this here
and little tutorial here
You may want to take a look at the Metawidget source code. The Android version of Metawidget makes extensive use of generating Views and Layouts at runtime (e.g. see org.metawidget.android.widget.widgetbuilder.AndroidWidgetBuilder). You may even find Metawidget itself will suit your needs (it's designed to be embedded into projects for use-cases such as this).
Does anybody know how the article layout in the Google Currents Android app is built? I'd like to use some very similar layout for my app.
Example:
The first thing which came to my mind was to build up an the layout with a WebView with multicolumn stlye (http://www.w3.org/TR/css3-multicol/). Am I on the right way or is my suspicion completely wrong.
How do I get the page flip through the swipe/fling gesture and how to get the corresponding page indicator at the bottom?
Thanks in advance! :-)
You must use native views android and not webView because it is not efficient. But if you begun on Android you can actually use a webView is a good learning.
However, if you're interreses the layout android http://developer.android.com/ the website is a very good teaching technique. And what is the view of pourfaire text scroll from right to left, I encourage you to use the library ViewPagerIndicator.
I hope I have helped you!
To be very honest, I am very new to android development. I really want to learn it.
I'm facing problem in UI design. I want to make something like the picture given below.
Now my question is the that the list of person is dynamic (received from a web service). Now how can I achieve that.
I'm guessing I have to make a XML layout of one and then load it in the layout using code?
i've done something as explained here.. but that is not enough. :(
Please help!
**** EDIT ****
I want this
to be dynamic. I have successfully created the above image strip in a separate XML.
now can it be used in the main layout dynamically like we used to do in case of User Controls in .NET?
You have to work with ListViews. Just watch the Google I/O ListView video for a good introduction. The actual layout of cells will be done in a separate layout XML file.
here is important for you..following link provide how to adjust image along with two item.
refere this
Here is the project file. For simplicity I used a SimpleAdapter. You can create your custom adapter to meet your requirements. Hope you like this ui... :)