I'm trying to make a sliding picker that has circles above it showing you which one you currently have selected. I know I have seen this before, but don't know if this is something android can do by default, or if it has to be built from scratch. If it needs to be built from scratch, dose anyone know where to begin to make something like that.
here is a picture of what i'm trying to make:
Any help would be appreciated
Just have a look into Pages concept in android that may helps you.
i.e Viewpager fragemnt pager adapter
http://developer.android.com/reference/android/support/v4/view/ViewPager.html
or
http://www.javacodegeeks.com/2013/04/android-tutorial-using-the-viewpager.html
Related
I am going to create an application as a picture slideshow maker. But I dont know which library will help me to create the video from a list of image.
I found out some suggestion about FFMEGP for android. I tried it out, but it's not smooth, no animation, no affect. I am not sure if I can customize it.
for ex: I want to create an application like this one : https://play.google.com/store/apps/details?id=com.scoompa.slideshow
this app is awesome, a lot of image transitions, affect style, adding text, icon.
would someone please help me to understand which library or solution they re using !
I am very appreciated! thanks all in advance.
I saw this when I first started and opened my emulator and wanted to include something like in my application.
Does anyone know how you implement this tutorial? Do you basically have a layout file with a TextView, ImageView, and a Button? And inflate it with some kind of dialog fragment? Is there a way to account for the transparency as well?
I experimented with a dialog fragment but mine looks nothing like the screenshot above. (no transparency, position at center, etc...)
I have never used it so I can not give you a code example. However it is documented in the Help Section of the developer documentation.
This library can help you too.
I'm trying to create an accordion in Android that has the following features:
Slide animation when opening a tab
Alignment to the top when opening a tab
The ability to be used inside a fragment and not inside an activity
Any idea to how to accomplish all these points? I've seen a lot of libraries that however luck of one or more of this points (and I cannot fix the remaining myself :( ).
Any idea? Also pointers to how-to-guides to how to fix the missing points would be really useful! Thanks
If you are interested on how I solved the problem, you can find the code here: https://github.com/filnik/AndroidSmoothAccordion
It is "quick-and-dirty" but it does the job.
What I try to do
Hello Guys, I'm creating an app, and I want that it looks nice and simple to control. In my app I got a Tabhost with 3 Tabs. Every Tab is a fragment with diffrent content. Now its the problem, when I switch the tab. I have to do this over a click on the tabhost.
But if you take a look at the Youtube-App on Android 4.0 its possible to switch the tab over a swipe gesture. And exactly here I stuck, how is that possible.
I searched the web, took a look into the Android Documentation, but I didn't really find anything about this topic. So how is that possible to create something like that?
Question
What do I need to do, that I can switch in my tabhost like its done in the Youtube-App. If you have some great tutorials, code snippets or any other tipps, please post them.
Thx for your help in advance.
safari
Pictures
Here you find some pictures to explain better what I'd like to create. They are ordered chronologically.
They are using a ViewPager for that.
ActionBarSherlock samples contains great examples of ViewPager+Fragments tabs:
http://goo.gl/GpbY4
I was just wondering if anyone knew of an open-source custom view or even a way to make a decent strip of buttons on Android similar to the image below
I have looked at the tab views and such Android provides and it isn't what the client is looking for in terms of aesthetics. Any help would be appreciated, thanks!
You probably should implement a custom RadioGroup to implement the UISegmentedControl you have shown in the image. see this github project which implements just that!
https://github.com/makeramen/android-segmentedradiobutton
Here is another resource i've used to implement the same thing you're after:
http://blog.bookworm.at/2010/10/segmented-controls-in-android.html