Re: [android-developers] Techincal solution to develop an App in Android

2012-05-30 Thread mani kandan
After selection of theater u must pass position of the list view through intent... On Wed, May 30, 2012 at 5:08 PM, Ramya Vegesna wrote: > Hi, > > In 1st screen i used RadioButtons and 2nd screen is in listview . > > regards, > Ramya > > > On Wed, May 30, 2012 at 3:44 PM, mani kandan wrote: > >>

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Terry
After googling a bit for VAT Threshold, I soon found the following: VAT registration threshold removed for non UK-established companies >From 1st December 2012, the VAT registration threshold for companies which are not established in the UK will be removed. This means that all businesses making

Re: [android-developers] Problem with hashing speed

2012-05-30 Thread Harri Smått
On May 31, 2012, at 5:22 AM, jing yang wrote: > Thanks for spending some time in doing the tests! > but can you try including "byte[] f = md.digest();" inside your loop ? > in my test phone, add the digest() method will increase the timing by > 40%. I'm seeing similar behavior, time increased ro

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Terry
After googling a bit for VAT threshold, I soon found the following: VAT registration threshold removed for non UK-established companies >From 1st December 2012, the VAT registration threshold for companies which are not established in the UK will be removed. This means that all businesses making

[android-developers] How to Apply the Dowloaded nine patch image as background to a view in Android?

2012-05-30 Thread Ganesh Vadlakonda
Hi all, I am working on Android projects. According to my requirements all the background images are coming from the server. So I am downloading some nine patch images into the cache memory as extention with .9.png When I am trying to apply the image is not splitting according to the screen. inst

