[android-developers] Re: Exists a svg library that works fine for android?

2011-09-15 Thread Trev16v
Do you have an example of a complex SVG file that you need to render that you can email to me please? I have written my own SVG library and I am curious to see if it will render your file. Trev On Sep 14, 12:07 pm, saex elpablos...@gmail.com wrote: That library works only with very simple svg

[android-developers] Re: Horizontal progress bar in Dynamic list view

2011-09-15 Thread ganesh
Exactly I am doing the same thing. As soon as new Progressbar object get created due to list refresh, I am doing the following steps progressbarobject.setMax(player.getduartion()); progressbarObject.setprogress(player.getcurrentposition()); = in a loop and separate worker thread But, the problem

Re: [android-developers] Re: How make Bluetooth constantly discoverable

2011-09-15 Thread Kristopher Micinski
On Thu, Sep 15, 2011 at 12:24 AM, Zsolt Vasvari zvasv...@gmail.com wrote: How does something like Bump work? Based on IP magic and a very good algorithm determining bump times and mapping them to locations, which they can prove gives a probabilistic bound on the number of errors they can make

Re: [android-developers] help on dalvik VM.

2011-09-15 Thread Kristopher Micinski
On Wed, Sep 14, 2011 at 9:59 PM, Pratik Prajapati pratik.prajap...@gmail.com wrote: Dear All, There are a lot of classes in my (big) APK which are used no where(some test code is part of the APK with the actual service). Will dalvik VM keep these classes in memory at runtime? ( many classes

Re: [android-developers] help on dalvik VM.

2011-09-15 Thread Kristopher Micinski
Should have mentioned, there is a good explanation of the design methodologies from an early talk on Google IO (by the creator, who also has quite a few interesting things to say from a systems perspective). You can find it on youtube, google dalvik and it will probably be the first thing popping

Re: [android-developers] Android development Online course at UCI

2011-09-15 Thread Kristopher Micinski
On Wed, Sep 14, 2011 at 4:48 PM, Nency Robert angelgirl4...@gmail.com wrote: HI All, I am new to android development. As I am still in learning phase, I have searched so many courses and materials on google for it. Online materials are good, especially the android site and related books, but

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-15 Thread DraganA
Why don't you just add his email to your test accounts list in your console and send him the usual apk. On Sep 14, 9:42 pm, sblantipodi perini.dav...@dpsoftware.org wrote: This is what I am afraid of. The only problem is that I really have no idea to release an unprotected APK just to donate

[android-developers] Re: Android, MediaRecorder, Native API

2011-09-15 Thread Doug
How about AudioTrack? Doug On Sep 13, 10:15 am, Nadav nadav...@gmail.com wrote: Playing with the MediaRecorder Java code I have found the MediaRecorder class to be quite limited, there is no way to control the media before it is encoded/compressed, and, there is no way to control the result,

[android-developers] Re: Android, MediaRecorder, Native API

2011-09-15 Thread Doug
I'm sorry, I mean to say: how about AudioRecord? It gives you access to raw PCM from your recording source. Doug On Sep 13, 10:15 am, Nadav nadav...@gmail.com wrote: Playing with the MediaRecorder Java code I have found the MediaRecorder class to be quite limited, there is no way to control

[android-developers] Webview problm

2011-09-15 Thread venugopal reddy
Hi Guys, Am using Webview for load the URl(URl contains one page which is stored in the my local server) that psge contians scroll bar also.. Problm is in emulator total page is not display , some page is cutting, abd also scroll bar also not coming.. Can u pls help me -- You received this

[android-developers] Finding Mobile number region

2011-09-15 Thread Landy
Hi all, I know there are many web service available for free to inform the Mobile region with Country, City and mobile operation information etc just by providing the mobile phone number. Here I want to send a http request from my mobile (wil send the phone number ) to the web service and would

[android-developers] WebView, WebViewClient and links

2011-09-15 Thread Ori Harel
Do I need to implement my own WebViewClient in order for my WebView to handle common links like geo:, tel: and mailto:? Can't the WebView handle it on it's own? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: View subclass

2011-09-15 Thread bob
Great, thanks. You're right that it tripped me up because it wants this constructor: public StatsTable(Context context, AttributeSet attrs) { It works now that I put it in. On Sep 14, 7:24 pm, Mark Murphy mmur...@commonsware.com wrote: If StatsTable is in the com.coolgroups.bob package, you

Re: [android-developers] fragment transactions in onLoadFinished()

2011-09-15 Thread Dianne Hackborn
postDelayed is even worse. Just understand that if the activity's fragment state has already been saved, your code will need to correctly update it if it is later restarted from the state. On Wed, Sep 14, 2011 at 9:31 PM, Nikolay Elenkov nikolay.elen...@gmail.comwrote: I have a simple activity

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-15 Thread B.Arunkumar
Hi, Regarding your question, MediaPlayer supports RTSP streaming but does not take all RTSP URLs, (with authentication, for instance). Atleast that is the experience we have had. The built in C++ RTSP Stack that comes with mediaplayer seems to have limited capabilities. Arunkumar On Sep

Re: [android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-15 Thread Dianne Hackborn
160dpi is mdpi. Android does not use 90dpi, so I am having a hard time understanding what you are saying. Anyway, how about fixing whatever in your app is crashing? :} On Wed, Sep 14, 2011 at 8:47 PM, ArcDroid jacobrjohn...@gmail.com wrote: Correct it is a mdpi. The problem I have is that my

[android-developers] PNG images with sound in Android

2011-09-15 Thread parasnath
I have an Arduno comic in PDF format.I break it into PNG form and there are some text in PNG image.I want to read it with Sound and also highlight this text.Can I do this. Please help me Thank you -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: How to integrate Batik with Android to open display SVG files?

2011-09-15 Thread saex
no one? On 14 sep, 17:47, saex elpablos...@gmail.com wrote: I see that Batik is the way to open SVG files with Android, because the other libraries doesn't work fine with complex svg files, for example androidsvg, it works very bad with complex svg files. But it is not explained how to

Re: [android-developers] help on dalvik VM.

2011-09-15 Thread Daniel Drozdzewski
On 15 September 2011 02:59, Pratik Prajapati pratik.prajap...@gmail.com wrote: Dear All, There are a lot of classes in my (big) APK which are used no where(some test code is part of the APK with the actual service). Will dalvik VM keep these classes in memory at runtime? ( many classes are

[android-developers] Re: View subclass

2011-09-15 Thread bob
Actually, this is returning null: StatsTable st = (StatsTable) findViewById(R.id.hello); Any idea why? On Sep 14, 7:24 pm, Mark Murphy mmur...@commonsware.com wrote: If StatsTable is in the com.coolgroups.bob package, you would use: com.coolgroups.bob.StatsTable android:id=@+id/hello ... /

[android-developers] Re: View subclass

2011-09-15 Thread bob
The problem was in my widget, I had the correct constructor (Context context AttributeSet attr); HOWEVER - super(context) was being called - not super(context, attr). Once I fixed that, life was better. On Sep 15, 3:21 am, bob b...@coolgroups.com wrote: Actually, this is returning null:

[android-developers] Re: Out Of Memory Error with Images loaded through XML

2011-09-15 Thread A.
Thankyou so much! I hope this will help solve my problem! I'll let you know Cheers, A. -- 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] How to download Base64 data partly from web server and decode partly from encoded data?

2011-09-15 Thread Sam
Hello , Pls Check this link http://stackoverflow.com/questions/7427089/how-to-download-base64-data-partly-from-web-server-and-decode-partly-from-encoded -- 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] Crash Launcher2 NullPointerException in onDetachedFromWindow()

2011-09-15 Thread cg-dev
Crash Launcher2 NullPointerException in onDetachedFromWindow() Hi, I'm developping an application on Nexus S that testing some Android API. To do so, I need to pause/resume my application : // Cause activity to be brought to front void resumeActivity() { Intent intent = new

[android-developers] Increase the App Size in Android

2011-09-15 Thread parasnath
I have an Ardino Comic,Which is In PDf Form,I split it and convert it into the PNG form now I am calling this image one by one and also fliping this page,but it takes only five pages and give an error like memory problem.So how can I increase the memory of App in tab.Please help me. is it

[android-developers] Re: OpenGL Problem

2011-09-15 Thread cybice
The *more information* you provide, the better your results will be. But the easiest solutions: If you draw all in 3d see glEnable(GL_DEPTH_TEST) also glDepthFunc If 2D you can create sprites with alpha channel (png), disable GL_DEPTH_TEST, set blending GLES20.glEnable(GLES20.GL_BLEND);

[android-developers] I want to stop alarm if set time passed

2011-09-15 Thread Chirag Raval
Hello, I am developed one android application, in that application i want to show notification to the user at every morning 9 am. For that i am creating a one alarm class and called that alarm class's method from splash screen.So when ever splash screen called my alarm class called. Here i have

[android-developers] I want to stop alarm if set time passed

2011-09-15 Thread Chirag Raval
Hello, I am developed one android application, in that application i want to show notification to the user at every morning 9 am. For that i am creating a one alarm class and called that alarm class's method from splash screen.So when ever splash screen called my alarm class called. Here i have

[android-developers] Re: “BadTokenException: Unable to add window; is your activity running?” at showing dialog in PreferenceActivity

2011-09-15 Thread Vivek975
Hi lama, I once had this android.view.WindowManager$BadTokenException when i was trying to load the dialog too early. It was resolved by delaying the showdialog call. U can try it by using Handler().postDelayed() Thanks, vivek On Sep 14, 10:38 pm, lama viny...@gmail.com wrote: Hello Masters!

[android-developers] How to Avoid duplicate contacts using managed Query

2011-09-15 Thread ganesh
Hi All, How can I get distinct contacts from phone contacts database(content provider) using managed query ?? Could anybody provide me some pointers ?? Thanks, Ganesh -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Re: Out Of Memory Error with Images loaded through XML

2011-09-15 Thread Ralph Bergmann | the4thFloor.eu
Am 15.09.11 06:47, schrieb Sorab Pithawala: I have made a ZIP file containing the code, XML and a small readme. Why do you do it that way: h1 = BitmapFactory.decodeResource(res, R.drawable.help1_l); ImageView im = (ImageView) findViewById(R.id.helpImage); im.setImageBitmap(h1); and not like

[android-developers] Screen Blackout while adding Exchange account

2011-09-15 Thread Vivek975
Hi Masters, Server : Microsoft exchange server 2010 Android version : 2.1 I am adding an exchange email account from my android device, it is added without any problem. after that i remove the account and than again trying to add the same account, the screen blacks-out for around 30 sec and

Re: [android-developers] Skype for 2.2

2011-09-15 Thread Appaholics
Contact Skype tech support. On Wed, Sep 14, 2011 at 10:47 PM, vjgoti vjg...@gmail.com wrote: any one .. I m trying to up load skype in to my Galaxy after doing the up grate to 2.2 but no luck any one had solution -- You received this message because you are subscribed to the Google Groups

[android-developers] InAPPBilling — How can we set the specific validity time period for appbilling page or application

2011-09-15 Thread suresh Babu
I am implementing my app using InappBilling. I did the sample. In this how can we set the validity time period for appbilling page or application. Example: In my application, i set the one button for launch the second page. for this i set the Appbilling. I need to set up the second page paid

[android-developers] Re: “BadTokenException: Unable to add window; is your activity running?” at showing dialog in PreferenceActivity

2011-09-15 Thread lama
Hi Vivek! Thank You for posting! I tried what You suggesed, but the problem is still on. Setting postDelayed() executing to 5 sec, and the app is still crashing. So I think the problem isn't based on timeing, the activity started after 300-400 millisecs, but system doesn't find it, or something

[android-developers] request to server while typing in Edittext

2011-09-15 Thread vani reddy
Hi friends, How to request to server while simultaneously typing in edittext? For ex: like in android market, when we keep typing ,the suggestions appear below -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] request to server while typing in Edittext

2011-09-15 Thread bhaskar bommala
Hi , Use Autocomplete text component for this and when you are getting response from server just update that component.. Thanks and Regards, bhaskar On Thu, Sep 15, 2011 at 3:44 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi friends, How to request to server while simultaneously

[android-developers] CopyPaste option in android

2011-09-15 Thread venugopal reddy
Hi Friend, What are options for copy and paste in android emulator -- 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

Re: [android-developers] CopyPaste option in android

2011-09-15 Thread bhaskar bommala
Hi , You can not do copy paste options in emulator ,those will work in device only .. On Thu, Sep 15, 2011 at 3:56 PM, venugopal reddy venugopal.re...@tspl.comwrote: Hi Friend, What are options for copy and paste in android emulator -- You received this message because you are subscribed

[android-developers] horizontal listview at runtime

2011-09-15 Thread vani reddy
Hi friends, I have horizontal listview, i want to have the whole horizontal listview to be one below the other? -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread Monzurul Islam Shamim
to make one below another you can wrap both by a vertical layout..I think you already tried it...if so then where is the problem. On Thu, Sep 15, 2011 at 4:35 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi friends, I have horizontal listview, i want to have the whole horizontal listview

Re: [android-developers] InAPPBilling — How can we set the specific validity time period for appbilling page or application

2011-09-15 Thread bhaskar bommala
Hi, While doing In appbilling testing am getting error as ERROR/BillingService(3146): BillingHelper not fully instantiated where might the problem ,can you please help me on this. Thanks in Advance.. On Thu, Sep 15, 2011 at 3:38 PM, suresh Babu sureshalapat...@gmail.comwrote: I am

[android-developers] In App billling issue while testing

2011-09-15 Thread bhaskar bommala
Hi guys, While i am doing Inappbilling testing getting error as ERROR/BillingService(3146): *BillingHelper not fully instantiated* can you please help me. Thanks in Advance... bhaskar -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread vani reddy
Hi, I have wrapped both one below the other in vertical layout.But still its not happening.Do u want me to send you the code? On Thu, Sep 15, 2011 at 4:14 PM, Monzurul Islam Shamim monzur...@gmail.comwrote: to make one below another you can wrap both by a vertical layout..I think you already

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread bhaskar bommala
Hi, can you send me the code...,will lookinto that On Thu, Sep 15, 2011 at 4:32 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, I have wrapped both one below the other in vertical layout.But still its not happening.Do u want me to send you the code? On Thu, Sep 15, 2011 at 4:14 PM,

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread Monzurul Islam Shamim
yes On Thu, Sep 15, 2011 at 5:02 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, I have wrapped both one below the other in vertical layout.But still its not happening.Do u want me to send you the code? On Thu, Sep 15, 2011 at 4:14 PM, Monzurul Islam Shamim monzur...@gmail.com

[android-developers] drag/slide finger to perform onclick buttons

2011-09-15 Thread nivedita arora
i have a game, consisting of 7 buttons , arranged such that 1 button is in the center and rest 6 around it. click on the buttons results in change in textview. using click can really be cumbersome for the user, therefore i would like to add functionality of dragging finger over buttons to perform

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread vani reddy
Hi , I have sent the code On Thu, Sep 15, 2011 at 4:38 PM, Monzurul Islam Shamim monzur...@gmail.comwrote: yes On Thu, Sep 15, 2011 at 5:02 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, I have wrapped both one below the other in vertical layout.But still its not happening.Do u

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread vani reddy
Hi, Actually instead of wrapping it one below the other in vertical layout, i want to have repetitive views at runtime, using once in xml On Thu, Sep 15, 2011 at 5:03 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi , I have sent the code On Thu, Sep 15, 2011 at 4:38 PM, Monzurul Islam

Re: [android-developers] help on dalvik VM.

2011-09-15 Thread Praveen PB
Dvm do not occupy data memory for un used class. What about program memory ? On Sep 15, 2011 1:50 PM, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 15 September 2011 02:59, Pratik Prajapati pratik.prajap...@gmail.com wrote: Dear All, There are a lot of classes in my (big) APK which

[android-developers] slidingdrawer and some navigate buttons

2011-09-15 Thread Vic
Hello, I'd like to make slidingdrawer with two navigate buttons, one on the left side of handle and another one on the right side of hendle, they should work as normal buttons, how to do this? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Android Alarm application

2011-09-15 Thread Hassy
hi Martin as I can't spend lot of time for this application I wanted to know what is the best way to save the alarm settings. sorry for the simple question. Thank you for the advice Hassy Hi, I want to create an android Alarm application but I don't know how to save alarm

Re: [android-developers] Re: Horizontal progress bar in Dynamic list view

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 1:03 AM, ganesh ganeshbm...@gmail.com wrote: But, the problem is I am getting flickering effect once the list get refreshed. Progressbar disappears and comes again. Could you give some pointers to avoid this flickering effect ?? Not sure a that. Are you *always*

Re: [android-developers] drag/slide finger to perform onclick buttons

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 6:29 AM, nivedita arora vivaciousnived...@gmail.com wrote: Problem is i dont want continuous click , but only a single click on the button till the finger moves to next button So the system keeps sending the onTouch event as you down on the button?

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-15 Thread nexbug
Just let him buy it. Afaik there are no rules prohibiting that. That way you will have access to a purchased version for testing when things break on upgrade or on different new devices. On Sep 15, 12:03 am, DraganA dand...@gmail.com wrote: Why don't you just add his email to your test

[android-developers] Re: drag/slide finger to perform onclick buttons

2011-09-15 Thread nivedita arora
yes i gt continuous button down rather thn one click. any idea how boggle type games have button click functionality using finger drag ? thx fr ur help :) On Sep 15, 5:41 pm, TreKing treking...@gmail.com wrote: On Thu, Sep 15, 2011 at 6:29 AM, nivedita arora vivaciousnived...@gmail.com

