what is the name of this widget and how can i use it in my app? - android-widget

I want to know what is the name of this widget , and how to use it in my app, i've already see it in some apps in the Android market, but i don't know what is it's name and how to use it in some activity of my app .
Regards ,
Houcine

According to this answer, I believe it's called the Quick Action Dialog and you can read about it and implement it from:
http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/

It's called QuickContactBadge.
http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html
I don't know it's recommended to use it now after honeycomb and ICS. Don't see those UI on HC or ICS now.

It looks like android-segmentedradiobutton, a port of the iPhone UISegmentedControl

I think it is a custom widget, not in the standard Android SDK :(

Related

Flutter app with a web view deployed to the web

Seems like it should be something simple. I'm converting a mobile app to have web support. There are a few pages within the app that use WebView to display things such as terms and conditions and FAQ's.
As the WebView widget only supports ios and android from what I can tell, how should I do this? Of all the platforms you'd think the web was the easiest to do this!
ok, just after posting I came across IFrameElement which looking at this link https://medium.com/flutter-community/flutter-web-and-iframe-f26399aa1e2a should make it possible.

Phone gap integration in iOS

i have developed iphone application almost, but for some screen i need to use already made functionality in java scripting, so i thought of using Phone gap, will it be possible to add this in already present project .
suggest me with your expert answers
thank you .
I think that is not possible to integrate phonegap with native app.
My suggestion if you just need to use javascript, html and css in your native app why are you looking for Phonegap ? Use UIWebView instead.

ios 6 how to add facebook like button natively?

Any of you knows how to implement a facebook like natively in iOS app?. I'll like to implement the button like normla IUbutton.
You may find this useful. I was looking for it the other day but have not had a chance to implement.
http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app
In short I don't believe there is a way to do it using native UIbutton.
There is no way to do this natively at this time. The quickest way to do it is to load a webview, and navigate to the page that you wish to like.
Lately FB opened this throught their SDK
Check this out
https://developers.facebook.com/docs/ios/like-button/

what's the best practice for Android application preference's User interface?

Hi I want to port my iPhone app to Android.
in Iphone the Settings provide a unified UI for application preferences.
I have read http://developer.android.com/guide/topics/data/data-storage.html about SharedPreferences, but there is no UI
What should I do in Android?
Thanks
but there is no UI
Sure there is. It is called a PreferenceActivity. You define it using a preference XML resource. Here is a sample project showing a simple case for this.
Look up PreferenceActivity. It allows you create a UI very quickly using XML that matches the general preference look and feel of Android.

reCaptcha on iPhone App using SDK

Has anyone used reCaptcha on their iPhone application? I am trying to figure out how to embed it in my App...
The only way to use reCaptcha in an iPhone app is by rendering a WebView within the app. There is a nice alternative to reCaptcha called kaptcha that actually has a usable api. http://code.google.com/p/kaptcha/
use this http://iphonesdksnippets.com/post/2009/05/05/Add-text-to-image-%28UIImage%29.aspx find a nice background image for you app, and just randomly generate some number and/or text. not exactly a captcha, but it can work out. Hope it helps!