[android-developers] Re: InApp Billing same account multiple devices

2011-05-23 Thread keianhzo
my code could confirm a purchase and not activate it for the user, the Market team obviously trusts their logs, and that's where it is at for me now. If you have specific order numbers, you can post them in the bug report. -- Kostya 19.05.2011 13:55, keianhzo пишет: Anyone

[android-developers] Re: InApp Billing same account multiple devices

2011-05-19 Thread keianhzo
Anyone on this?. I think is quite an important subject. The billing system is failing in such a basic thing as sending notifications. Maybe I should place an issue in the marketbilling issues list. On May 16, 1:19 pm, keianhzo imanol.mar...@gmail.com wrote: Hi, We are testingInAppbilling

[android-developers] InApp Billing same account multiple devices

2011-05-16 Thread keianhzo
Hi, We are testing InApp billing to include in one of our apps to buy the ads removal. At the moment the main issue we have is that if you have two devices with the same account and the app installed you are supposed to get all the InApp billing notifications in both the devices but is not

[android-developers] Re: Uploading large files - using setChunkedStreamingMode

2010-04-27 Thread keianhzo
Hi, I had big headaches with this issue too, and finally opted for using sockets to upload big files otherwise any way tried always led me to the OutOfMemoryException or BufferOverflowException. So here is the code that works for me. All the meat is in the send() method, but I post the whole

[android-developers] Re: Smaller tabs, such as the Facebook official app

2010-02-15 Thread keianhzo
It works perfectly for me in a rooted HTC Hero (1.5) but it doesn't work in a non-rooted HTC Tattoo (1.6), so so I deduce that for some reason you need to have a rooted phone for the hierarchyviewer to work. On 15 feb, 03:52, Mark Murphy mmur...@commonsware.com wrote: Mark Murphy wrote: I just

[android-developers] Re: Apps not appearing in market place on certain phones

2010-02-15 Thread keianhzo
Another cause of an App not appearing for some devices can be that the developer hasn't adapted the App for that device. From the 1.6 on, you can explicitly configure the App descriptor for an App to work only in certain devices with determined min and max Android SDK versions, screen sizes and

[android-developers] Re: How can i fill an outlined font?

2009-12-08 Thread keianhzo
assets directory. We're thinking about updating it to be more friendly with the Eclipse layout editor, so let us know if you are using it, as that may be the incentive for us to get on with it. On Dec 7, 8:59 am, keianhzo imanol.mar...@gmail.com wrote: Hi everybody, I'm trying to use

[android-developers] Re: How can i fill an outlined font?

2009-12-08 Thread keianhzo
assets directory. We're thinking about updating it to be more friendly with the Eclipse layout editor, so let us know if you are using it, as that may be the incentive for us to get on with it. On Dec 7, 8:59 am, keianhzo imanol.mar...@gmail.com wrote: Hi everybody, I'm trying to use

[android-developers] Re: How can i fill an outlined font?

2009-12-08 Thread keianhzo
assets directory. We're thinking about updating it to be more friendly with the Eclipse layout editor, so let us know if you are using it, as that may be the incentive for us to get on with it. On Dec 7, 8:59 am, keianhzo imanol.mar...@gmail.com wrote: Hi everybody, I'm trying to use

[android-developers] How can i fill an outlined font?

2009-12-07 Thread keianhzo
Hi everybody, I'm trying to use a Helvetica outlined ttf and i want the background of the font to be yellow and the outline part be black. I'm doing it loading the font in a TypeFace from assets and applying it to a TextView in the following way: mTextViewMessage.setTypeface(myTypeFace);

[android-developers] Problem applying animation on a View

2009-11-02 Thread keianhzo
Hi all, I've a custom ViewGroup with several custom children views and I'm trying to apply an AlphaAnimation on the views with no luck. If I apply the animation on the ViewGroup it's correctly applied and I can see all the children views fading in, but if I try to apply it directly to the views,

[android-developers] Problem starting animation on a custom View

2009-11-02 Thread keianhzo
Hi everybody, I'm having problems trying to start an animation on a custom View that belongs to a custom ViewGroup. If i start the animation on the parent ViewGroup using: viewgroup.startAnimation(AnimationUtils.loadAnimation(this, R.anim.fade)); it works fine and I can see the children views