[android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread ko5tik
On 13 Mai, 19:17, Jay Gischer j...@gischer.net wrote: Let's say then, that someone comes out with a really nice way to handle some ui issues.   It's very likely that they spent quite a bit of time evolving those ideas, trying things and throwing away a lot of things that didn't work.  Sure,

[android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread ko5tik
On 13 Mai, 20:21, Greg Donald gdon...@gmail.com wrote: So when someone gets murdered with a gun, you blame the gun manufacturer? American civil law system allows you to do this. Not sure though there was some success When someone breaks into your house, you blame the window manufacturer

[android-developers] Re: Why is the android jar stubbed?

2010-05-14 Thread ko5tik
On 13 Mai, 19:29, Manfred Moser mosa...@gmail.com wrote: Hi! I am trying to figure out a way to run unit tests with some android provided classes (e.g. org.json). I would like to be able to run these outside the emulator for performance reasons. Check this out:

[android-developers] Re: App losing downloads/active installs data

2010-05-14 Thread mot12
Mine dropped a whopping 600 installations from one day to another on May 11th. As this is a paid app, this would translate in significantly fewer sales but I haven't seen any financial adjustment. Another free app with 3 times as many downloads has seen a drop of only 200 at the same time.

[android-developers] XML editor problem

2010-05-14 Thread SHameed
Hi I am trying to create an xml file under res/xml folder. When an xml file is newly created in the res/layout folder, the xml editor comes up with a neat GUI giving me options to choose layout, view, etc. However, when I create an xml file under res/xml folder, no such options are shown.

[android-developers] Re: Could not upload a new application

2010-05-14 Thread AndyDev
Thanks Treking, I did not try on Firefox, but worked on Chrome. On May 13, 3:53 am, TreKing treking...@gmail.com wrote: On Wed, May 12, 2010 at 5:10 PM, AndyDev myandroa...@gmail.com wrote: It always says  The upgraded apk's package name (com.testini) must be the same as the one it is

[android-developers] Re: Killing Activity / onPause() / isFinishing()

2010-05-14 Thread Lee
I have a service which starts an activity and waits for it to finish before proceeding. It's not reliable to check using the Android API if the activity is still running, so I'm using a static variable as a flag. If the activity is somehow exited before it can set the flag, I've got big

[android-developers] Animation in List, When contents are more

2010-05-14 Thread Nithin
Hi, Like in list, if contents are more, it will display the contents by animation, slowly will come and when the content is complete. It will stop for a moment and start again. Can anybody tell how to implement that. I tried with translate animation. But I can't stop for the moment after showing

[android-developers] Re: Icon issue - building with 2.1 sdk for 1.5 target

2010-05-14 Thread Federico Paolinelli
On 14 Mag, 00:06, Kostya Vasilyev kmans...@gmail.com wrote: HTC Hero will try to use resources from drawable-ldpi and scale them,  which is not what you want. To make it work correctly,  use just drawable for 320*480 resources, and drawable-ldpi-v4 and drawable-hdpi-v4 for the other ones.

[android-developers] Re: 1.5 Not finding image resource!

2010-05-14 Thread Guillermo 'YaW' Andrades
In 1.5 nodpi, hdpi, mdpi and ldpi doesn't exist. This terms were born in 1.6 so probably 1.5 doesn't recognize this folders. On 14 mayo, 07:36, Jeffrey jeffisagen...@gmail.com wrote: Slight update, it turns out taking the resource out of the nodpi folder caused it to revert to the drawable

[android-developers] content://sms/

2010-05-14 Thread Ralph Bergmann
Hi, I have a question about the content://sms/ provider. I use it in my app but can't find any official documentation about it :-( Is it to old? Or to new? Can I use it or is it deprecated and will removed in future? Ralph -- You received this message because you are subscribed to the

Re: [android-developers] Re: Getting and Sending Data From the Web (URLConnection via http)

2010-05-14 Thread an droid
I send back and forth on the same connection i.e. same port. All I do I say, connection.connect(); data_out=new DataOutputStream(connection.getOutputStream()); data_in=new DataInputStream(connection.getInputStream()); data_out.writeUTF(my data goes here); data_out.flush(); data_out.close();

[android-developers] Re: How Truncate Text With 3dots In Table Layout

2010-05-14 Thread Gulfam
I am still waiting any update On May 12, 2:35 pm, Gulfam gulfa...@gmail.com wrote: Hi all, I am truncating the text in simple TextView as under TextView     android:layout_width=fill_parent     android:layout_height=wrap_content     android:paddingTop=5dip    

Re: [android-developers] Re: Getting and Sending Data From the Web (URLConnection via http)

2010-05-14 Thread an droid
It is supposed to work in wlan, encryption is deactivated in order to make sure that it isn't the source of the problem. On Thu, May 13, 2010 at 3:33 PM, Jason LeBlanc jasonalebl...@gmail.comwrote: Are you inside your network or outside, using wi-fi or 3g? Do you have to authenticate the

Re: [android-developers] Re: Getting and Sending Data From the Web (URLConnection via http)

2010-05-14 Thread an droid
And about the protocol, there is one that is quite simple and is embedded in json objects. On Thu, May 13, 2010 at 3:33 PM, Jason LeBlanc jasonalebl...@gmail.comwrote: Are you inside your network or outside, using wi-fi or 3g? Do you have to authenticate the connection? Is there a

[android-developers] Set multiple form parameters

2010-05-14 Thread pawan nimje
I want to send a post request. This is what i have done- HttpClient client = new DefaultHttpClient(); HttpPost httpost = new HttpPost(POST_URL); StringEntity se = new StringEntity(j.toString()); httpost.setEntity(se); httpost.setHeader(Accept, application/json); httpost.setHeader(Content-type,

[android-developers] Key Injection INJECT_EVENTS

2010-05-14 Thread Sonic..
Hello, I am trying to develop an application to provide remote of my Android phone onto a desktop. Now I am able to send the pointer and key events to the listening thread, but when I try to use the WindowManager API's injectKeyEvent injectPointerEvent, then I receive an error for Permission

[android-developers] testing applications on non developer's-devices

2010-05-14 Thread Simone
Is there a way to do that? -- 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

[android-developers] Re: Debugging Android Test Cases (-e debug true)

2010-05-14 Thread plusminus
Hi Brett, thanks. Actually I tried that before but didn't realize that it showed the same behavior as from the CommandLine: The first one is a Run as -- Android JUnit Test the second Debug as -- Android JUnit Test: ### [10:50:18 - AndEngineTest] --

[android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread plusminus
Why should that not work? On 14 Mai, 10:56, Simone simone.russ...@gmail.com wrote: Is there a way to do that? -- 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

Re: [android-developers] Re: WCF complex types with android

2010-05-14 Thread Lamia Hannoun
Hi! Thx for ur answers. I tried to implement ur ideas (I've created my data classes and classes to convert object to jsonobject in the client side) But i still got the serialization error, maybe i forgot to tell u that i wrote my service with .net and i call it from android should i change my

[android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread Simone
I don't know, I don't have an android device yet but I need one to test my game before releasing it. I was wondering if I had to buy the android device with android 1.6 on it, or if I could just take any device I wanted. I don't know how the whole thing works, that's it ;) Thanks Simone On 14

[android-developers] How to implement the type-to-search UI like the Contacts App used

2010-05-14 Thread Kaka
Hi, all In the built-in Contacts app, if it's the view of contact list, when you type a keyborad, it will trigger a type-to-search. However, insteading of using the quick search box, it shows a floating and transparent dialog. How to implement this functionality? thx -- You received this

Re: [android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread Carlos Silva
Buy anyone you want :) On Fri, May 14, 2010 at 10:07, Simone simone.russ...@gmail.com wrote: I don't know, I don't have an android device yet but I need one to test my game before releasing it. I was wondering if I had to buy the android device with android 1.6 on it, or if I could just take

Re: [android-developers] How to implement the type-to-search UI like the Contacts App used

2010-05-14 Thread Carlos Silva
On a ListActivity, getListView().setTextFilterEnabled(true); On Fri, May 14, 2010 at 10:07, Kaka clipse.z...@gmail.com wrote: Hi, all In the built-in Contacts app, if it's the view of contact list, when you type a keyborad, it will trigger a type-to-search. However, insteading of using

[android-developers] accessing sqlite db

2010-05-14 Thread kamiseq
On 13 May, 19:51, Leigh McRae leigh.mc...@lonedwarfgames.com wrote: After a long battle I have some results that may help others. Got the game to rendering the emulator correctly by building the geometry using ByteBuffer instead of IntBuffer and ShortBuffer. I tried converting to the

[android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread Simone
LOL if I can do that I don't see the point of developer phones in the first place :D One last question: how do I do that? Do I just plug the phone in and tell Eclipse to upload the apk there instead of launching the emulator? Thanks again, Simone On 14 Mag, 11:09, Carlos Silva r3...@r3pek.org

Re: [android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread Carlos Silva
On Fri, May 14, 2010 at 10:24, Simone simone.russ...@gmail.com wrote: LOL if I can do that I don't see the point of developer phones in the first place :D ROM Customization One last question: how do I do that? Do I just plug the phone in and tell Eclipse to upload the apk there instead

[android-developers] Scoreloop Android Social Gaming SDK now open to all!

2010-05-14 Thread Junde (Scoreloop)
Dear Developers and Friends, I’m Junde from Scoreloop (www.Scoreloop.com) and we're extremely pleased to announce the public release of our Scoreloop Core Social SDK for Android! (and iPhone) Along with the release comes an updated developer area to more easily configure game settings, and a new

[android-developers] Re: testing applications on non developer's-devices

2010-05-14 Thread Simone
Thanks Carlos! -- 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

[android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread Ryszard Wiśniewski
On May 14, 6:38 am, Kumar Bibek coomar@gmail.com wrote: Good USE !!! that was funny...  lol Bad people think that every person is similar to them, so they just don't believe anyone could do some good thing. This is your problem. lololololol... -- You received this message because you are

[android-developers] Set multiple form parameters

2010-05-14 Thread pawan nimje
I want to send a post request. This is what i have done- HttpClient client = new DefaultHttpClient(); HttpPost httpost = new HttpPost(POST_URL); StringEntity se = new StringEntity(j.toString()); httpost.setEntity(se); httpost.setHeader(Accept, application/json); httpost.setHeader(Content-type,

[android-developers] Re: GLSurfaceView transparent bg within a ViewGroup

2010-05-14 Thread alevapi
I'm not 100% sure to reply to your actual question, but I managed to display the (bitmap-based) background of my activity behind a GLSurfaceView by adding a setZOrderOnTop call in the activity onCreate method: @Override public void onCreate(Bundle icicle) { super.onCreate(icicle);

[android-developers] How to popup menu on touch event.

2010-05-14 Thread Milind Bhusari
Hi, I am writing rtsp client using MediaPlayer class , i am showing menu using onCreateOptionsMenu() which popup menu on hardware menu button. Now i want menu popup on touch screen also , i can capture touch screen event but how to popup menu on that event. Thanks in Advance. -- You received

Re: [android-developers] Re: Maintaining the state when changing the orientation

2010-05-14 Thread Alok Kulkarni
Thanks a lot guys for the information, I found this article http://peacemoon.wordpress.com/2009/08/23/android-developing-orientation-aware-android-applications/ I need to save many objects so basically onSavedInstanceState is not of full use . So i am going forward with

Re: [android-developers] Why is the android jar stubbed?

2010-05-14 Thread Kostya Vasilyev
I would venture a guess that's because of having to provide the same services to native apps. Since native apps don't use Java, APIs have to be implemented at a lower level - or else would have to be duplicated for Java and native code. 13 мая, 2010 9:30 PM пользователь Manfred Moser

Re: [android-developers] Re: Killing Activity / onPause() / isFinishing()

2010-05-14 Thread Kostya Vasilyev
You can do it the other way around - have your activity do something upon successful completion. See startActivityForResult. 14 мая, 2010 11:27 AM пользователь Lee lee.wil...@googlemail.com написал: I have a service which starts an activity and waits for it to finish before proceeding. It's not

Re: [android-developers] Re: Icon issue - building with 2.1 sdk for 1.5 target

2010-05-14 Thread Kostya Vasilyev
Yes they do, it will work as a fallback case for those resources that don't have alternate versions (hdpi or ldpi). This also can be verified in the emulator. 14 мая, 2010 11:54 AM пользователь Federico Paolinelli fedep...@gmail.com написал: On 14 Mag, 00:06, Kostya Vasilyev kmans...@gmail.com

Re: [android-developers] Re: Icon issue - building with 2.1 sdk for 1.5 target

2010-05-14 Thread Federico Paolinelli
Thanks a lot for the answer Federico 2010/5/14 Kostya Vasilyev kmans...@gmail.com: Yes they do, it will work as a fallback case for those resources that don't have alternate versions (hdpi or ldpi). This also can be verified in the emulator. 14 мая, 2010 11:54 AM пользователь Federico

Re: [android-developers] content://sms/

2010-05-14 Thread Mark Murphy
Ralph Bergmann wrote: Hi, I have a question about the content://sms/ provider. I use it in my app but can't find any official documentation about it :-( Is it to old? Or to new? Can I use it or is it deprecated and will removed in future? It is not supported. It may not work on some

Re: [android-developers] Set multiple form parameters

2010-05-14 Thread Mark Murphy
pawan nimje wrote: I want to send a post request. This is what i have done- HttpClient client = new DefaultHttpClient(); HttpPost httpost = new HttpPost(POST_URL); StringEntity se = new StringEntity(j.toString()); httpost.setEntity(se); httpost.setHeader(Accept, application/json);

[android-developers] Re: Killing Activity / onPause() / isFinishing()

2010-05-14 Thread Lee
The activity is started from a service: you can't use startActivityForResult. Previously I had the service checking via the ActivityManager whether the activity was still running but it's not reliable enough. Lee On May 14, 11:04 am, Kostya Vasilyev kmans...@gmail.com wrote: You can do it the

Re: [android-developers] Re: Killing Activity / onPause() / isFinishing()

2010-05-14 Thread Mark Murphy
Lee wrote: I have a service which starts an activity and waits for it to finish before proceeding. Please don't do that. If you explain what it is you are trying to accomplish here, perhaps we can give you ideas on how to solve your business problem, rather than helping you do something you

[android-developers] Animation using several drawables

2010-05-14 Thread Michael
Hi, I am a little stuck with exactly what approach to take with an animation problem. I have several bitmap resource drawables, a face with no eyes or mouth, a mouth and eyes. I want to be able to build these drawables up to make the face and then use tween animations on them to animated the

Re: [android-developers] How to scan Access Points and select strongest signal?

2010-05-14 Thread Donal Rafferty
Thanks for that Kostya I have come across a bit of a problem though. After a scan there are 11 AP's found and all 11 show up in the list in the Wifi settings on the device. But when I use

[android-developers] Increasing the priority of an activity

2010-05-14 Thread Soumya
Hi, Let me say this with an example. Lets say, my activity A is being executed, meanwhile another activity B gets launched. By default, activity B will come on top of activity A. My requirement is that I want to keep A on top. Only activities such as phone, lock screen and home screen can come on

Re: [android-developers] Increasing the priority of an activity

2010-05-14 Thread Carlos Silva
On Fri, May 14, 2010 at 12:18, Soumya soumyakanti...@gmail.com wrote: Hi, Let me say this with an example. Lets say, my activity A is being executed, meanwhile another activity B gets launched. By default, activity B will come on top of activity A. My requirement is that I want to keep A on

Re: [android-developers] Increasing the priority of an activity

2010-05-14 Thread Mark Murphy
Soumya wrote: Let me say this with an example. Lets say, my activity A is being executed, meanwhile another activity B gets launched. By default, activity B will come on top of activity A. My requirement is that I want to keep A on top. Only activities such as phone, lock screen and home

[android-developers] Re: Increasing the priority of an activity

2010-05-14 Thread Soumya
Hi Murphy, Any ideas on how to implement it. Do I need to make any changes in the framework. I found some API like getWindow().SetFlags where I can set to to like Keyguard, but that is even not working. Even in showdown.java file there is a code snippet where they have made a progress dialog with

Re: [android-developers] Re: Increasing the priority of an activity

2010-05-14 Thread Mark Murphy
Soumya wrote: I require it as I am making a lock screen which will co-exist along with the other type of lock screens. If you are making your own device, you are welcome to seek advice on modifying the Android source code on [android-porting]. -- Mark Murphy (a Commons Guy)

[android-developers] Re: Increasing the priority of an activity

2010-05-14 Thread Soumya
ok, Thank you Murphy On May 14, 4:40 pm, Mark Murphy mmur...@commonsware.com wrote: Soumya wrote: I require it as I am making a lock screen which will co-exist along with the other type of lock screens. If you are making your own device, you are welcome to seek advice on modifying the

[android-developers] PKCS#10, BouncyCastle

2010-05-14 Thread Jiss
Hello everyone ! I would like to generate a request of certification (PKCS#10) using Android. This feature is available in BouncyCastle and I know that Android uses some class of it, but unfortunately there is no longer this feature. Do you know if it is possible to import bouncycastle .jar to

[android-developers] Box2D on Android via JNI

2010-05-14 Thread Mario Zechner
Hi there, i thought i'd post a link here for future reference. I wrote a complete JNI bridge to the latest Box2D release for Android. All relevant classes are wrapped via lightweight Java counter parts, all listeners except the destroy listener are exposed, all joints are support and so on and so

Re: [android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread Greg Donald
On Fri, May 14, 2010 at 1:39 AM, ko5tik kpriblo...@yahoo.com wrote: It depends  on promisses of window manufacturer.  It this was shatterproof window designed to stand bazooka then I will blame manufacturer Exactly.. Java is compiled to bytecode with zero promises of being protected against

[android-developers] How to use TCP transport in android rtsp client.

2010-05-14 Thread Milind Bhusari
Hi, I am writing a RTSP client in Android for streaming video. I am using MediaPlayer class in client , On server side i am using Darwin streaming server to stream video. For connecting to rtsp server android client sends RTP/AVP/UDP as transport option in SETUP command so UDP is used for

[android-developers] Re: Set the Live Wallpaper programmatically?

2010-05-14 Thread Nik Bhattacharya
In my opinion, the Live Wallpaper is an AWESOME new addition to Android. We can already set the background image via an application. Why not the Live Wallpaper? The most simple usecase is a user sees the live wallpaper on the market, downloads it and then wants to run it. The app associated with

[android-developers] Re: OpenCore / Possible Issue w/ Streaming MP3 over HTTP?

2010-05-14 Thread rktb
Here is the commit for the fix for high bitrate streaming issue: http://android.git.kernel.org/?p=platform/external/opencore.git;a=commitdiff;h=9d144af75a60c4cf66e340bc9147e27e3d32a7b9 On May 13, 11:14 am, SDS sstrea...@gmail.com wrote: Ravi, I'm not seeing your commit for the timing fix on

[android-developers] Re: OpenCore / Possible Issue w/ Streaming MP3 over HTTP?

2010-05-14 Thread rktb
I can't think of any right now. Unfortunately, I can't spend a lot of time on an older codebase, especially if the problem has been fixed on the latest. -Ravi On May 13, 9:47 am, SDS sstrea...@gmail.com wrote: Hi Ravi, Regarding the missing Content-Length header, this was on different

[android-developers] Re: XML editor problem

2010-05-14 Thread Brion Emde
You can probably find an XML editor somewhere. I use the Eclipse editor. The platform has no way of knowing what you are going to put into an arbitrary XML file, so it cannot help you out in the same way that it does for layouts. On May 14, 12:57 am, SHameed shaahulham...@gmail.com wrote: Hi  

Re: [android-developers] XML editor problem

2010-05-14 Thread Mark Murphy
SHameed wrote: Hi I am trying to create an xml file under res/xml folder. When an xml file is newly created in the res/layout folder, the xml editor comes up with a neat GUI giving me options to choose layout, view, etc. However, when I create an xml file under res/xml folder, no

Re: [android-developers] How to scan Access Points and select strongest signal?

2010-05-14 Thread Kostya Vasilyev
Donal, I think you are not matching the SSIDs of known and live networks correctly. The SSIDs in the known list are enclosed in double quotes: http://developer.android.com/reference/android/net/wifi/WifiConfiguration.html#SSID The SSIDs in the live scan result list are as is, without the

[android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread Ryszard Wiśniewski
On May 14, 2:10 pm, Greg Donald gdon...@gmail.com wrote: Exactly..  Java is compiled to bytecode with zero promises of being protected against decompilation, and as I already mentioned in this thread, it also fully supports reflection. Yeah, I am terrified of all these Eclipse, Netbeans and

Re: [android-developers] implementing predictions for IME?

2010-05-14 Thread TreKing
On Fri, May 14, 2010 at 12:05 AM, android-developer mdatik.k...@gmail.comwrote: I have a new keyboard layout for which I need to provide prediction/sugeestion functionality Where have you looked so far? What have you tried so far? Where, specifically, are you stuck?

Re: [android-developers] Re: App losing downloads/active installs data

2010-05-14 Thread TreKing
On Fri, May 14, 2010 at 1:49 AM, mot12 martin.hu...@gmail.com wrote: Somebody from Google who can shed some light on this? You're new around here, aren't you? =P - TreKing - Chicago transit

[android-developers] Removing Calendar package

2010-05-14 Thread Raghu D K
Hi All, I am working on Android Eclair build and I want to remove the Calendar package from my build, not only the Calendar.apk but also any other service that provides calendar related functions. How can I do this? Warm Regards, Raghu -- You received this message because you are subscribed to

Re: [android-developers] How to scan Access Points and select strongest signal?

2010-05-14 Thread Donal Rafferty
Thanks again Kostya, I have downloaded your app and had a look, its very nice, the widget will come in very handy for my testing! I was aware of the known versus as is quotes. My problem is for my app to work I need it to scan for AP's when the device is on the move. So it should scan, find a

Re: [android-developers] Re: App losing downloads/active installs data

2010-05-14 Thread Alberto Portela
Hahaha it's just very disappointing that they keep silent on the matter. My stats are almost back to normal :-), and yes Im sort of new as I only have one app on the market (Emergency QuickDial). On 14 May 2010 14:22, TreKing treking...@gmail.com wrote: On Fri, May 14, 2010 at 1:49 AM, mot12

[android-developers] Android Dev Phone with 2.x?

2010-05-14 Thread Tomáš Hubálek
Hello, I'm owner of ADP1 (1.6 device) but majority of my users have 2.x version. Does anybody have any idea whether there will be 2.x developer devices? Currently there is just something like HTC Hero available that is still IMHO 1.x device. Also I have one suggestion regarding pricing: Android

[android-developers] Re: new interpreter for Android

2010-05-14 Thread Tomáš Hubálek
I'm also not sure what is the advantage of such a language. I believe that Eclipse Development with full blown Java is more convenient. Tom On 12 kvě, 23:36, Andrei gml...@gmail.com wrote: I am writing pure Java interpreter for Android The language itself looks similar to JavaScript The goal

[android-developers] Re: To copy protect or not to copy protect!? That is the question!

2010-05-14 Thread Tomáš Hubálek
That is some sweet information! I also hope the Android Market does something about it!  Now I'm tracking the numbers using Motally to I think that Google HAVE to DO SOMETHING. From my point of view it would be good enough to provide API to be able programatically verify whether user uses legal

[android-developers] Re: Set multiple form parameters

2010-05-14 Thread inbrain
Doesn't setParams(HttpParams params) method suit you? It is declared in HttpMessage which is one of interfaces implemented by HttpPost On 14 May, 12:40, pawan nimje pawanni...@gmail.com wrote: I want to send a post request. This is what i have done- HttpClient client = new DefaultHttpClient();

[android-developers] Re: samsung app store

2010-05-14 Thread schwiz
I don't know what unicast is you will have to explain it to me. The email came from nakhyun54@samsung.com here is the bulk of the email. The real fishy thing is they don't even have the name of my application right... Dear Wolframalpha developer, My name is Nakhyun Kim and I work for

Re: [android-developers] Re: method.getAnnotation( ) or method.isAnnotationPresent( ) not working

2010-05-14 Thread Droid Wonders
Any one knows that annotation are even supported in android ??? I see that I can add annotations, but can not retrieve them using class methods. On Wed, May 12, 2010 at 5:16 PM, Nehal droidwond...@gmail.com wrote: Just wanted to add that I get false for following line even if I have annotation

[android-developers] Android Blur Background

2010-05-14 Thread mike
hi guys, i have two activities. i want to make the first activity blur and on top of that i want to display a text which is in the activity two. just like what they have done it in the sample. but when i tried it it didn't work out for me. this is what i have done from the first activity

Re: [android-developers] Android Blur Background

2010-05-14 Thread TreKing
On Fri, May 14, 2010 at 10:37 AM, mike hasitharand...@gmail.com wrote: i want to make the first activity blur and on top of that i want to display a text which is in the activity two. just like what they have done it in the sample. I'm going to guess that your top activity has to have a

[android-developers] How much time per task?

2010-05-14 Thread BobG
Lets say I have 3 cpu bound activities running, and not much sensor/io/ radio activity. Just for puposes of this example. My model of how linux works is: the clock ticks every ms. All ready tasks are aged one tick. Some might become ready to run because they have 'aged' while waiting. Each running

Re: [android-developers] How to scan Access Points and select strongest signal?

2010-05-14 Thread Kostya Vasilyev
Donald, Yes, your algorithm is correct. Only add network from the scan list to the known list if not already there. As for scanning on the move, take a look at wake locks. 14 мая, 2010 5:35 PM пользователь Donal Rafferty draf...@gmail.com написал: Thanks again Kostya, I have downloaded your

[android-developers] Re: MediaPlayer pause on loop

2010-05-14 Thread Jason
Awesome. Thanks for the tip! On May 12, 7:49 pm, mot12 martin.hu...@gmail.com wrote: It's a problem with the mp3 decoding. The bad news: You can't do it with mp3. The good news: Convert to ogg and it works like a charm. Martin mobitobi (Gentle Alarm, Sleep Now!)www.mobitobi.com -- You

Re: [android-developers] Re: Finally published my first app - thanks to this group!

2010-05-14 Thread Paul Gee
Thanks Wayne, In fact I did exactly as you suggest as despite ALL my testing and beta testing with a group of volunteers on various devices, I found that when I released PuzzleQube I very quickly got crash reports from my program showing a problem on the Droid (only the Droid and not on the Nexus

[android-developers] Installing apps on Zoom 2

2010-05-14 Thread Abhi
HI I have the TI Zoom 2 kit that I want to install some of my applications to. But I don't know how to make it run on my Windows environment with Eclipse and the Android SDK, just like how we develop on any other Android phone/device. Does anyone here know how to do this? Or if someone can point

[android-developers] Re: AudioRecord: onPeriodicNotification and onMarkerReached are not called

2010-05-14 Thread pac
Has anyone gotten this working? -- 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] Drawable resource XML alias

2010-05-14 Thread String
Does anyone know the syntax for an XML file for a single bitmap drawable resource? What I'm looking to do is alias a drawable in my app. I have need for the same image with 2 different names, and rather than including the image twice in my res/drawable directory, I'd rather alias it (it's fairly

Re: [android-developers] Re: Finally published my first app - thanks to this group!

2010-05-14 Thread Kostya Vasilyev
The Droid is a weird one... 14 мая, 2010 8:14 PM пользователь Paul Gee paul.gee...@googlemail.com написал: Thanks Wayne, In fact I did exactly as you suggest as despite ALL my testing and beta testing with a group of volunteers on various devices, I found that when I released PuzzleQube I very

[android-developers] WebView Horizontal Scroll Not Working

2010-05-14 Thread Tommy
Hey everyone, I have a WebView that displays a complex graph. My problem is that the webview will only scroll a few pixels instead of scroll horizontal all the way so I can view the entire graph. How can I make it so my WebView is able to be scrolled all the way to the right/left to view the

Re: [android-developers] Drawable resource XML alias

2010-05-14 Thread Mark Murphy
String wrote: Does anyone know the syntax for an XML file for a single bitmap drawable resource? What I'm looking to do is alias a drawable in my app. I have need for the same image with 2 different names, and rather than including the image twice in my res/drawable directory, I'd rather

RE: [android-developers] WebView Horizontal Scroll Not Working

2010-05-14 Thread Tommy
Ah I fixed it. It was a simple ID10T error :) -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Tommy Sent: Friday, May 14, 2010 1:04 PM To: Android Developers Subject: [android-developers] WebView Horizontal Scroll Not

[android-developers] ScrollView with EditText - Scrolling in EditText Issue

2010-05-14 Thread roundhill
HI there, Our app (WordPress for Android) uses a ScrollView for the new blog post view. The issue is that if a user writes a lengthy blog post in the EditText, they are unable to scroll inside of the EditText because the ScrollView seems to be taking over the scrolling action, even when you are

Re: [android-developers] Re: Maintaining the state when changing the orientation

2010-05-14 Thread Alok Kulkarni
Ok , i have succeeded in many parts of the app supporting the landscape mode, i am now facing a major problem in case of Handlers. I have many handlers for updating the UI . But they dont seem to work when i change Orientation.They behave a bit werdly actually.For example, i have a Play button

[android-developers] Sound question

2010-05-14 Thread Justin
Hopefully I can get some advice here on this. I also think that this may have been asked before, but I want to get some new perspective...Anyway For applications that work like musical keyboards (think simple 8-16 notes for now), what sound tools are best for this type of application. I'm

[android-developers] Creation of Activities from Tabhost

2010-05-14 Thread Patrick
Hallo! I have a TabActivity. Within this activity (in the onCreate method) I create a TabHost and a TabSpec and do a tabSpectSearch.setContent(intenSearch); The Indent is created using intentSearch = new Intent().setClass(this, MyActivity.class); As far as I already found out the class MyActivity

[android-developers] Why does Android 2.1 kill my service?

2010-05-14 Thread mort
I've got a music player service which should keep on playing in background. So I did: - add android:process=:remote in the manifest - return START_STICKY in onStartCommand (because MediaPlayer does the work until the track is finished) - invoke startForeground when Activity becomes invisible

[android-developers] Re: OpenCore / Possible Issue w/ Streaming MP3 over HTTP?

2010-05-14 Thread SDS
Understood Ravi, was just answering your questions from earlier. We'll seek an alternative solutions for streaming MP3's over HTTP that doesn't involve MediaPlayer or OpenCore engine... Thanks again for your attention to this matter. On May 14, 8:32 am, rktb yend...@pv.com wrote: I can't think

Re: [android-developers] Why does Android 2.1 kill my service?

2010-05-14 Thread Mark Murphy
mort wrote: I've got a music player service which should keep on playing in background. So I did: - add android:process=:remote in the manifest You should not need that, and it may well be the source of your difficulty. -- Mark Murphy (a Commons Guy) http://commonsware.com |

[android-developers] Re: Why does Android 2.1 kill my service?

2010-05-14 Thread mort
Sorry, I've got the reason... I had a timing problem with the HEADSET_PLUG Intent, which is sent when registered, and in my case caused a stopSelf() because the service thought it wasn't required (bad value in internal status flag). The strange behaviour then happened, because the service right

[android-developers] Re: APKTool - decoding our apps

2010-05-14 Thread Bob Kerns
This whole thread is making me see red, thanks to people spouting off without knowing what they're talking about. I guess it's just an emotional topic. I was going to make the same point as you about Reengineering itself is an illegal use. But since you beat me to it, I'll point out that there

[android-developers] Re: Change Hue on Image

2010-05-14 Thread pkc
Just wanted to share my solution. I got this idea from a flash script. I have a slider that adjust the value, where is ranges from 0 to 360. public void adjustHue(ColorMatrix cm, float value) { value = cleanValue(value,180f)/180f*(float)Math.PI;

Re: [android-developers] Selecting picasa photos in gallery

2010-05-14 Thread Thiago Rafael Becker
Any idea on how to solve this? Thnaks in advance. -- Thiago On Tue, Apr 6, 2010 at 10:47 AM, Krizai kri...@gmail.com wrote: I'm starting gallery from my app to select photo. Everything is fine until i select photo from picasa. Result in onActivityResult is just an empty string . Here is my

[android-developers] PNG Decoder loading RGB_565 on 24 bit PNGs with alpha - then settings bitmap.config to null?? wtf

2010-05-14 Thread Robert Green
I've been dealing with this issue for some time but it's really causing me problems today. Here's what I'm doing: BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inScaled = false; return BitmapFactory.decodeResource(context.getResources(), resourceId, opts); And on many PNGs

Re: [android-developers] PNG Decoder loading RGB_565 on 24 bit PNGs with alpha - then settings bitmap.config to null?? wtf

2010-05-14 Thread Romain Guy
aapt will optimize PNGs already, no need to do it in Photoshop. That also means, for instance, that if your PNG does not have any transparent pixel, aapt will detect that and turn your PNG into an opaque PNG, hence giving you a 565 image. There are other optimizations too (for instance, if you

[android-developers] Re: PNG Decoder loading RGB_565 on 24 bit PNGs with alpha - then settings bitmap.config to null?? wtf

2010-05-14 Thread Robert Green
Well something isn't working correctly and I don't think it's aapt, unless aapt is somehow causing the PNG to lose some information that the decoder uses. I'm using PNGs encoded by photoshop with obvious transparency (some with 100% in areas, others with partially transparent pixels) and many of

  1   2   >