It's possible to use scrollabeView like this in Appcelerator? - android

I want to have a scrollabeView (pagingControl) exactly like this image, where I can show 2 pages at the same time or more and swipe between them on Ios And Android.

In iOS you can have a look at the property clipViews. For Android it is currently not possible without adjusting the SDK. Have a look at this ticket: https://jira.appcelerator.org/browse/TIMOB-25635. It is a feature request to have this kind of layout. Also it features some links that explain how to add it to the sdk.

I fixed this problem by creating this widget com.developatic.pagingControl. I hope that will be useful.

Related

Swipe to show Buttons in ListView just like IOS

I am trying to achieve IOS Mail like swipe effect in Android. I have gone through several links and blogs but nothing was as good as IOS Mail app. I also searched SO but nothing was helpful.
I tried below link:
https://github.com/47deg/android-swipelistview
https://github.com/dharanikumar/IOS_7-SwipeGesture-Android
https://github.com/baoyongzhang/SwipeMenuListView
This is what I want:
How can I apply these effects in Android ListView? Is there any library or some piece of code which might be helpful?
Not sure what are the issues you've had with the other libraries, but you can try this one:
AndroidSwipeLayout
I'd also like to point out it's kinda futile to try to mimic a specific app of another platform in terms of look & feel.

Android QuickActions? PopupMenu? Popup Window?

I'm currently developing an Android app for a client. Problem is their mockup screens contained a UI view that I'm unfamiliar with. In short, I'm not sure what approach/implementation to use.
This is what I'm trying to achieve:
The user taps on SALES TOOLS, and a popup of some sort appears with options leading to other features of the app.
Any suggestions on what implementation I can use?
There are lots of library Available in market
Please check this URL it may be help you links given below
Chrome Style Help Popups
Quick-action-pattern-in-Android
Another alternative would be "super-tooltips":
https://github.com/nhaarman/supertooltips
Use android.widget.PopupWindow to create popwindow for a view.
using it various method you can put the window where ever you want.
Use this link will satisfy your needs .
https://androidresearch.wordpress.com/2012/05/06/how-to-create-popups-in-android/

App browsing page bar

Im developing an app and wanted to add some page browsing with those dots to identify your current page like the image below, can someone tell me how is that control called?
Thank you in advance
There is nothing in the Android SDK that provides this "out of the box". It is probably implemented as a LinearLayout holding ImageView widgets, though there are plenty of ways of doing it. If your intention is to use this with a ViewPager, there is an implementation of this UI in the ViewPagerIndicator library and perhaps in other open source libraries as well.
If you really want to see what that app is doing, use uiautomatorviewer to inspect the running UI of that activity and see what widgets are involved.
There is no default Android view for that.
Take a look at this:
https://github.com/JakeWharton/Android-ViewPagerIndicator

How to position controls in Android?

I am trying to create the UI but I'm having a lot of difficulty just placing controls where I want them to appear on the main screen. For example I want to add a few ImageButtons but they just seem to snap to one corner and I can't seem to add more than one.
Do I need to use a layout or something? Can't I just drag and drop and move the controls around where I want?
I suggest you start by reading a few of the developer tools out there. http://developer.android.com/guide/topics/ui/declaring-layout.html This guide will help you get your feet wet with how to properly layout a screen in Android. There are also a bunch of other great guides on there to help with other aspects of the UI. Even though you use C# in Xamarin Studio, the UI portion is native Android so the guides should still be relevant.
try to use relative layout , its kind of easy for visual studio developer and others too.
details here : http://developer.android.com/guide/topics/ui/layout/relative.html

Which scroll is best for Android: PhoneGap

I'm going to implementing design for android application using HTML5 and css , previously in one application I had used Iscroll but iscroll have lots of issues like flickring and double tap) so I dont want to use it any more so want to discuss you all (phonegap android developer that which scroll should be best to use in my android application so that it does not create any issue.
Please suggest.
Use overthrow.js.. it works fine with android.. I have implemented.. Simple overflow property doesnt support in android < 4
You can try TouchScroll.There are some examples here.

Categories

Resources