[android-developers] Re: Fwd: Regarding the Android application development

2011-09-15 Thread nexbug
WOW... Back in our days we had to actually code stuff. But seriously, I think what you will have to do is first break down your problem into smaller.parts and then Google for solutions to your smaller problems. Also, try not to mention your employers name here or high level details of the

Re: [android-developers] Increase the App Size in Android

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 4:17 AM, parasnath gudia@gmail.com wrote: is it possible You cannot arbitrarily increase the memory available on a given device. There are limits on resources, especially on mobile devices. Your job is to find clever ways to work around those limits.

Re: [android-developers] help on dalvik VM.

2011-09-15 Thread Daniel Drozdzewski
On 15 September 2011 12:35, Praveen PB praveen.pat...@gmail.com wrote: Dvm do not occupy data memory for un used class. What about program memory ? Not sure what you mean here. From what I know, ARM like most modern processors implement Von Neumann architecture, where program and data share the

[android-developers] android build steps in details

2011-09-15 Thread Ablaze
Hi, I wanted to know the details of android build. say, once we give $ make - jn which file android goes first and how the compilation process is completed. In other words, the step by step android build procedure which can explain the sequence in which the different projects like bionic,

[android-developers] How to create 'Real Transparent activity' OR 'Real Modeless'??

2011-09-15 Thread Build account
Hello all. I'm creating a background serivce calling a popup when event occured. But I couldn't found proper information how to create a modeless popup from background service. The what I'm exactly want is that Can I create a popup(like alertdialog size) which don't have any kind of glass wall

