[android-developers] Re: make a VideoView loop seamlessly?

2013-07-25 Thread Piren
not really possible within the current framework (at least up to 4.0, i haven't checked if something new was added that allows it). On Thursday, July 25, 2013 5:46:02 AM UTC+3, bob wrote: Is there any way to make a VideoView loop completely seamlessly? The video seems to stutter a bit. I

[android-developers] How to communicate with Google Server for Android App License Verification?

2013-07-25 Thread gauri
Hello, I want to verify whether the installed Android app (paid app which I will upload on Google Play) is purchased from Google Play. For this, I am using LVL provided by Google. But this verification is done from application end via Google Play app installed in phone. But I want do

[android-developers] DLNA implementation android

2013-07-25 Thread vani reddy
Hi All, How to implement DLNA for android??Is there any SDK or any tutorial?? -- Regards, Vani -- -- 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

Re: [android-developers] Re: Deposits From Google Wallet Weirdness

2013-07-25 Thread Felix Long
I also meet this issue. What's worse, My bank account wil charge 1% fee for per transcation. And Today Google Wallet withdraw it from my bank account, And My google play account is still negative. Sign. 2013/7/24 Nathan nathan.d.mel...@gmail.com On Tuesday, July 23, 2013 10:35:39 AM UTC-7,

Re: [android-developers] coming back to very first activity from inside tab group activity

2013-07-25 Thread Dalvinder Singh
You can launch the first activity again and your first activity can implement onNewInent(). Make sure while launching the first activity set flag activity clear top in the intent to finish the child activities. ... Singh Dalvinder On Thu, Jul 25, 2013 at 9:34 AM, Amit Mangal

Re: [android-developers] Re: make a VideoView loop seamlessly?

2013-07-25 Thread Dalvinder Singh
Are you playing video streaming into video view? If now then you can download it first and play. If streaming then video view will play it as per it's own wish. Video view supports limited number of formats till 2.3 and then 4.2 has support for some more formats. ... Singh Dalvinder On Thu, Jul

[android-developers] Help with AndroidAnnotations

2013-07-25 Thread Ricardo Cardoso
Please, help me in AndroidAnnotations. I have a problem in send my JSON to for the WebService. I created my interface Rest @Rest(rootUrl=http://192.168.0.142:3000;, converters={GsonHttpMessageConverter.class}) public interface UserRestClient { @Post(/api/v1/registrations/) User addUser(User

Re: [android-developers] Can't always get unique identifier

2013-07-25 Thread Dalvinder Singh
You can generate unique id by following this java code. http://www.javapractices.com/topic/TopicAction.do?Id=56 On Thu, Jul 25, 2013 at 3:11 AM, TreKing treking...@gmail.com wrote: On Wed, Jul 24, 2013 at 2:45 PM, Tobiah t...@tobiah.org wrote: So I was wondering whether there was some other

[android-developers] Required: .Net Developer/Lead at MI

2013-07-25 Thread Mark J
*Hi There, * * * *Please let me know if you have someone available for below mention requirement. Please send your resume to m...@tekenergyusa.com* * * *Position: .Net Developer/Lead* *Location: Grand Rapids,MI* *Duration: 6 Months* *Description:* - Qualified candidates will possess the

[android-developers] ShareActionProvider: How to overwrite sharing behaviour?

2013-07-25 Thread Ralph Bergmann | the4thFloor.eu
Hello, I can add a OnShareTargetSelectedListener to the ShareActionProvider to get notified if a share target is selected (boolean onShareTargetSelected (ShareActionProvider source, Intent intent)). public abstract boolean onShareTargetSelected (ShareActionProvider source, Intent intent)

Re: [android-developers] ShareActionProvider: How to overwrite sharing behaviour?

2013-07-25 Thread Ralph Bergmann | the4thFloor.eu
I forgot, the documentaion of the ShareActionProvider.setOnShareTargetSelectedListener method says: The listener can optionally decide to handle the selection and not rely on the default behavior which is to launch the activity. But how to do this? Ralph Am 25.07.13 18:20, schrieb Ralph

[android-developers] Required: Front End Developer at NYC

2013-07-25 Thread Mark J
Hi There, Please let me know if you have someone available for below mention requirement. Please send your resume to m...@tekenergyusa.com Position: Front End Developer Location: NYC Duration: long term *Required Skills:* - Experience developing with HTML (5), JavaScript, CSS(3) on a

[android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-25 Thread giles ian
please find below link for understanding the entire structure binary xml ans .arsc http://justanapplication.wordpress.com/android-internals/ My question is don't we have to move the bytes when we replace the string with bigger one, apart from changing the values you mentioned below On

[android-developers] Mirroring Nexus 4 Devices on a TV or Projector Display

2013-07-25 Thread John YS
Is there a simple / robust solution to mirror the screen of an unrooted Nexus 4 device on a projector / TV or other HDMI enabled device? The Android dev team that I am a part of holds weekly meetings to demo features. The emulator speeds often make it impractical to demo from a laptop. When

Re: [android-developers] coming back to very first activity from inside tab group activity

2013-07-25 Thread Amit Mangal
Hi Dalvinder Sigh Thanks for reply but didnt work for me i am having tab group activity and inside that i have started many activity the code for starting child activity is Intent intent = new Intent(Detail_Screen.this, SizeGuideActivity.class); intent.putExtra(URL, sizeGuideURL) ;

Re: [android-developers] coming back to very first activity from inside tab group activity

2013-07-25 Thread Amit Mangal
sorry the code is Intent previewMessage = new Intent(getParent(), Detail_Screen.class ); TabGroupActivity parentActivity = (TabGroupActivity)getParent(); parentActivity.startChildActivity(Detail_Screen, previewMessage); On Fri, Jul 26, 2013 at 12:49 AM,

Re: [android-developers] How to communicate with Google Server for Android App License Verification?

2013-07-25 Thread TreKing
On Thu, Jul 25, 2013 at 4:40 AM, gauri gauri.v...@gmail.com wrote: But I want do verification from my server which will directly communicate with Google Server. Why? - TreKing

Re: [android-developers] DLNA implementation android

2013-07-25 Thread TreKing
On Thu, Jul 25, 2013 at 4:44 AM, vani reddy vani.reddy.bl...@gmail.comwrote: How to implement DLNA for android? You may want to elaborate on what this is since some people may have no idea what you're talking about (I know I don't).

Re: [android-developers] Can't always get unique identifier

2013-07-25 Thread Tobiah
On 07/24/2013 02:41 PM, TreKing wrote: On Wed, Jul 24, 2013 at 2:45 PM, Tobiah t...@tobiah.org mailto:t...@tobiah.org wrote: So I was wondering whether there was some other unique identifier I could use, or failing that, would like to here suggestions on generating an identifier

[android-developers] Modifying an String Binary Resource File (*.arsc) of android

2013-07-25 Thread Giles Ian
Please check the question on the link: http://stackoverflow.com/q/17867452/2585419 -- -- 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] Camera preview freezes when I press HOME button

2013-07-25 Thread Linda Li
It would be easy to repeat the problem when I use an old device, which takes 1-2 secs to finish taking a picture. So when I press HOME button, while the device is taking picture, often times it freezes at the preview picture. I have added camera stopPreview and release in onPause(), which

Re: [android-developers] Can't always get unique identifier

2013-07-25 Thread TreKing
On Thu, Jul 25, 2013 at 2:56 PM, Tobiah t...@tobiah.org wrote: Given the correct permissions, am I guaranteed to be able to write to the filesystem on any device? There are no guarantees about anything once your app hits the wild. It's also not clear what you mean by the filesystem - you can

[android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Omer Gilad
.I am wondering how developers here are dealing with the fact that there are 1000's of devices out there, some of them running your applications in very broken ways .I keep running into these kind of issues again and again for the past 3 years, and to be honest, I'm fed up with it .I've decided

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Kostya Vasilyev
My solution: banging my head against the wall really hard. Fed up with it too. Maybe I picked the wrong line of work, and should become a garbage truck driver instead. It's not just crashes, it's things that some devices do, which break the UI in significant (to the users) ways. Nothing like

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Kristopher Micinski
This is basically what the CTS enforcement is attempting to rectify: but it's obviously not a perfect solution. Many small developers just accept this as fact, and handle only the API. Bigger developers are forced to deal with the real problems, and then it's a matter of extensive knowledge,

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Omer Gilad
I've found that even the biggest app developers like Skype, Gameloft, etc. have device issues, and they don't look in such a good shape. Just scan the reviews of any super-popular Android app, and you can see the same disease... This app doesn't even work, it sucks, and I PAID FOR IT! (from

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Kristopher Micinski
There are potential solutions, but in practice it's a constant battle. Certainly there are people that provide internet based test services that test your app on huge numbers of devices for a subscription based fee. Kris On Thu, Jul 25, 2013 at 8:12 PM, Omer Gilad omer.gi...@gmail.com wrote:

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Omer Gilad
Yes, I've encountered those services. This is still not a solution. It requires substantial money investment, and in a lot of cases it doesn't give you the ability to debug on those devices. Personal example - I'm developing a game, and we've found (after a friend checked it) that it has major

[android-developers] Android HAL version

2013-07-25 Thread Sam
Hi, I look into Android graphic document recently. I noticed that in the official website, it mentions the following... Jellybean MR1 introduces a new version of the HAL. We recommend that you start using version 1.1 of the hardware composer HAL as it will provide support for the newest

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Kristopher Micinski
Your last paragraph is *exactly* what the CTS is all about, but obviously if you don't work for google you can't mandate what goes in and what does not :-). I'm not recommending that these services are the solution to everyone's problems: but I do contend they get you farther than you would be

[android-developers] Re: Help with AndroidAnnotations

2013-07-25 Thread Ricardo Cardoso
Testing the console using CURL typing curl -v -H 'Content-Type: application/json' -H 'Accept: application/json' -X POSThttp://localhost:3000/api/v1/registrations -d {\user\:{\email\:\us...@example.com \,\firstname\:\anotheruser\,\password\:\secret1234\,\password_confirmation\:\secret1234\}} In

Re: [android-developers] Dealing with 1000's of different devices, each one with its own bugs

2013-07-25 Thread Omer Gilad
I agree that it's better than nothing. But, since it's a paid service that has nothing to do with the official SDK, it doesn't come in the SDK's favor at all. The problem appears in much more obvious parts of the SDK than the one I presented. I can give countless examples on demand and I'm