[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread Terry
I don't think that *android:**minSdkVersion or **android:targetSdkVersion *has anything to do with it. Some of my apps which are now shown as incompatible *and *some which are still compatible, *both *only have the *android:**minSdkVersion *in the AndroidManifest file. Two of my apps which

Re: [android-developers] Sending and receving Xml file

2013-05-23 Thread Ibrahim Sada
Dear I Have Server and client when server needs the xml file he wil send the mesg so server needs to send him back the xml file and vise versa dear.. On 23 May 2013 05:21, Lew lewbl...@gmail.com wrote: TreKing wrote: Ibrahim Sada wrote: how to sends and receive xml file from android to

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread Fredrik Hyttnäs-Lenngren
Did you update the apps My Anchor Watch Free and My Anchor Watch Pro or did they just suddenly become incompatible? I'm looking towards adding the *android:targetSdkVersion *to one of my apps and release it and see if it works. This is exactly the issue Google had with the Hangout app not

[android-developers] Re: Can an image be embedded in an email body?

2013-05-23 Thread Avinhood
In android, you cant embed it as an inline image in a mail, but u can send it as an attachment . On Wednesday, October 27, 2010 3:06:58 PM UTC+5:30, Zarah wrote: Hi guys, Hope you can help me with my question. I am trying to embed an image in an email body. I am trying to use the

[android-developers] Re: Can an image be embedded in an email body?

2013-05-23 Thread Avinhood
Also, Gmail doesn't allow it due to safety reasons. Same is perhaps with others. i tried sending inline pics in mails but the no pics ever got sent. But it works fine when u send it as an attachment. it done in one of my apps. On Wednesday, October 27, 2010 3:06:58 PM UTC+5:30, Zarah wrote:

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread Fredrik Hyttnäs-Lenngren
I actually see now that when I browse the APK in the developer console to read the details about it, that it claims that it only supports 3-screen-layout, rather than 4 (xlarge missing). It should be possible to tinker with the manifest and upload a new apk, look at the details and verify what

[android-developers] Re: Some tablets marked as Incompatible in Play Store, but not in Developer Console

2013-05-23 Thread al
Funny, you seem to ask for help but don't want to try the suggestions insisting it's Googles problem and thinking they would solve it... Looking at your manifest, I think there may be problems regarding screen compatibility mode. See

[android-developers] Fragment state (and view) not restored when using ViewPager with nested fragments

2013-05-23 Thread Miha
Hi! I'm using a ViewPager to swipe between screens. One of the fragments is composed of two fragments, so the hierarchy looks like: ViewPager - FragmentStatePageAdapter - [Frag1, Frag2, Frag3], where Frag1's layout is composed of two FrameLayouts, to which two fragments are added like this:

[android-developers] Re: Fragment state (and view) not restored when using ViewPager with nested fragments

2013-05-23 Thread Streets Of Boston
When using fragments inside a fragment, you should use the fragment's ChildFragmentManager and not the (activity's) main FragmentManager. On Thursday, May 23, 2013 9:12:31 AM UTC-4, Miha wrote: Hi! I'm using a ViewPager to swipe between screens. One of the fragments is composed of two

[android-developers] Re: Can an image be embedded in an email body?

2013-05-23 Thread bob
Why not try something like this: * Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); * *emailIntent.setType(application/image);* *emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{b...@example.com}); * *

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread jjbunn
Hi Fredrik, I'm also having the same problem as OP. Nothing changed in my Manifest, or build procedure, but now Google Play marks my app as incompatible with e.g. the Nexus 10. It would be really nice if there was some way of asking Google directly if they have changed something, rather than

[android-developers] Re: Some tablets marked as Incompatible in Play Store, but not in Developer Console

2013-05-23 Thread jjbunn
On Wednesday, May 22, 2013 10:18:29 AM UTC-7, Fredrik Hyttnäs-Lenngren wrote: I got the feeling that this is the same issue that happened to the Google Hangout upgrade from Google Talk, where many users stated that it was unavailable on tablets for them, and Google fixed that. Now I want