Re: [android-developers] android build steps in details

2011-09-15 Thread Mark Murphy
On Thu, Sep 15, 2011 at 9:20 AM, Ablaze androida...@gmail.com wrote: Hi, I wanted to know the details of android build. say, once we give $ make - jn which file android goes first and how the compilation process is completed. In other words, the step by step android build procedure which

[android-developers] Re: drag/slide finger to perform onclick buttons

2011-09-15 Thread nivedita arora
really Sorry i mixed two problems in explaining :| yes, i hv tried flag of change of view, the ontouch converts -onclick type functionality . But the other problem still exists.problem is when i drag of finger only one button gets registered , even if i press other buttons by dragging cursor -

Re: [android-developers] Re: drag/slide finger to perform onclick buttons

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 8:32 AM, nivedita arora vivaciousnived...@gmail.com wrote: But the other problem still exists.problem is when i drag of finger only one button gets registered , even if i press other buttons by dragging cursor - other button touch are just ignored. I don't know -

Re: [android-developers] How to create 'Real Transparent activity' OR 'Real Modeless'??

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 8:21 AM, Build account newandroi...@gmail.comwrote: I mean that if there is the popup, but user touch beside popup where the background activiti's area, wanna get disappear the popup which I created. It hopely called onStop() or so. Can you imagine that? Is it

