[android-developers] Re: SharedPreferences no work

2012-12-14 Thread skink
Antonis Kanaris wrote: Hello.I make an apk with two activities and use SharedPreferences for store user values but no work but no work... - you are extremely verbose in describing your problem pskink -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: SharedPreferences no work

2012-12-14 Thread Antonis Kanaris
Τη Παρασκευή, 14 Δεκεμβρίου 2012 9:15:12 π.μ. UTC+2, ο χρήστης Antonis Kanaris έγραψε: Hello.I make an apk with two activities and use SharedPreferences for store user values but no workthe string url no store this is my code...Need something extra to manifest for work

Re: [android-developers] Re: SharedPreferences no work

2012-12-14 Thread laxman k
public boolean save(String strurl ,Context context) { pref= context.getSharedPreferences(MyPref,Context.MODE_PRIVATE); editor = pref.edit(); editor.putBoolean(URL, strurl); editor.commit(); return true; } ---saving value save(strurl,getApplicationContext()); --geting

[android-developers] Re: onConfigurationChanged() is not called when flipping between landscape and reverse landscape?

2012-12-14 Thread RS
Hi Dianne, your answer isn't good enough. On flipping, the activity isn't informed through onConfigurationChanged (since Honeycomb, I suppose). This saves an unnecessary onSurfaceChange, texture loading, etc. Cool. But in that case sensor manager too must provide values as in previous

[android-developers] make app compatible on 1024*720 px

2012-12-14 Thread vani reddy
Hi friends, I have developed an app in a tablet of resolution 1280*752px of 160 dpi, I want to make this application work on a tablet of resolution 1024*720px of 160dpi. I referred the below link