Re: [android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread TreKing
On Thu, May 31, 2012 at 12:58 AM, Rocky wrote: > TreKing, > > Can u suggest some kinds of free/Paid SDK APIs to develop our own apps of > PDF reader/editor. > I repeat: this has nothing to do with this list. Use your favorite search engine to fine what you're looking for. -

Re: [android-developers] Application's resource files' protection

2012-05-30 Thread Kristopher Micinski
In that case, there's not really any way to *really* protect your files..., basically. You could imagine doing some complicated thing with encrypting them, but then even if you display them, the user can still do something like capture the framebuffer, or just grab the raw bytes from the vm (that

Re: [android-developers] Application's resource files' protection

2012-05-30 Thread Göksel Güren
Duygu, kısacası uygulama kurulduğunda cihazın içerisinden ulaşılabilen, drawable dosyalarımın kullanıcı tarafından ulaşılabilir olmamasını istiyorum. Bunun için nasıl bir yaklaşım izlenebilir? @Mark, application must work offline correctly, so it is not a good approach for us. 2012/5/31 Mark Murp

Re: [android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread Rocky
TreKing, Can u suggest some kinds of free/Paid SDK APIs to develop our own apps of PDF reader/editor. which have good documentation, and material, support. On Thu, May 31, 2012 at 3:21 AM, TreKing wrote: > On Wed, May 30, 2012 at 12:25 PM, Rocky wrote: > >> I'm going to develop PDF reader a

Re: [android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread Dario Finardi
We are using radaee. You should find it on AndroidPDF.mobi. Il giorno 30/mag/2012 19:25, "Rocky" ha scritto: > I'm going to develop PDF reader and editor (few annotation), which SDK > APIs is good like. > > iText. > Qoppa > Adobe > > plz let me know. > > > -- > Thanks & Regards > > Rakesh Kumar

Re: [android-developers] email pdf attachment 0kb !

2012-05-30 Thread asheesh arya
try this code for sending email- with attachment import java.io.File; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.util.Log; import android.view.View; import android.view.View.OnClickListe

Re: [android-developers] Re: Setting up email app with android emulators

2012-05-30 Thread asheesh arya
juzz go through this link might be it will helpful for you http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Android -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Z-fighting in OpenGLES only?

2012-05-30 Thread Yan
Yes, I was getting a 16bit z-buffer, but discovered that OpenGLES needs ClearDepth to also be called from onDrawFrame! In the process of checking all my devices for 16bit buffers I noticed that most of them do not even support 24bit buffers, and those that do default to 16bits anyway. Now that rea

[android-developers] Re: UI performance is slow on large screen tablet

2012-05-30 Thread David Ross
Are you using the convert view parameter and getTag() with a viewHolder or are you creating the elements in the list from scratch each time? Using the convert view reduces GC and removes the time to create new objects for each row. See this for an explanation: http://logc.at/2011/10/10/handling-

Re: [android-developers] email pdf attachment 0kb !

2012-05-30 Thread dEEPESH PPM
Dear Jag, I have the same problem when send an attachment to the email. I solved this by saving the pdf file in the sd card. Regards Deepesh On Thu, May 31, 2012 at 1:15 AM, Jags wrote: > i have a pdf file in /data/data/mypkg/pdfs/myfile.pdf > > i am using this url debugged and saw it. > > it

Re: [android-developers] UI performance is slow on large screen tablet

2012-05-30 Thread TreKing
On Wed, May 30, 2012 at 11:02 PM, dara kok wrote: > Could somebody here point out what are the contributing factors to such > issue? The size of the display, as you already noticed. More to draw = longer time to taken to draw. > and what could be done to optimize the UI speed? Profile your

[android-developers] Re: After Adding header to list view, on List item click is selecting next index from the click.

2012-05-30 Thread Lokesh R
Yah.. I hve done it in onclick handling, making position-1 while selecting the adapter data. not sure in any other place like getView do i have to handle. On May 30, 6:18 pm, Fred Niggle wrote: > why not simply subtract 1 from the index? > > On 30 May 2012 12:03, Lokesh R wrote: > > > > > > > Af

[android-developers] Re: Problem with hashing speed

2012-05-30 Thread Kevin TeslaCoil Software
For doing these kinds of benchmark you might want to check out Vogar http://code.google.com/p/vogar and Caliper http://code.google.com/p/caliper/ They can be used for running microbenchmarks on Android (and elsewhere). There's some benchmark's at http://code.google.com/p/dalvik/ that can be use

[android-developers]

2012-05-30 Thread akash roy
how should i switch on wifi in android virtual machine..in laptop..? -- 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 andr

[android-developers] UI performance is slow on large screen tablet

2012-05-30 Thread dara kok
Hi, Running an app on a number of Samsung tablets having varying screen size, it's clearly noticeable that the tablet having smaller screen is much faster in UI performance compared to those having bigger screen size. Take list view as an example, scrolling speed differs a lot between the small

[android-developers] Re: time sync

2012-05-30 Thread David Ross
Time keeping on Android is lousy, you will not be able to synchronise multiple phones unless you implement your own time keeping (perhaps using NTP) aside from the Android date/time. See: See: https://code.google.com/p/android/issues/detail?id=12497 http://code.google.com/p/android/issues/detail?i

[android-developers] Re: resolution of the system clock

2012-05-30 Thread David Ross
The nominal resolution is millisecond, however the accuracy is of the order of a minute or so unless you root the phone and use NTP. Standard Android time keeping is hopeless. See: https://code.google.com/p/android/issues/detail?id=12497 http://code.google.com/p/android/issues/detail?id=4581 On

[android-developers] Re: Will google plan to fix bug #26446 in next release?

2012-05-30 Thread David Ross
That's a useless answer, why post it? There is are two meta issues here: 1) Google's support system for reported issues is hopeless. 2) ICS on the Nexus is a disaster, there is so much wrong with it and it is poisoning the Android brand severely. In both instances, Google should be pro-actively wor

[android-developers] Re: Problem with hashing speed

2012-05-30 Thread jing yang
Thanks for spending some time in doing the tests! but can you try including "byte[] f = md.digest();" inside your loop ? in my test phone, add the digest() method will increase the timing by 40%. But since your timings are much faster.. i think it could be due to the dual core CPU of S2? wow but i

[android-developers] Re: keys not being issued on android 4.0

2012-05-30 Thread guich
Hi, Got it working with this (lines marked with * was crucial): public InputConnection onCreateInputConnection(EditorInfo outAttrs) { outAttrs.inputType = android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS; // * outAttrs.imeOptions = EditorInfo.IME_ACTION_DONE; // * ret

Re: [android-developers] Questions on Digital Signing and Verification

2012-05-30 Thread James Black
I haven't dealt with this yet, but my expectation is to generate a certificate on the server and then that should be used on iOS and Android. I have no experience with it, but look at chilkatsoft.com, bit it will cost. Also, you can look at the source for how the key is packaged and port it to iO

[android-developers] Questions on Digital Signing and Verification

2012-05-30 Thread Qin Ding
I have an application that requires digital signing plain text messages on the client (Android and IOS) and the signature verification is performed on J2EE server. For example, on Android, when the application is registered with my app, it generates a keypair on device. The private key is stored on

[android-developers] BitmapFactory.decodeByteArray *not* failing on a corrupt jpg file

2012-05-30 Thread Nathan
Here's the situation. Happens in ICS 4.0.2 on Galaxy Nexus; don't know about others. In particular, this came up because my Verizon coverage is so deplorable that a file transfer was incomplete. Anyway, this jpg file has some bytes missing at the end. In windows, you can see most of the file, and

Re: [android-developers] How to turn off the screen while the service is running in background

2012-05-30 Thread Mark Murphy
On Wed, May 30, 2012 at 6:33 AM, kelum prasad wrote: > I tried with wake locks in Power Management API  to turn on and turn > off the screen. You don't turn off the screen. Android turns off the screen, based on the user's preferred screen timeout interval. > Is there any reason not to turn off

Re: [android-developers] Application's resource files' protection

2012-05-30 Thread Mark Murphy
Don't put the images on the user's device. Download them from the Internet only on demand, and only ever hold them in RAM. On Wed, May 30, 2012 at 5:59 AM, Göksel Güren wrote: > Hi everyone, > > We developed an application which create it's views using drawables. Every > page swapping operation b

Re: [android-developers] Can't Access A Directory I Created.

2012-05-30 Thread Sergio Andrés Ibañez Kautsch
Yeah I read it and I was able to solve my problem but with another guide. I had to do many changes to get it to work. Thanks a lot for your answer regardless! On Wednesday, May 30, 2012 5:45:33 PM UTC-4, TreKing wrote: > > On Wed, May 30, 2012 at 1:55 PM, Sergio Andrés Ibañez Kautsch < > leonne.

[android-developers] Contact Bubble EditText

2012-05-30 Thread Etienne
I am trying to create contact bubbles in the MultiAutoCompleteTextView similiar to how it is implemented in the Google+ app. Below is a screen shot: [image: Google+ Compose Post Screenshot] . I have tried to extend the DynamicDrawableSpan class in order to get a spannable drawable in the bac

[android-developers] Android testing

2012-05-30 Thread Shane Isbell
Hi all, I'm starting work on an android integration testing framework, called Huntsville: https://github.com/sisbell/huntsville Currently, the project creates a DeviceAssert (extending JUnit Assert) class that asserts things like the existence of files on device, environmental properties on the d

Re: [android-developers] After Adding header to list view, on List item click is selecting next index from the click.

2012-05-30 Thread Fred Niggle
why not simply subtract 1 from the index? On 30 May 2012 12:03, Lokesh R wrote: > > After Adding header to list view, on List item click is selecting next > index from the click. > > Do i Have to handle anything additionally in adapter after adding list > header. > > -- > You received this messag

Re: [android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread TreKing
On Wed, May 30, 2012 at 12:25 PM, Rocky wrote: > I'm going to develop PDF reader and editor (few annotation), which SDK > APIs is good like. This has nothing to do with this list. - TreKing

Re: [android-developers] Building a one step by step scrollView

2012-05-30 Thread TreKing
On Wed, May 30, 2012 at 4:58 AM, lionel Lioninho < lionel.firstdevelo...@gmail.com> wrote: > i want to create a vertical scroll view but which schroll by step > What does this mean? - TreKing

Re: [android-developers] Can't Access A Directory I Created.

2012-05-30 Thread TreKing
On Wed, May 30, 2012 at 1:55 PM, Sergio Andrés Ibañez Kautsch < leonne...@gmail.com> wrote: > What could I possibly be doing wrong? Hardcoding a path. Read this: http://developer.android.com/guide/topics/data/data-storage.html

[android-developers] Re: Auto repeat button

2012-05-30 Thread Hasham Tahir
Hey i dont know if you will read this or not its almost two years. But i want to the exact same this i using AsyncTask to write strings to my socket. I want to press and hold my button and it should repeat sending the string to the socket how i can use this handler while im using execute() with

[android-developers] Re: keys not being issued on android 4.0

2012-05-30 Thread guich
Hi, There's no physical keyboard. How do i use the legacy text input mode? Searched the net and found nothing thanks 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@google

[android-developers] Re: Setting up email app with android emulators

2012-05-30 Thread JackN
Do you have a mail server? It seems like you are missing the boat on that part. On Monday, May 21, 2012 2:09:40 PM UTC-7, Intern Mint wrote: > hi, > I am trying to develop an application that sends email on users > behalf. for that the email app with the emulator needs to be set up > with a v

[android-developers] Re: noob developer, application keeps restarting

2012-05-30 Thread Yan
Murphy's logic should be subject to Murphy's law... On May 29, 9:03 am, Mark Murphy wrote: > On Tue, May 29, 2012 at 10:53 AM, Yan wrote: > > Is it safe to assume the new activity will have priorty over the > > previous activity that is no longer accessible? > > Since I have no idea what you are

[android-developers] email pdf attachment 0kb !

2012-05-30 Thread Jags
i have a pdf file in /data/data/mypkg/pdfs/myfile.pdf i am using this url debugged and saw it. it is world_readable (how to verify in adb shell, BTW) i use following code to send attachment but mail reaches with a pdf file attached with 0kb size what could be the issue ? i can adb pull and see

[android-developers] Re: Did google get rid of the submit button on the C2DM Reg page in firefox on purpose?

2012-05-30 Thread Sabanim
I do not really believe this. Just found it funny. On May 30, 10:18 am, Sabanim wrote: > Did google get rid of the submit button on the C2DM Reg page in > firefox on purpose? > > hehe Just and intersting topic.   > https://developers.google.com/android/c2dm/signup > >  After excepting the agreem

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Streets Of Boston
I'm not sure how to handle it. But google "VAT Threshold" or "BTW Drempel" and such and you'll see that the minimum amount you need to reach before you must register for VAT it is quite high (*thousands *of dollars). If you sell apps as a hobby, I won't worry too much about reporting VAT for cu

[android-developers] Re: SoundPool error "Unable to load sample: (null)"

2012-05-30 Thread Francisco M. Marzoa Alonso
I answer to myself, JFTR: For some reason SoundPool were unable to load a wav sample that in fact works in every other player that I have used. So I simply ended using another file with a different format. Here is the format of the offending file, as told by mplayer on my GNU/LiNUX box: |Opening

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Terry
>E.g. I'm from Massachusetts and I have to collect taxes from customers from >MA. I then have to pay that taxes to the government. It is my >responsibility. I can get a sales report from Google and figure out what >sales taxes i have to submit to the state and what income taxes to submit >to the fe

[android-developers] Scaling Bitmap objects created at runtime / Inflated Views Issue

2012-05-30 Thread C.Bountalis
Hello, I have read from the documentation that "If your application creates an in-memory bitmap (a Bitmapobject), the system assumes that the bitmap is designed for the baseline medium-density screen, by default, and auto-sca

[android-developers] Re: Recording AAC-ADTS in ICS

2012-05-30 Thread fyhertz
Hi ! Look what i've found in android sources: /** @hide AAC ADTS file format */ public static final int AAC_ADTS = 6; in frameworks/base/media/java/android/media/MediaRecorder.java It's right there, but not visisble yet in the documentation :/ It works on my galaxy SII with

[android-developers] XML parsing request error

2012-05-30 Thread Daniel Holst
public static NodeList UpdateSchoolList() throws SAXException, IOException, ParserConfigurationException { return parse_xml(request("https://www.lectio.dk/lectio/ login_list.aspx?forcemobile=1")).getElementsByTagName("a"); }ERROR

[android-developers] Possible to obtain view hierarchy of on-screen input method?

2012-05-30 Thread MarkW
I am not aware of a tool available for black box testing input methods, so I am looking to write my own. The following google groups post by Romain Guy details using the window service to obtain a dump of the view hierarchy: http://groups.google.com/group/android-developers/browse_thread/thread/64

[android-developers] Building a one step by step scrollView

2012-05-30 Thread lionel Lioninho
Hi, I'm a beginner in android development and i want to create a vertical scroll view but which schroll by step. I don't really know how to do this with built in components provide by the SDK. Thanks :-) Lionel -- You received this message because you are subscribed to the Google Groups "A

[android-developers] Create custom keyboard in android2.3.3

2012-05-30 Thread tiyyagura yamini
Hi, I am new to android, I am using the android 2.3.3. My requirement is customize the soft keyboard with numbers, ',' , '.' , '/' ,'+' , '-'. So I have explored, I found that "KeyBoard" class and "KeyBoardView". But these classes supports from android3.0. Could you please suggest me the how t

[android-developers] After Adding header to list view, on List item click is selecting next index from the click.

2012-05-30 Thread Lokesh R
After Adding header to list view, on List item click is selecting next index from the click. Do i Have to handle anything additionally in adapter after adding list header. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] SurfaceView in PIP mode

2012-05-30 Thread Android Crazy
I am developing android app where I want to use surface view in PIP (Picture-in-picture) mode. In this case, there will be atleast on background surfaceview while there can be multiple PIP surfaceview. All surfaceview can display any image/video or other content. Along with this, I would like to a

[android-developers] Re: Using Eclipse write monkeyrunner

2012-05-30 Thread Roger Li
I failed to config the python interpreter in both Windows and ubunut. In windows, the configed interpreter can't be applied. In ubuntu, I got an error like the following: Can anyone please help a h

[android-developers] Did google get rid of the submit button on the C2DM Reg page in firefox on purpose?

2012-05-30 Thread Sabanim
Did google get rid of the submit button on the C2DM Reg page in firefox on purpose? hehe Just and intersting topic. https://developers.google.com/android/c2dm/signup After excepting the agreement you are taken to the form. In chrome there is a submit button while in firefox the button have be

[android-developers] Application's resource files' protection

2012-05-30 Thread Göksel Güren
Hi everyone, We developed an application which create it's views using drawables. Every page swapping operation brings next page to screen. We must protect our drawable files/pages when application installed. At device's file system, it must be hard to access our files. How can we do that? Regard

[android-developers] Can't Access A Directory I Created.

2012-05-30 Thread Sergio Andrés Ibañez Kautsch
Any help will be highly appreciated as I'm going nuts and I have been googling for like 3 hours now with no luck. Basically, I'm writing a Notepad app. I need to create raw .txt files and save them on /AppData/MyAppName. I think I have everything. I can create the directory, but I can't access

[android-developers] Best way to access application images

2012-05-30 Thread focus
Hello, I'm newbie and I'm developing an application for a carnival that will list activities with their image. I want to put the carnivals image for every activity in the app package to avoid that user has to download it and in the database I will have the name of every image for every activity.

[android-developers] How to turn off the screen while the service is running in background

2012-05-30 Thread kelum prasad
Hi, I have an application which uses the Light Sensor to read the light value and I want to turn off the screen if the light value is below a defined margin. And if it is upper the defined margin, screen should turn on. Further, at all this time, other functionalities of the application should ru

Re: [android-developers] Re: New TAX arrangements?

2012-05-30 Thread James Black
This sounds like a problem in need of a software solution. It should be easy enough to have something that will pull down your info and tell you how .much goes where. On May 30, 2012 2:25 PM, "Streets Of Boston" wrote: > My understanding is that Google is not your dealer. It is your agent and >

[android-developers] Re: Sample Keyboard - Popup characters

2012-05-30 Thread igor ganapolsky
You should have an attribute - *android:popupKeyboard* - in your keys. Example *popup_keyboard.xml*: http://schemas.android.com/apk/res/android"; android:keyWidth="10%p" android:horizontalGap="0px" android:verticalGap="0px" android:keyHeight="56dp"> On Saturday, January 8, 2011

Re: [android-developers] time sync

2012-05-30 Thread TreKing
On Wed, May 30, 2012 at 7:31 AM, bob wrote: > Does having your app set the time on the Android device require root > access? http://bit.ly/KWT6jJ - TreKing

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Streets Of Boston
My understanding is that Google is not your dealer. It is your agent and payment processor. It's a market not a store. You were and will be responsible for paying taxes, before this change to Google Play and after this change to Google Play. Nothing changed here. E.g. I'm from Massachusetts and

[android-developers] RandomAccessFile and file system buffer

2012-05-30 Thread Tamás Kovács
I know that RandomAccessFile does not use buffering (and unlike in case of FileInputStream, it obviously cannot be combined with BufferedInputStream). I need to read many small chunks of data from random file positions (which can't be sorted, as they arrive continously), so RandomAccessFile sounds

Re: [android-developers] want to install a software .exe from my Android App

2012-05-30 Thread Francisco M. Marzoa Alonso
It looks, at least for me. May be my own ignorance, or perhaps that I have not understood you very well. My point is that Android OS is a linux based system, where you cant exec MS-DOS/WINDOWS binary executable files like those with .exe extension (at least not directly, you can do it with some us

Re: [android-developers] Connecting to USB-Serial Converter in Android

2012-05-30 Thread Thomas
Hi, When you find out how, please post the link back here as that is a problem I expect I'll have to address in the near future. Sometimes programming problems resolve out into hardware problems. Best, Tom B On Wednesday, May 30, 2012 9:03:30 AM UTC-4, James Black wrote: > > This list is for

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Terry
On 30 Mai, 19:09, Streets Of Boston wrote: > Generally, yes. If you sell stuff you need to pay taxes (sales taxes/VAT) > on it. Yes. But until recently, when goods were sold from one country to another, there was no VAT. Is that no longer true? If not, shall every Android developer keep track

Re: [android-developers] Re: Emulator displays a Blue screen and not displaying the google map

2012-05-30 Thread sowmya kukkadapu
May be u r seeing a location where there is an ocean... so check ur coordiinates... On Wed, May 30, 2012 at 11:43 AM, lbendlin wrote: > Verify your map center coordinates. > > > On Tuesday, May 29, 2012 9:07:53 AM UTC-4, subramania...@googlemail.comwrote: >> >> I am trying the very basic google

Re: [android-developers] Re: Problem with hashing speed

2012-05-30 Thread Harri Smått
On May 30, 2012, at 6:16 PM, jing yang wrote: > I was testing the hash methods on a 16 bytes input, randomly generated > with the SecureRandom class. I'm still getting far more faster speeds on SGS2, around 4871ms for 524288 iterations. Roughly half of the time is spent generating random bytes,

[android-developers] notifyDataSetChanged() & Timing of Events on UI Thread

2012-05-30 Thread Jason Teagle
I'm subclassing BaseAdapter to simply serve up images for a GridView based on internal data. The main UI allows the user to drag these images 'off' the grid. The drag image is a separate ImageView vying for Z order with the grid in their parent layout. Whenever I reposition the drag image usin

[android-developers] Re: android popup keyboard close button missing

2012-05-30 Thread igor ganapolsky
Have you ever resolved this? I am facing a similar issue. On Friday, January 29, 2010 4:43:33 AM UTC-5, extrapedestrian wrote: > > Hint: I think problem is in keyboard_popup_keyboard.xml, but I don't > want to recompile android source... > > On Jan 29, 10:37 am, extrapedestrian > wrote: > > When

[android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread Rocky
I'm going to develop PDF reader and editor (few annotation), which SDK APIs is good like. iText. Qoppa Adobe plz let me know. -- Thanks & Regards Rakesh Kumar Jha -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

Re: [android-developers] Google play stats stalled

2012-05-30 Thread Francisco M. Marzoa Alonso
Hmmm... I have this message on my console: "Issues with statistics export Temporary issues exporting statistics Learn more " It is not exactly the same, since I do not want to export stats, but may be

[android-developers] SoundPool error "Unable to load sample: (null)"

2012-05-30 Thread Francisco M. Marzoa Alonso
Hi there, I am facing an "Unable to load sample: (null)" error with the SoundPool, while trying to load a sample (not surprising, yeah?). I have discarded all common flaws that should raise that kind of error, so the file does exists (I can see it there), the file is readable (assets manager seem

Re: [android-developers] Debugging: how to find what caused an exception

2012-05-30 Thread Tony Houghton
On Tue, 29 May 2012 15:09:17 -0500 TreKing wrote: > On Tue, May 29, 2012 at 1:24 PM, Tony Houghton wrote: > > > All I get > > shown about the exception is a sub-window labelled "Debug" which shows > > the exception type and where the exception was trapped (I presume) > > instead of what caused

Re: [android-developers] Google play stats stalled

2012-05-30 Thread Francisco M. Marzoa Alonso
Ok, I am more confident now. Thank you very much, On 30/05/12 17:50, Kostya Vasilyev wrote: > Not sure if my stats are affected, but I remember seeing a notice in the > developer console about this yesterday. The notice also said they're > working on a fix (as ever). > > -- K > > -- You receive

Re: [android-developers] Re: New TAX arrangements?

2012-05-30 Thread mike digioia
This is so crazy that it can't be true! How can they enforce it even if it was true. Only way to do something like this is to hold Google accountable, not the thousands of engineers pulling their hair out to build this stuff!! LOL On Wed, May 30, 2012 at 10:09 AM, Streets Of Boston wrote: > Gene

[android-developers] Re: New TAX arrangements?

2012-05-30 Thread Streets Of Boston
Generally, yes. If you sell stuff you need to pay taxes (sales taxes/VAT) on it. But If you are not selling more than a certain dollar (or other currency) amount to users in a given country, don't expect a taxman to bang on your door trying to collect from you.Only after a certain threshold you

[android-developers] Re: Emulator displays a Blue screen and not displaying the google map

2012-05-30 Thread lbendlin
Verify your map center coordinates. On Tuesday, May 29, 2012 9:07:53 AM UTC-4, subramania...@googlemail.com wrote: > > I am trying the very basic google maps api code. But it just gives me > a blank blue page. > > My program is this > > Java code:: > > package com.project1; > > import androi

[android-developers] Re: android:largeHeap attribute not working?

2012-05-30 Thread Ab
Oops, the largeHeap attribute should go inside the application tag -- this works now. On Wednesday, 30 May 2012 12:04:40 UTC-4, Ab wrote: > > I added the android:largeHeap="true" attribute to my android manifest, > but it doesn't seem to make a difference in my application's allowed > memory.

Re: [android-developers] Re: keys not being issued on android 4.0

2012-05-30 Thread Dianne Hackborn
Er, that device doesn't have a physical keyboard, does it? If it doesn't have a physical keyboard, you would never ever have seen any such keys in onKeyPreIme()... because it has to be the IME that generates those keys and that of course is not going to come before the IME. Further, unless you a

Re: [android-developers] Re: Open JDK crash

2012-05-30 Thread mike digioia
yes that is what I noticed in the dump. But why crash for duplicate names. Should be some warning of some kind. Thanks for your reply. On Tue, May 29, 2012 at 10:28 PM, Jonathan S wrote: > already added: Lorg/ccnx/ccn/BasicInterestListener; > > This mean it see two classes for that name. > > >

[android-developers] New TAX arrangements?

2012-05-30 Thread Terry
I am not sure that I have completely understood the new tax arragements published by Google. Is it true that Google expects ME to collect V.A.T. in all countries where my apps are being sold, and to pay the total to the right tax authorities in these countries? So, e.g. if I live in Switzerland,

[android-developers] android:largeHeap attribute not working?

2012-05-30 Thread Ab
I added the android:largeHeap="true" attribute to my android manifest, but it doesn't seem to make a difference in my application's allowed memory. When I run the below activity on my Acer A100 (running android 3.2.1), I get the following results: largeAmount = 256 normalamount = 48 a

Re: [android-developers] Google play stats stalled

2012-05-30 Thread Kostya Vasilyev
Not sure if my stats are affected, but I remember seeing a notice in the developer console about this yesterday. The notice also said they're working on a fix (as ever). -- K 2012/5/30 Francisco M. Marzoa Alonso > Hi, > > The stats on my Google Play developer console seems to be stalled since >

Re: [android-developers] Google play stats stalled

2012-05-30 Thread David Olsson
It's usually not a problem. It's just how it's done. On May 30, 2012 5:46 PM, "Francisco M. Marzoa Alonso" wrote: > Hi, > > The stats on my Google Play developer console seems to be stalled since > yesterday. It has been updating between 12:00 and 13:00 GMT, but today > at 15:40 GMT they are show

[android-developers] Google play stats stalled

2012-05-30 Thread Francisco M. Marzoa Alonso
Hi, The stats on my Google Play developer console seems to be stalled since yesterday. It has been updating between 12:00 and 13:00 GMT, but today at 15:40 GMT they are showed outdated. I have the same active install that I had yesterday, and the last day shown on graphics is 28 May. I rather lik

[android-developers] Re: Problem with hashing speed

2012-05-30 Thread jing yang
I was testing the hash methods on a 16 bytes input, randomly generated with the SecureRandom class. and sorry for the messy table. here is a tidier version. Hash Based SHA256 SHA1MD5 SHA512 No. of hashes Maximum Time taken (ms) 1,024 250 229 213

Re: [android-developers] Android App

2012-05-30 Thread Kristopher Micinski
That's right, without a rooted phone this isn't possible, as it would be considered a security vulnerability, kris On Wed, May 30, 2012 at 3:03 AM, mani kandan wrote: > > Hi All, > > I want to create an android application, which has to  take the screenshot > of all application such message, gal

Re: [android-developers] Re: I am getting an error "uses-feature"

2012-05-30 Thread Jason Teagle
Missing closing quotes ( before the /> ) on the following 2 lines: (and -- 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

[android-developers] Re: Looper is null in HandlerThread

2012-05-30 Thread G. Blake Meike
Well, the error message is for sharedWorkerThread and the code is sharedPrioThread and I admit I've never actually done exactly this, however I strongly suspect that this is the Android-ended-your-process issue. When Android sees more than a certain number of processes running in background (1

[android-developers] Re: How to handle dismiss of DialogFragment (support lib) while app is in background

2012-05-30 Thread Chuck Krutsinger
By the way, I'm using your "Programming Android" book as I develop. On Sunday, May 27, 2012 8:20:39 PM UTC-6, G. Blake Meike wrote: > > I think this problem may be more complex than you imply. In general, the > Activity may be in a pretty inconsistent state (Stopped, OS thinks it is > dead) whe

[android-developers] Re: I am getting an error "uses-feature"

2012-05-30 Thread RichardC
Missing closing quotes ( before the /> ) on the following 2 lines: On Tuesday, May 29, 2012 9:29:02 PM UTC+1, Dev for life wrote: > > I am pretty sure its simple. Sounds like I am not declaring > android:name correctly in quotations is first the error and then what > I actually declared i

[android-developers] Re: How to handle dismiss of DialogFragment (support lib) while app is in background

2012-05-30 Thread Chuck Krutsinger
I already have a solid way to handle if the activity is stopped. What I'm struggling with is how to handle if the activity is paused due to being in the background. If the Activity is paused, then calling Android Compatibility Package's (ACP) DialogFragment.dismiss() triggers an InvalidStateE

[android-developers] instrumenting the android device to log method invocations

2012-05-30 Thread Moutaz al-azab
Hello Guys, I was thinking that since the Android stack is an open source, is there any possibility to modify the virtual machine that runs the apps to log the method invocations. I am after the call sequence that application performs. I am wondering where I can find a document for instrumenting?

Re: [android-developers] Android App

2012-05-30 Thread Michael Leung
I think it has to done in ndk. Regards, Michael http://www.itblogs.info http://www.michaelleumg.info 2012-5-30 下午7:40 於 "mani kandan" 寫道: > > Hi All, > > I want to create an android application, which has to take the screenshot > of all application such message, gallery,third parity applicatio

[android-developers] Re: want to install a software .exe from my Android App

2012-05-30 Thread Meryeme
Thank you so much Jadranko for your response it is really helful. well for the extention there are some applications that ca be installed in the android device that carry the extention of .exe for example busybox: they have the binary version of it and you can install it into the mobile phone using

Re: [android-developers] want to install a software .exe from my Android App

2012-05-30 Thread Michael Leung
That may be possible. If the computer has android sdk, your .exe to put apk via sdk. But that sounds a mission impossible. Regards, Michael http://www.itblogs.info http://www.michaelleumg.info 2012-5-30 下午8:05 於 "Meryeme Ayache" 寫道: > hey everybody, > >I am trying to install a .exe

Re: [android-developers] How to root android phone

2012-05-30 Thread Fadil Kamal
What does root for? Im using 2.3.3 version -- 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...

  1   2   >