[android-developers] Re: Some tablets marked as Incompatible in Play Store, but not in Developer Console

2013-05-23 Thread jjbunn
On Thursday, May 23, 2013 2:52:26 AM UTC-7, al wrote: Funny, you seem to ask for help but don't want to try the suggestions insisting it's Googles problem and thinking they would solve it... I'm not insisting on anything, I'm just trying to find out what has changed. Uninformed

[android-developers] Re: Intent Receiver for CALL END

2013-05-23 Thread amro alfares
There is no such thing as call end event or intent . On Friday, February 22, 2008 9:22:10 PM UTC+3, Dexter's Brain wrote: Hello all, Where do i find the Intent Receiver for a call end event. Dexter -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread Fredrik Hyttnäs-Lenngren
I added the *android:targetSdkVersion *with a value higher or equal to 11 to my manifest file and uploading it to the developer console. The apk details now highlights *xlarge * as a new feature. Going to publish the update and see if it REALLY did it or if it's just the Developer Console

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread Fredrik Hyttnäs-Lenngren
Confirmed! Adding *android:targetSdkVersion *with a value higher or equal to 11 fixed this issue. On Thursday, 23 May 2013 19:20:04 UTC+2, Fredrik Hyttnäs-Lenngren wrote: I added the *android:targetSdkVersion *with a value higher or equal to 11 to my manifest file and uploading it to the

[android-developers] Re: Some tablets marked as Incompatible in Play Store, but not in Developer Console

2013-05-23 Thread jtoolsdev
For one app I have two APKs, one for 10 tablets and another for everything else. To get that working properly I uploaded a draft hello world app testing two different manifest settings to see the supported devices. Now they have implemented BETA and ALPHA version APKs you can test that way

[android-developers] Re: Fragment state (and view) not restored when using ViewPager with nested fragments

2013-05-23 Thread Miha
Hi Streets Of Boston! On Thursday, May 23, 2013 4:16:22 PM UTC+2, Streets Of Boston wrote: When using fragments inside a fragment, you should use the fragment's ChildFragmentManager and not the (activity's) main FragmentManager. You are right. It's working when using child fragment manager,

[android-developers] Re: Soft keyboard in webview - no “next” button to tab between input fields

2013-05-23 Thread user123
Nobody with experience on this? Similar problem? Am Mittwoch, 22. Mai 2013 11:16:02 UTC+2 schrieb user123: My soft keyboad doesn't show this button when I focus webview input fields. Don't find anything about special settings to enable this - am I missing something? It doesn't appear in any

[android-developers] type=number on webview doesn't show numeric keyboard

2013-05-23 Thread user123
I have a webview with input fields with attribute type=number, according to docs this should open numeric keyboard. I just get qwerty like with the rest of fields. Does this need additional development effort? Or is it the device maybe? (I'm using Galaxy S2, Android 4.0)? -- -- You received

[android-developers] Bug - Textarea/textfield on webviews draws a white background with borders on android 4.0.3.

2013-05-23 Thread Caio Ricci
I recently came across this questionhttp://stackoverflow.com/q/16594151/779341 on stack overflow. Textfields and Textareas when focused get a white background with a blue border. The webview ignores whatever css is applied in the textarea and draws this white background on top of it. In

[android-developers] Re: Suddenly Lots of Apps in Play Store are no longer compatible my Galaxy Tablet

2013-05-23 Thread bob
Yes, setting *android:targetSdkVersion* to 11 worked for me. Thanks. On Thursday, May 23, 2013 2:23:29 PM UTC-5, Fredrik Hyttnäs-Lenngren wrote: Confirmed! Adding *android:targetSdkVersion *with a value higher or equal to 11 fixed this issue. On Thursday, 23 May 2013 19:20:04 UTC+2,

[android-developers] How to recognize the app was called as a result of a voice action?

2013-05-23 Thread Drunczyk
You can (since 4.1 I think) go to Voice Search and say Open app app_name_here and the app will be launched. How can I recognize in my app (in Application or Activity) that it was launched as a result of such action? I tried inspecting getCallingActivity(), getCallingPackage(), getExtras(),