[android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Hi all, Seems that Android is dropping idle sockets when under a mobile network. Usually, no socket is kept alive for more than 7 minutes of inactivity. I am using a SIM card with a particular APN, that allows idle sockets for at least 30 minutes - this was tested using another kind of

[android-developers] Re: make app compatible on 1024*720 px

2012-12-14 Thread skink
vani reddy wrote: Hi friends, I have developed an app in a tablet of resolution 1280*752px of 160 dpi, I want to make this application work on a tablet of resolution 1024*720px of 160dpi. I referred the below link

Re: [android-developers] give uniform variables an initial value

2012-12-14 Thread Latimerius
On Fri, Dec 14, 2012 at 2:14 AM, Lew lewbl...@gmail.com wrote: of 'intensity_Handle' (a non-Java-compliant variable name, btw) and its assignment? Also just out of curiosity, and since you keep mentioning this kind of stuff - can you point me to the part of The Java Language Specification

Re: [android-developers] Re: make app compatible on 1024*720 px

2012-12-14 Thread skink
vani reddy wrote: ok,I mean I created 2 layout folders , but both devices are referring to the same layout folder.By this I am only device of 1280*752 px works fine, but in 1024*720 px device app gets distracted.. On Fri, Dec 14, 2012 at 4:05 PM, skink psk...@gmail.com wrote: vani

[android-developers] Re: How to get the cursor position on webview? (about the text selection)

2012-12-14 Thread Ravi
i also need this thing if you finished please help me to get selected word tag name and id -- 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@googlegroups.com To unsubscribe from this

[android-developers] can NFC read the RFID tag?

2012-12-14 Thread Prish goyal
i have wonder on web to find the answer can android-NFC can read RFID tag data or not -- 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@googlegroups.com To unsubscribe from this group,

[android-developers] Starting an actvity from Notifications

2012-12-14 Thread dashman
My app starts on activity A and can navigate to activity B. I also have a background service and creates a notification. Once the user taps on the notification, it calls A and then i create a new activity B. the problem is that if the user taps on the notification after the user has navigated

Re: [android-developers] Starting an actvity from Notifications

2012-12-14 Thread Kristopher Micinski
Look at the intent flags: http://developer.android.com/guide/components/tasks-and-back-stack.html Kris On Fri, Dec 14, 2012 at 8:17 AM, dashman erjdri...@gmail.com wrote: My app starts on activity A and can navigate to activity B. I also have a background service and creates a notification.

[android-developers] Required: SAP Basis Consultant at Phoenix, AZ

2012-12-14 Thread Munawar Ali
Hi There, Hope you are doing good. Please let me know if you have someone for the below mention requirement… Please send resumes on m...@tekenergyusa.com *Position: SAP Basis Consultant* *Location: Arizona* *Duration: 4 Months Contract* We are looking for a *Basis Consultant* with *BW 7.0 to

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Fred Niggle
Hi, I also experienced this problem, and found the solution was to use a timer to send a character to the server every few seconds when idle. I was lucky that i was also writing the server code sp i could work around this. Im not sure if this solves the problem your having, but just thought id

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Hi Fred, Thanks for the feedback. I'm currently implementing something like that, by sending a heartbeat every 5 minutes (so far the safest interval on tested devices). But this is not an optimal solution, as the data transfer plan is a very tight one (particularly those including roaming).

[android-developers] problem display all data sharedpreference

2012-12-14 Thread Antonis Kanaris
I save data url,device name but when call getstring display only device name...this is my functionfor one string work ok public void Save(View view) { SharedPreferences preferences = getSharedPreferences(dataioweb.txt , MODE_PRIVATE);

Re: [android-developers] give uniform variables an initial value

2012-12-14 Thread bob
The code is more like this: int intensity_Handle; *…* intensity_Handle = GLES20.glGetUniformLocation(mProgram, intensity); *…* GLES20.glUniform1f(intensity_Handle, 0.5f); On Thursday, December 13, 2012 7:14:14 PM UTC-6, Lew wrote: bob wrote: Thanks. This is pretty much what I did…

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
Android is not supposed to do this, though there is no guarantee of connectivity. It sounds like something samsung is doing, either accidentally or on purpose. If you send a packet every 6 minutes does that keep the device from pulsing connectivity? Can you take a bugreport - the radio log may

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Hi Robert, Thanks for the reply. If I send a packet every 5/6 minutes the connectivity is maintained yes. Only if connection is idle for longer than that. The weird thing is that it's not an exact timer, even though the average is very close. Sometimes it lasts 7 minutes, sometimes 8 or 9. I even

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
Is it possible something else on the device is occasionally sending data and reseting your window? I would look in the log for the timestamp of the ConnectivityChanged broadcast and then check the radio log and see what's going on. I suspect there is an unsolicited data call list notification

[android-developers] DDMS in Eclipse returning 0.0 in getBearing

2012-12-14 Thread g...@deanblakely.com
I've been successfully using a KML file and DDMS to drive my app testing that uses LocationListener. So far I've just been using latitude and longitude which works well. But now I'm trying to use .getBearing and it's always returing 0.0 !! Is this a bug in LocationListener? Is it a bug in

[android-developers] Re: SharedPreferences no work

2012-12-14 Thread bob
On Friday, December 14, 2012 2:23:46 AM UTC-6, Antonis Kanaris wrote: Τη Παρασκευή, 14 Δεκεμβρίου 2012 9:15:12 π.μ. UTC+2, ο χρήστης Antonis Kanaris έγραψε: *That's Greek to me* Hello.I make an apk with two activities and use SharedPreferences for store user values but no

[android-developers] Re: DDMS in Eclipse returning 0.0 in getBearing

2012-12-14 Thread bob
bearing |ˈbe(ə)riNG| noun 6 the direction or position of something, or the *direction of movement*, relative to a fixed point Try running real fast in one direction. Then call getBearing while running. On Friday, December 14, 2012 11:24:55 AM UTC-6, ga...@deanblakely.com wrote: I've been

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Robert, Thanks again for the feedback. I traced the logs from samsung with a simple app to reproduce this behavior. Same thing, 6/7 minutes and it drops. I posted the logs here: http://pastebin.com/FcPPbq3V On line 3323 you can see ConnectivityService disconnecting. What I can't understand is

[android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
The SDK docshttp://developer.android.com/guide/topics/security/permissions.htmlsay that by default, Android apps do not request any permissions. However, when I generated a Hello World apphttps://play.google.com/store/apps/details?id=us.yellosoft.helloandroid, it requires three permissions:

[android-developers] Re: DDMS in Eclipse returning 0.0 in getBearing

2012-12-14 Thread g...@deanblakely.com
Bob, Since I'm using DDMS you know that I'm running in the emulator on my dev box which, in my case, is a desktop computer. The computer plus the monitor weigh quite a bit and I don't have a very long extension coord. So, I don't think running is the solution. BTW, you wouldn't happen to

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
3319 is fine. It's just the tethering code noting an interface is going away. Can you get radio logs? This is the system log - there are several log buffers. A bugreport (adb bugreport mybug.txt) would get them all. Then you can match the connectivityservice dropout with what happened in the

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 1:22 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: The SDK docs say that by default, Android apps do not request any permissions. However, when I generated a Hello World app, it requires three permissions: android.permission.READ_EXTERNAL_STORAGE

[android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread Bram Stolk
Hi, In the Google Developer Console, when I look at my app statistics for 'Daily downloads' I see something weird. Most versions downloaded on the last day are currently available version. However, downloads of old versions continue to this day, even the ones that have not been current for over

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread TreKing
On Fri, Dec 14, 2012 at 12:33 PM, Bram Stolk b.st...@gmail.com wrote: However, downloads of old versions continue to this day, even the ones that have not been current for over a month. Free or paid app?

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
Thank you, that's a good explanation. How exactly should I edit AndroidManifest to remove these permissions? On Dec 14, 2012 1:28 PM, Mark Murphy mmur...@commonsware.com wrote: On Fri, Dec 14, 2012 at 1:22 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: The SDK docs say that by

[android-developers] How to sync development projects?

2012-12-14 Thread Jungle Jim
I am developing apps using the Android SDK and Eclipse with both my desktop PC and laptop. Does anyone know of a utility that will easily sync the updates to the files like the xml and src betwee the two PCs? Thanks -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread rambabu mareedu
Test your app in real device On Sat, Dec 15, 2012 at 12:20 AM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: Thank you, that's a good explanation. How exactly should I edit AndroidManifest to remove these permissions? On Dec 14, 2012 1:28 PM, Mark Murphy mmur...@commonsware.com

Re: [android-developers] How to sync development projects?

2012-12-14 Thread rambabu mareedu
maintain workspace in cloud On Sat, Dec 15, 2012 at 12:22 AM, Jungle Jim jjjungle...@gmail.com wrote: I am developing apps using the Android SDK and Eclipse with both my desktop PC and laptop. Does anyone know of a utility that will easily sync the updates to the files like the xml and src

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Kristopher Micinski
Just bump up your min SDK level up.. uses-sdk android:minSdkVersion=integer android:targetSdkVersion=integer android:maxSdkVersion=integer / On Fri, Dec 14, 2012 at 1:50 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: Thank you, that's a good explanation. How

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
What's the lowest SDK veraion that gets rid of these permissions? I'd like to support Gingerbread without any extra permissions if possible. On Dec 14, 2012 1:56 PM, Kristopher Micinski krismicin...@gmail.com wrote: Just bump up your min SDK level up.. uses-sdk android:minSdkVersion=integer

Re: [android-developers] How to sync development projects?

2012-12-14 Thread TreKing
On Fri, Dec 14, 2012 at 12:52 PM, Jungle Jim jjjungle...@gmail.com wrote: Does anyone know of a utility that will easily sync the updates to the files like the xml and src betwee the two PCs? I don't know about utility, but what I do is make my SVN repository shareable on my home network,

[android-developers] LocationManager minDistance settings question

2012-12-14 Thread g...@deanblakely.com
I'm converting some of my Windows Phone apps to Android. The apps all revolve around movement tracking. In WP7 the location watcher has a MovementThreshold property that sets how much movement is necessary for the GPS to trigger a movement event. Typically we want a lower threshold when

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Kristopher Micinski
These were added early on..., I believe around 1.5? You can check, but I'd just set my minSdk to be as low as possible, probably 2.2. (So, 8.) In general, you will take the lowest feature set you need and set your API level at that. If you're using ActionBar you might run into problems, but

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread rambabu mareedu
don't waste android-developers time ...do RD in Google not in google group On Sat, Dec 15, 2012 at 12:38 AM, Kristopher Micinski krismicin...@gmail.com wrote: These were added early on..., I believe around 1.5? You can check, but I'd just set my minSdk to be as low as possible, probably

[android-developers] Regarding webservices

2012-12-14 Thread rambabu mareedu
Can anyone tell me is webservices comes under android -- 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@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Kristopher Micinski
There's also an android-beginners group that accepts these questions more openly.. kris On Fri, Dec 14, 2012 at 2:15 PM, rambabu mareedu rambabu.mare...@gmail.com wrote: don't waste android-developers time ...do RD in Google not in google group On Sat, Dec 15, 2012 at 12:38 AM, Kristopher

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Got the radio logs... http://pastebin.com/754wJ2jd This seems to be it GSM : [GsmDCT] onReceive: action=com.android.internal.telephony.gprs-data-stall On 14 December 2012 18:25, Robert Greenwalt rgreenw...@google.com wrote: 3319 is fine. It's just the tethering code noting an interface

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
Min sdk of 7 is sufficient. Thanks all. https://github.com/mcandre/hello-android/blob/master/AndroidManifest.xml On Fri, Dec 14, 2012 at 2:08 PM, Kristopher Micinski krismicin...@gmail.com wrote: These were added early on..., I believe around 1.5? You can check, but I'd just set my minSdk

Re: [android-developers] Regarding webservices

2012-12-14 Thread Kristopher Micinski
https://www.google.com/search?q=webservices+and+android ? On Fri, Dec 14, 2012 at 2:17 PM, rambabu mareedu rambabu.mare...@gmail.com wrote: Can anyone tell me is webservices comes under android -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
Interesting. Maybe it is an android bug! What kind of traffic are you sending? tcp? udp? On Fri, Dec 14, 2012 at 11:23 AM, Goncalo Oliveira gonc...@minkan.netwrote: Got the radio logs... http://pastebin.com/754wJ2jd This seems to be it GSM : [GsmDCT] onReceive:

Re: [android-developers] Regarding webservices

2012-12-14 Thread Larry Meadors
On Fri, Dec 14, 2012 at 12:17 PM, rambabu mareedu rambabu.mare...@gmail.com wrote: Can anyone tell me is webservices comes under android If you can't write an email, android development is likely going to crush you. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
TCP On 14 December 2012 19:28, Robert Greenwalt rgreenw...@google.com wrote: Interesting. Maybe it is an android bug! What kind of traffic are you sending? tcp? udp? On Fri, Dec 14, 2012 at 11:23 AM, Goncalo Oliveira gonc...@minkan.netwrote: Got the radio logs...

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Goncalo Oliveira
Maybe it's some other service that is stalling? The SIM card uses a specific APN that only allows it to connect to our servers. Maybe GTalk service or fota? On 14 December 2012 19:32, Goncalo Oliveira gonc...@minkan.net wrote: TCP On 14 December 2012 19:28, Robert Greenwalt

Re: [android-developers] LocationManager minDistance settings question

2012-12-14 Thread Kristopher Micinski
FYI minDistance cannot be guaranteed to work the way you want: it may fire sooner (or perhaps later), it's more of a guide than a hard parameter. (In fact, before additional CTS testing, I believe it was sometimes disregarded entirely, because of a bug in some devices, this was for certain with

Re: [android-developers] How to sync development projects?

2012-12-14 Thread Latimerius
On Fri, Dec 14, 2012 at 8:02 PM, TreKing treking...@gmail.com wrote: On Fri, Dec 14, 2012 at 12:52 PM, Jungle Jim jjjungle...@gmail.comwrote: Does anyone know of a utility that will easily sync the updates to the files like the xml and src betwee the two PCs? I don't know about utility,

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
The data stall detector is watching for outgoing packets with no corresponding return. If it sees this for X (6 minute default) it tries a bunch of things and one of those steps is to tear down and rebuild the connection. That's what you're seeing. I believe UDP packets may get ignored, thus my

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-14 Thread Robert Greenwalt
oops.. I truncated a sentence.. updateDataStallInfo logs show what's going on when a stall is detected. In your log you can see that 21 packets have been sent since you last received a packet. On Fri, Dec 14, 2012 at 11:49 AM, Robert Greenwalt rgreenw...@google.comwrote: The data stall

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread Bram Stolk
It is a free app. -- 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread TreKing
On Fri, Dec 14, 2012 at 2:14 PM, Bram Stolk b.st...@gmail.com wrote: It is a free app. If you made changes to the app that would prevent it from being available to older devices (like you changed minSDK to 2.1), users with those devices stop getting updates, but the old version of the app is

[android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Blake B.
I have an Activity that is using the Theme.Dialog theme to present a dialog to the user. By default however, when the user touches outside of the dialog window, the touch event is passed to the views of the Activity in the background. For API level 11 devices and higher, I can use the

Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-12-14 Thread farble1670
sorry for the me too post, but me too. i'd really like to understand what's going on with the launcher vs. logo. On Monday, September 24, 2012 2:30:37 AM UTC-7, Martijn van Mechelen wrote: Does anyone know how to show a custom logo instead of the laucher app in the SearchView ? Thanks,

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 3:41 PM, Blake B. bbuckle...@yahoo.com wrote: I have an Activity that is using the Theme.Dialog theme to present a dialog to the user. By default however, when the user touches outside of the dialog window, the touch event is passed to the views of the Activity in the

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 3:54 PM, Mark Murphy mmur...@commonsware.com wrote: On Fri, Dec 14, 2012 at 3:41 PM, Blake B. bbuckle...@yahoo.com wrote: I have an Activity that is using the Theme.Dialog theme to present a dialog to the user. By default however, when the user touches outside of the

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Blake B.
Mark, thanks for the quick reply. Well, this may not be a problem on older APIs after all. I was testing on 4.x devices (Moto Xoom and Samsung GSIII) and touch events outside of the dialog (the Activity using Theme.Dialog) cause the dialog activity to be cancelled and the events do get passed

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 4:32 PM, Blake B. bbuckle...@yahoo.com wrote: Well, this may not be a problem on older APIs after all. I was testing on 4.x devices (Moto Xoom and Samsung GSIII) and touch events outside of the dialog (the Activity using Theme.Dialog) cause the dialog activity to be

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Blake B.
Odd. May be related to my use of a drawable.xml for the dialog window background: *AndroidManifest.xml entry:* activity android:name=.RulesActivity android:theme=@style/RoundedCornerDialog

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 4:59 PM, Blake B. bbuckle...@yahoo.com wrote: I'd be curious to know if you still don't see it. Maybe there is something else I'm doing. No, still no change -- taps outside the dialog-themed activity have no effect. android:windowCloseOnTouchOutside is having no effect,

[android-developers] tessellation shaders

2012-12-14 Thread bob
Anyone know if Android supports tessellation shaders? I can't find the constant for this. Something like GLES20.GL_FRAGMENT_SHADER is what I'm looking for. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] tessellation shaders

2012-12-14 Thread Romain Guy
Tesselation shaders do not exist in OpenGL ES 2.0. On Fri, Dec 14, 2012 at 2:25 PM, bob b...@coolfone.comze.com wrote: Anyone know if Android supports tessellation shaders? I can't find the constant for this. Something like GLES20.GL_FRAGMENT_SHADER is what I'm looking for. -- You

[android-developers] Re: vignette formula

2012-12-14 Thread bob
Here is the equation in a simpler form: https://lh4.googleusercontent.com/-HrQdYtJKcB4/UMurQ1IR8JI/AJs/fo69AX6pNwY/s1600/CodeCogsEqn.gif On Thursday, December 13, 2012 3:30:54 PM UTC-6, bob wrote: I noticed the vignette effect on Android looks really good. In the code, it boils

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Blake B.
Try this in your manifest. When I set them both to 8, the behavior goes away: uses-sdk android:minSdkVersion=8 android:targetSdkVersion=16 / Blake On Friday, December 14, 2012 4:19:07 PM UTC-6, Mark Murphy (a Commons Guy) wrote: On Fri, Dec 14, 2012 at 4:59 PM, Blake

Re: [android-developers] How to make Activity with Theme.Dialog modal?

2012-12-14 Thread Mark Murphy
On Fri, Dec 14, 2012 at 5:49 PM, Blake B. bbuckle...@yahoo.com wrote: Try this in your manifest. When I set them both to 8, the behavior goes away: uses-sdk android:minSdkVersion=8 android:targetSdkVersion=16 / Bingo. An android:targetSdkVersion of 11 or higher gives

[android-developers] Re: How to create new PreferenceFragment from XML

2012-12-14 Thread Jim Duda
On 12/13/2012 11:03 PM, Jim Duda wrote: I want to launch a new preference screen from my main preference screen. My main preference.xml is this: ?xml version=1.0 encoding=utf-8? PreferenceScreen xmlns:android=http://schemas.android.com/apk/res/android; PreferenceScreen

Re: [android-developers] Cipher.wrap() not working in Android 4.2?

2012-12-14 Thread Matthew Fleming
You can also try deriving the wrap key separately with something like: KeySpec keySpec = new PBEKeySpec(password.toCharArray(), salt, ITERATION_COUNT, KEY_LENGTH); SecretKeyFactory keyFactory = SecretKeyFactory .getInstance(PBKDF2WithHmacSHA1);

[android-developers] Get the selected word tagname in webview android

2012-12-14 Thread Ravi
i am working with webview in android here i am selecting a word and i want to get the selected with with its tag name and id and want to store in list and whenever i click on list it will search and move to that particular word , and if possible please tell me why the getSelection() of

[android-developers] In App Billing Error

2012-12-14 Thread Ajmer Singh
Hi All I am implementing In app billing(Version 3) in android app. 1. I had put the Signed apk on the Play Store. 2. Also had a managed Product Activated. 3. Using a Signed apk for testing on phone. 4. Managed Product is also showing up in my Query for the inventory. 5. Also

[android-developers] Re: In App Billing Error

2012-12-14 Thread Ajmer Singh
Here is the attached Screen Shot. On Sat, Dec 15, 2012 at 11:24 AM, Ajmer Singh ajmersing...@gmail.comwrote: Hi All I am implementing In app billing(Version 3) in android app. 1. I had put the Signed apk on the Play Store. 2. Also had a managed Product Activated. 3. Using a

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread Jacky Alciné
On Dec 14, 2012 3:36 PM, TreKing treking...@gmail.com wrote: On Fri, Dec 14, 2012 at 2:14 PM, Bram Stolk b.st...@gmail.com wrote: It is a free app. If you made changes to the app that would prevent it from being available to older devices (like you changed minSDK to 2.1), users with those

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread Bram Stolk
On Friday, December 14, 2012 11:24:35 PM UTC-8, Jacky Alciné wrote: On Dec 14, 2012 3:36 PM, TreKing treki...@gmail.com javascript: wrote: If you made changes to the app that would prevent it from being available to older devices (like you changed minSDK to 2.1), users with those

Re: [android-developers] Old versions still being downloaded from Google Play?

2012-12-14 Thread Bram Stolk
On Friday, December 14, 2012 11:34:46 PM UTC-8, Bram Stolk wrote: However, it is not the case. I have not changed the Manifest, since the original publication of the first release. See this screen grab: Yesterday, at least four different versions got installed by users, even though most

[android-developers] Re: can NFC read the RFID tag?

2012-12-14 Thread Michael Roland
Hi, i have wonder on web to find the answer can android-NFC can read RFID tag data or not That depends on what type of RFID tag you want to read. NFC devices can read a subset of RFID tags. br, Michael -- You received this message because you are subscribed to the Google Groups Android