[android-developers] Re: Android development Online course at UCI

2011-09-15 Thread Mike
I completely agree with Kris. A million years ago I taught for another very well known university's extension program. Some of my students went on to be very highly skilled programmers. I like to think my courses contributed at least a little to that, but it was nowhere close to the same as a

Re: [android-developers] Re: drag/slide finger to perform onclick buttons

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 7:58 AM, nivedita arora vivaciousnived...@gmail.com wrote: yes i gt continuous button down rather thn one click. any idea how boggle type games have button click functionality using finger drag ? Set some flag on the first touch, ignore all other touch events when the

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Cristhian Flores
is a funny way of putting it 2011/9/14 Indicator Veritatis mej1...@yahoo.com san google? When did Google get sainthood? On Sep 14, 4:00 pm, Cristhian Flores cif...@gmail.com wrote: Que tal. Te dejo este enlace para que lo mireshttp://

[android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-15 Thread ArcDroid
160dpi graphics crashes my app so I had to use a lower dpi to avoid the animation from crashing. http://www.arcdroid.com On Sep 15, 12:19 am, Dianne Hackborn hack...@android.com wrote: 160dpi is mdpi.  Android does not use 90dpi, so I am having a hard time understanding what you are saying.

Re: [android-developers] Re: multiple cancelled orders with in-app billing?

2011-09-15 Thread Kostya Vasilyev
An update on what I'm seeing with my app: It worked for a while, but started failing again today. One order has a new kind of failure: Order canceled due to internal error in Market, the message sent to the customer is Google has sent an email instructing the customer to update their card -

Re: [android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-15 Thread Kostya Vasilyev
Did you ever consider finding out why it's crashing and um fixing it ? 15.09.2011 18:04, ArcDroid пишет: 160dpi graphics crashes my app so I had to use a lower dpi to avoid the animation from crashing. http://www.arcdroid.com On Sep 15, 12:19 am, Dianne Hackbornhack...@android.com wrote:

Re: [android-developers] Re: Android Alarm application

2011-09-15 Thread Cristhian Flores
Hi Hassy, Don't worry, we are all to learn and teach what you know. Beginners, fans and professionals in order many kinds of people to share knowledge. Regarding your question. It depends on the use you want to give. To start with something basic and database management begins with SQLITE.

[android-developers] Re: drag/slide finger to perform onclick buttons

2011-09-15 Thread nivedita arora
can someone pls provide code snippet ? or bttr insight to the problem i am facing :| thx in advance On Sep 15, 6:32 pm, nivedita arora vivaciousnived...@gmail.com wrote: really Sorry i mixed two problems in explaining :| yes, i hv tried flag of change of view, the ontouch converts -onclick

[android-developers] source content 3

2011-09-15 Thread mostafa dia
The Last Part Foster Gamble: First and foremost, they’d have to control Money- and they do. Controlling money allows them to run everything else. They’d need to control Energy- and they do. They already control big agriculture and world trade. They’re buying up water

Re: [android-developers] WebView, WebViewClient and links

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 2:15 AM, Ori Harel ori.ha...@gmail.com wrote: Do I need to implement my own WebViewClient in order for my WebView to handle common links like geo:, tel: and mailto:? Can't the WebView handle it on it's own? Create a page with the aforementioned link types, load it in

[android-developers] Re: Passing a Bundle with a Parcelable object from Monkeyrunner

2011-09-15 Thread Case B
I think I just answered my own question when browsing the Monkeyrunner source code. When starting an activity through MonkeyDevice, the extras dictionary gets passed to JythonUtils to translate the PyObjects to Java Objects. However, the map they use to translate these objects only recognizes

[android-developers] Re: How make Bluetooth constantly discoverable

2011-09-15 Thread Indicator Veritatis
I gave up on bump a long time ago. It fails too often. There is a limit to how often I can ask the same person to bump again. After the third time, it is embarrassing how much easier it would have been to scan a physical business card. On Sep 14, 11:05 pm, Kristopher Micinski

[android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Indicator Veritatis
If you think that was 'bullying', see a psychiatrist. And remember: the language of this group is English. We should keep all our contributions to it in English so that other users can benefit when they search the group. The OP needs to state more clearly what it is he is really trying to do.

Re: [android-developers] WebView, WebViewClient and links

2011-09-15 Thread akanksha maggo
no...it won't handle on its own.you have to pas the intent in the OverrideUrlLoading() On Thu, Sep 15, 2011 at 10:22 PM, TreKing treking...@gmail.com wrote: On Thu, Sep 15, 2011 at 2:15 AM, Ori Harel ori.ha...@gmail.com wrote: Do I need to implement my own WebViewClient in order for my

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-15 Thread Indicator Veritatis
H-m-m. In general, that is good advice, but expensive. Especially when, as shown in this thread, the would-be lawyer's client is not very clear about what he is trying to do, and would have to pay for the lawyer's time while he explains it. So best if first he polishes his explanation by

Re: [android-developers] Re: How make Bluetooth constantly discoverable

2011-09-15 Thread Kristopher Micinski
Still an interesting concept, and P2P across different platforms is something that *should* work, there's just not a good technology available to do it (yet). ..., I guess this is why people are just using the internet as their backend. Like all things (in software?), this is something that

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Cristhian Flores
I think that we should not be confined to a single language, already could come Russians, French and infinity, and so the group give to know not only their language but in all. 2011/9/15 Indicator Veritatis mej1...@yahoo.com If you think that was 'bullying', see a psychiatrist. And remember:

[android-developers] Android Market stats broken again?

2011-09-15 Thread OldSkoolMark
Been noticing for the past couple days that my new app's 'total installs' has remained constant, while my 'active installs' have been increasing. Can this possibly be valid? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Streets Of Boston
I disagree; I wouldn't want to see every possible language on this board. If you read the 'About' of this group ( https://groups.google.com/group/android-developers/about), it states that the language is English. If possible, please try to post in this language, in English. You get a lot more

[android-developers] Re: app causes reboot on DroidX after activity gets destroyed - anybody having similar issues?

2011-09-15 Thread Irene
Hi, I know this is an old thread, but did you ever figure out exactly what was causing this? I'm running into the same issue suddenly and would appreciate any help I can get. Thanks, Irene -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Lucas de Jesus Matias
I'm Brazilian, but i try to write on english, my english is poor, but i try :P I can speak portuguese on the Brazilian community android. 2011/9/15 Streets Of Boston flyingdutc...@gmail.com I disagree; I wouldn't want to see every possible language on this board. If you read the 'About' of

[android-developers] Re: Android Market stats broken again?

2011-09-15 Thread Adam Ratana
Looks like it's broken again, same here. Sent in a bug report. -- 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

Re: [android-developers] Re: Android Market stats broken again?

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 2:01 PM, Adam Ratana adam.rat...@gmail.com wrote: Looks like it's broken again This is funny - saying again sort of implies it was ever fixed ... My paid app has been at 100% (with over 3,000 more Active than Total) for well over a month, if not longer. I don't bother

[android-developers] SQLite and JSON or Java object serialization

2011-09-15 Thread John Goche
Hello, I have some Java objects which need to be written to a database while the user interacts with the application. Such an object has nested objects and I was considering implementing a proper SQLite representation of the object. However in another application I just convert to JSON and write

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-15 Thread Cristhian Flores
I'm Spanish, too but i try to write English here!!... Ok guys no problem!! Let's go why Android =) 2011/9/15 Lucas de Jesus Matias lucas.matias...@gmail.com I'm Brazilian, but i try to write on english, my english is poor, but i try :P I can speak portuguese on the Brazilian community

[android-developers] Re: Out Of Memory Error with Images loaded through XML

2011-09-15 Thread Michael A.
Presumably because he needs to recycle the switched out bitmap immediately, rather than wait for Android to decide that it has time to clean out the old bitmaps. I've run into this issue a lot myself when working with largish bitmaps. The GC for bitmaps is pretty rubbish - especially if your app

[android-developers] Re: showing the default A icon on google maps

2011-09-15 Thread guich
Too bad that onDraw of MapView is final. Why is adding a position so dificult? We ask to move to a coordinate, it would be useful to just pass a name and show that name on the map, without having to deal with overlays and so on. I'm still stumped. :-( guich -- You received this message because

[android-developers] Re: SQLite and JSON or Java object serialization

2011-09-15 Thread John Goche
Well, I found the following link: http://www.jondev.net/articles/Android_Serialization_Example_%28Java%29 I guess I won't be using JSON and will serialize accordingly. Now I wonder whether to store the object in a file or in an SQLite database. Since I have a single object I could probably do

[android-developers] Re: windowSoftInputMode=adjustResize not working on landscape or full screen

2011-09-15 Thread guich
The landscape issue was fixed on Android 3.0, but the full screen's NOT. guich -- 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

Re: [android-developers] java object passing in android: json or binder?

2011-09-15 Thread Kristopher Micinski
Advice would be to use aidl, since it's standard and not using it is usually because it's a little of a pain to figure out (although I'd argue you'd be better for it, and its all handled for you, otherwise you've got semi hacky looking code). Any difference in perf would be small, I'd figure

[android-developers] Re: Android Market stats broken again?

2011-09-15 Thread b0b
Same here. And I suspect rating/comments to not be updated too. And we can't even complain on the Market technical forum, as we developpers are considered as third class citizens. On this forum (not this one, the Market one) someone is doing an admirable job at closing every thread involving

[android-developers] fling deceleration

2011-09-15 Thread bob
What are the best formulas to use for fling deceleration? -- 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] Is it possiable to customize the calling menu?

2011-09-15 Thread 23026...@qq.com
The situation is that i want add two extra menu item to the menu in order to send the ECard to others when calling.And i used to try some way to do this, create two image buttons float on the screen,but it has a problem , when user click the virtual keyboard, it'll cover the virtual keyboard, and

[android-developers] OMA DRM Android Application

2011-09-15 Thread Prashanth KM
I am developing an android application (Photo Album) which renders OMA DRM protectes image files (Forward Lock and Combined delivery). Android version : Android 2.2 and later versions (not honeycomb) I am using availavle OMA DRM libraries (libdrm.so and libdrm1_jni.so) to render the images. But

[android-developers] Opening a PDF from raw folder

2011-09-15 Thread Abel
I'm getting stuck trying to open a pdf from the raw folder. My code runs but displays no error or the file. I am not worried about layout at the moment as I'm just trying to get this app to display just one pdf file located in the raw folder. My code: package com.pdftest; import

  1   2   >