Android :: Androad 2.1 Not Supported SPP Bluetooth
Apr 2, 2010
I would like to use SPP bluetooth keyboard(not HID profile.) on my android. but android 2.1 is not supported SPP bluetooth. Um.... Someone communicated the SPP device using android RFCOMM. Is this possible?
View 16 Replies
Sep 1, 2010
Why do we have bluetooth options on the mini pro if at this time bluetooth is not supported?
View 1 Replies
View Related
Oct 6, 2010
I would like to know if the Android handsets can be configured Over-The-Air; in other words, if they can be configured for settings (such as GPRS , WAP or MMS ...) using OTA. If yes, do they support OMA CP provisioning? Is there an XML example that can be used to configure the Android devices?
View 1 Replies
View Related
Sep 8, 2009
Is their any way to get the IME Supported language list & selected language? InputMethod & InputMethodManager not having any function to get this details.
View 2 Replies
View Related
May 10, 2010
I'm a little bit confused about supporting SPP by Android API(from level 5). As I understand it wasn't supported in versions before API level 5 what we can read in discussion below.(First Nick's post) http://groups.google.com/group/android-developers/browse_thread/threa. But it was in October and after that we have APi from 5 to 7 now released. And my question is do all these API's support SPP? As I read in other discussions some phones makes more difficulties than others. Which mobile phone you can recommend?
View 2 Replies
View Related
Nov 9, 2009
What are all the JSR s supported in Android? Is JSR 226 supported?
View 3 Replies
View Related
Nov 16, 2009
How come we can't use GL_QUADS is this not part of the OpenGL specs?
View 2 Replies
View Related
Sep 3, 2009
I'm trying to get IntentFilter informations from ActivityInfo object. But I haven't succeeded it.
I found below article. The article is written at last year. http://groups.google.co.jp/group/android-developers/browse_thread/thr...
Is this not supported yet?
View 6 Replies
View Related
Jun 15, 2009
Can anyone tell me that which videos supported for streaming? I tried .mp4,.3gp videos. But none of the videos supported?
View 4 Replies
View Related
Aug 10, 2009
I am doing a research about the tools supported in android. Or some site that have informations about any tools. Any kind of tool. If someone could help me, itīs very important to me.
View 2 Replies
View Related
Sep 3, 2010
I work on an application to display a remote page in a webview. The page contains a simple input form and an image. The image is updated automatically by server using specific header. The page is never displayed.
Searching on the web to find a way to resolve this issue.
I read this : http://remotedroid.net/blog/2009/11/13/android-browser-caching/ "Pragma: no-cache, and all the other server-side headers also have no effect as far as I can tell."
Do you have a work around ?
View 2 Replies
View Related
Jul 2, 2009
I've been using MediaPlayer for playing some sounds and I've found no way to get hold of a list of supported mime types at runtime. I was hoping for something along the lines of MIDP's javax.microedition.media.Manager.getSupportedContentTypes() but there doesn't seem to be anything that achieves this on Android. The only thing that there seems to be is a web page that lists supported media types (at the moment and on the small amount of devices available).
http://developer.android.com/guide/appendix/media-formats.html
Does anyone know of a way of enumerating the mime types?
View 2 Replies
View Related
Dec 7, 2009
One of the component of my app widget is TextView which i want to be filthy rich one: ForegroundSpan seems to be working but i cannot see ImageSpan to appear.
View 2 Replies
View Related
Dec 22, 2009
How do I LIST all the INTENTS supported by all the activities(all applications as well) in the Phone.
View 2 Replies
View Related
Jul 23, 2010
I have a widget, working happily on 2.2, which includes this line:
CODE:............
When I run it on 1.5, I get this:
CODE:...........
Unsuprisingly, the widget doesn't appear. But I'm not quite sure what is not supported here. RemoteViews.setBoolean is documented as supported since API level 3, and ImageButton.setEnabled has been there forever.
Is there some separate question about which functions setEnabled is prepared to do business with ? Or, if not, what could possibly be wrong here ?
View 5 Replies
View Related
Apr 5, 2010
I am wanting to make an ad supported version of my app, any suggestions as who to go with? I was just looking into Admob, anyone like a different company better?
View 5 Replies
View Related
Aug 31, 2009
I seem to be having a weird issue when parsing XML from a server. In LogCat the following warning is displayed:08-31 12:05:28.870: WARN/ExpatReader(2031): DTD handlers aren't supported.The parser then seems to stop. I can't figure out what is causing this problem, my approach doesn't seem any different in this instance with regard to parsing XML. Does anyone have any recommendations to fixing this issue?
View 3 Replies
View Related
May 31, 2010
What video formats does the nexus one play?
View 3 Replies
View Related
Aug 23, 2010
I'm trying to handle the content not supported by the browser but for some reason I can't get my app to catch this intent... What do I need? Here is what the browser spits on the logcat:
Intent { act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=http://listen.di.fm/public3/oldschoolhouse.pls cmp=com.android.browser/.BrowserActivity }
I have: <activity android:name=".myAppr"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" />
<data android:pathPattern="*.pls"/> </intent-filter>
View 4 Replies
View Related
Apr 20, 2010
I'm hearing that IPv6 is supported by android, at least over the wifi interface, but I cannot do anything with IPv6 through the SDK at all. I am running Android 2.1 on an N1. I can see that at the OS level, the wifi interface has a link local inet6 address: ufo:~ newton$ adb shell $ cat /proc/net/if_inet6 0000000000000 0000000000000000001 01 80 10 80 lo fe80000000000000022376fffe8d1e63 0c 40 20 80 eth0 although ifconfig does not show it: $ ifconfig eth0 eth0: ip 192.168.1.2 mask 255.255.255.0 flags [up broadcast running multicast] If in Java I call getInetAddresses on a java.net.NetworkInterface, I only get the inet4 address. As I'd expect from the above, I cannot connect via any Java APIs to another link local IPv6 host on the same wifi lan Depending on my approach I get "socket level is invalid", a bad socket options error, host unreachable, or timeouts. Has anyone seen this work or have any insight? You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@google groups. com To unsubscribe from this group, send email to android-developers + unsubscribe @googlegroups.com For more options, visit this group at http://groups. google.com / group /android-developers?hl=en
View 2 Replies
View Related
May 24, 2010
i am developing an application for android and would like for my users to be able to post some information from my application to their twitter feed. i know how to make this work by building a VIEW intent and forwarding the user to the android built-in web browser (thanks to stack overflow!) However, now that there is an official Twitter application, I would like to be able to use the twitter applications activity (if it is installed) to make the post. However, I can not find any developer documentation on what the Twitter Intent for Android is called. Can someone provide a short snippet of sample code that includes that text of the Intent to use?
View 2 Replies
View Related
Oct 14, 2010
Is there any list which HTML5 features the WebView supports and which not? I am interested mainly in: 1) localStorage/sessionStorage 2) offline manifest 3) web sockets 4) web workers. Prior there was lack of those features (http://www.mail-archive.com/android-developers@googlegroups.com/msg60143.html), but in Android 2.1, first two should be supported, but I am not sure about 3 and 4. Is there any list of supported features or we have to test it on our own?
View 1 Replies
View Related
Jul 30, 2010
Is there any API supported by Android for recording phone call ?
View 2 Replies
View Related
Nov 24, 2010
Anyone know where I can find what Android APIs are supported in the latest Flex AIR SDK (Hero). In particular is the speech to Text API supported?
View 2 Replies
View Related
Jul 6, 2010
I am trying to use Wi-Fi Adhoc Mode in my application. But I could not find any API or method to set the same. I read a thread in Android Forum and could not come any concrete solution on how to use enable Adhoc mode in Android.I used to use WPA_Supplicant conf file in Linux to enable Adhoc mode.
I would like know if I can enable Wi-Fi Adhoc mode in Android from my application and how to do the same.
View 2 Replies
View Related
Sep 28, 2010
Is it true that "Only 64-bit build environments are supported beyond froyo/2.2."? When I try to build it, it gives me this message. I try to search everywhere in the Internet and can not find any information about this rule.
View 2 Replies
View Related
Nov 26, 2009
How to get the highest API level supported by the device?
View 7 Replies
View Related
Mar 16, 2010
I like to know using which version of Android SDK we can develop multi touch handling. Does Android SDK 1.6 support multi touch? If yes, can i get some sample code, where i can have multiple imagebuttons placed on screen and clicking on all the imagebuttons at a time should detect multiple touch events?
View 2 Replies
View Related
Apr 20, 2009
I'm doing an application of showing picture with ImageView.I want to know how many kinds of picture are supported in Android, and what are they.Could anyone give a list of these files?
View 4 Replies
View Related
Jan 28, 2010
Has anybody succeeded in updating/installing Android SDK platforms on a headless Linux server? All I got is the following error:
It seems like the action "update sdk" is actually not supported?
CODE:........................
View 4 Replies
View Related