Re: [android-developers] J2ME custom font

2014-10-14 Thread SIVAKUMAR J
You can try lwuit also -- 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 Fo

[android-developers] Re: getSkuDetails returns BILLING_RESPONSE_RESULT_ERROR

2014-10-14 Thread lbendlin
Anything to do with the recent DNS outage on 8.8.8.8 ? On Monday, October 13, 2014 12:41:07 PM UTC-4, Nathan wrote: > > User reports that he cannot sync up his in app purchases. > > This is not in a sandbox or in testing. This is in the real world. > Previously purchased items cannot be synched.

[android-developers] Re: Share video and save video to Gallery

2014-10-14 Thread sweety fx
Any suggestions? On Monday, October 13, 2014 11:07:11 AM UTC-4, sweety fx wrote: > > I have video url, from which I parse to to get the uri. I try to pass the > uri in share, but I don't see the video being shared. > > Uri uri = Uri.parse(url);Intent sharingIntent = new Intent( >

Re: [android-developers] Re: getSkuDetails returns BILLING_RESPONSE_RESULT_ERROR

2014-10-14 Thread Nathan Mellor
I don’t know enough about the DNS Outage or Google’s usage of that range to know if it makes a difference. If so, is there anything I or the customer can do about it? Nathan On Tue, Oct 14, 2014 at 5:23 AM, lbendlin wrote: > Anything to do with the recent DNS outage on 8.8.8.8 ? > > > On Monda

[android-developers] insane ScrollView problems

2014-10-14 Thread Jim Graham
I give up...I've gone through examples (including using my own past code that worked), and no matter what I try, using ScrollView causes a force close, claiming that I haven't provided a layout_width parameter (I have). In fact, I checked EVERYTHING in the layout file, and nothing is missing layou

Re: [android-developers] insane ScrollView problems

2014-10-14 Thread Jim Graham
On Wed, Oct 15, 2014 at 11:31:34AM +0530, Anurag Purwar wrote: > change http://schemas.android.com/apk/res/android"; > > to xmlns:android="http://schemas.android.com/apk/res/android"; I had it that way beforehere's the error from Eclipse: error: Error parsing XML: unbound prefix /AndGTbr

[android-developers] Re: insane ScrollView problems

2014-10-14 Thread Nobu Games
I'm not sure if that's just a copy & paste error, but you close the LinearLayout tag prematurely. So all its attributes including layout_width just count as "unexpected text": http://schemas.android.com/apk/res/android"; > *

Re: [android-developers] insane ScrollView problems

2014-10-14 Thread gjs
Hi, Hmm, is your ScrollView height correct ? I usually use something like - - and specify the scrollbars attribute as well. Regards On Wednesday, October 15, 2014 5:23:19 PM UTC+11, Spooky wrote: > > On Wed, Oct 15, 2014 at 11:31:34AM +0530, Anurag Purwar wrote: > > change http://schemas.and

Re: [android-developers] insane ScrollView problems

2014-10-14 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:31:54PM -0700, gjs wrote: > Hi, > > Hmm, is your ScrollView height correct ? I usually use something like - > > > android:layout_width="fill_parent" > > android:layout_height="wrap_content" That's what I had, before trying a working example I found. It's back to wr

[android-developers] Re: insane ScrollView problems

2014-10-14 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:27:11PM -0700, Nobu Games wrote: > I'm not sure if that's just a copy & paste error, but you close the > LinearLayout tag prematurely. So all its attributes including layout_width > just count as "unexpected text": > > http://schemas.android.com/apk/res/android"; > >