[android-developers] testing

2008-12-02 Thread jonathan
testing... forgive me --~--~-~--~~~---~--~~ 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

[android-developers] Re: HelloGallery tutorial android.R.styleable cannot be resolved

2009-03-30 Thread Jonathan
Yes, it seems 'styleable' got removed from the SDK and the tutorial(s) hasn't been updated. There was a message a couple weeks ago about this and I'm trying to see if I can figure out what Dianne Hackborn means by use declare-styleable in your own app. to fix this. On Mar 23, 12:30 pm, ppmoore

[android-developers] develop application without a data plan?

2009-02-19 Thread jonathan
I just got my g1, I only need to develop an offline application, however, It wouldn't go further without signing into google account which requires a data plan. Please advise. thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] modifying 9 patch images

2009-09-24 Thread jonathan
I wish to customize the button images, but after I opened the png file, changed the color, reimported back into the draw9patch editor, the compiler spew out errors. how can I modify the 9 patch image of the default button? --~--~-~--~~~---~--~~ You received this

[android-developers] display brightness settings from my activity

2009-09-25 Thread jonathan
I need to display the brightness settings dialog from my activity, I git the Settings source and found out that a lot of the classes in import does not exist in the API. did these classes' visibility change? package com.android.settings; import android.content.Context; import

[android-developers] customized radiobutton

2009-09-25 Thread jonathan
I tries to modify the look of radiobutton: style name=MyRadioButton parent=android:Widget.CompoundButton.RadioButton item name=android:textColor#FF/item item name=android:background@drawable/btn_radio/item /style android:background doesn't seem to be the right property, the

[android-developers] mount other usb devices to android gphone

2009-10-05 Thread jonathan
is it possible to mount another usb device x to gphone and then create a program that communites to x on the usb port? X is used for capturing data and gphone will be used for analysis/display. thanks --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Phone calls recording on 2.0

2010-01-18 Thread Jonathan
I can confirm that it does NOT work for Nexus One. On Jan 18, 1:16 pm, appforce.org ogi.andr...@gmail.com wrote: Any updates after release of Nexus One? It's unavailable in my country, and I will appreciate a lot any first-hand information about voice recording from someone lucky to have it.

[android-developers] why isn't the progress bar full width of the view

2010-01-22 Thread Jonathan
Hello, I am making a custom progress bar, and I can't seem to get it to fill out to the full width of the control. The view is set to fill. I have extended the ProgressBar view. I am drawing it through xml like so: MyPackage.MyProgressBar android:id=@+id/progress_bar

[android-developers] how to make a layer slide out from behind another layer and back on click of a button

2010-01-27 Thread Jonathan
I have been trying all day to handle this and couldn't figure it our nor find any decent examples. Basically, I have 2 layouts (view groups), that will sit at the bottom of the page, on on top of the other (hidden). When you click a button in the top layout, the bottom one slides out from behind

[android-developers] Reg: Mobile Applications For Your Organization

2010-02-03 Thread Jonathan
Dear Partner, Greetings, hope this mail finds you well. This is Jonathan representing WINIT. We propose to give you a great solution that would enable you to save 60% of your development costs. We at WINIT are a strategy firm providing clients with a complete package of solutions to identify

[android-developers] rotate progress bar

2010-02-15 Thread Jonathan
HI, I am extending the normal android.widget.ProgressBar. I want to make it vertical. This is my current onDraw Method @Override protected synchronized void onDraw(Canvas canvas) { canvas.save(); canvas.rotate(90);

[android-developers] Ondraw not working for variable size rectangle

2010-02-16 Thread Jonathan
I am just trying to draw a rectangle whose height grows based on a certain value. However it won't draw anything when I use this variable. I think its some sort of clipping issue that I dont understand. The ondraw belongs to a custom view (it simply extends the View class) THis works: (it draws a

[android-developers] OpenGL and the use of ByteBuffers

2010-02-23 Thread Jonathan
Hey guys, I'm porting over some software from the iPhone, and the fact that I need to use ByteBuffers for my data structures in order to use OpenGL is killing me. My render loop takes 3ms to actually do the work and render screen, but I do need to perform a ByteBuffer clear / repopulate to

[android-developers] Re: OpenGL and the use of ByteBuffers

2010-02-23 Thread Jonathan
the application is but if you can use the GPU and a framebuffer to create your dynamic texture instead of doing it on the CPU with a bitmap, that's another much faster way to go. On Feb 23, 5:42 pm, Jonathan jon.aposto...@gmail.com wrote: Hey guys, I'm porting over some software from the iPhone

[android-developers] Re: OpenGL and the use of ByteBuffers

2010-02-23 Thread Jonathan
the post: 256x256 = mid 30s 512x256 = high 60s (with a jump to 100+?) 256x512 = high 60s 512x512 = 130-150 So they seem to scale appropriately. On Feb 23, 10:25 pm, Jonathan jon.aposto...@gmail.com wrote: I have an array in memory that represents the screen.  I then call put() once to put

[android-developers] Is this properly using a runnable?

2010-02-25 Thread Jonathan
I am basing an audioplayer off an old tutorial, and I am seeing some major lag in my UI, which is making me think that the threading is not being handled properly. It is structured as such: public void startStreaming() throws IOException { final String mediaUrl =

[android-developers] installing gphone drivers automatically

2009-08-03 Thread jonathan
I wish to create an installer that unpack the driver files so windows new hardware wizard will automatically find it instead of have to let user select where the files are. I unpacked the driver files into windows\system32, windows\ and windows\inf and windows \system32\drivers, then the wizard

[android-developers] IOException while reading resource with available bytes

2009-08-13 Thread Jonathan
I'm getting an IOException using the following code: InputStream is = getResources().openRawResource(R.raw.myfile); byte[] data = new byte[is.available()]; is.read(data); is.close(); The IOException occurs during the read. What's weird is that if I do a single byte read there is no

[android-developers] IOException while reading a raw resource.

2009-08-13 Thread Jonathan
I'm running into a strange problem while reading from an InputStream on the Android platform. I'm not sure if this is an Android specific issue, or something I'm doing wrong in general. The only thing that is Android specific is this call: InputStream is =

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
If I truncate the file to 100,000 bytes (file is: 1,917,408 bytes originally) it works fine. Is there a problem with files over a certain size? On Aug 13, 10:36 am, Jonathan jon.aposto...@gmail.com wrote: I'm running into a strange problem while reading from an InputStream on the Android

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
I was able to load a 1MB file okay, but 1.5MB crashed. On Aug 13, 12:30 pm, Jonathan jon.aposto...@gmail.com wrote: If I truncate the file to 100,000 bytes (file is: 1,917,408 bytes originally) it works fine.  Is there a problem with files over a certain size? On Aug 13, 10:36 am, Jonathan

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
bigger file split it On Aug 13, 3:35 pm, Jonathan jon.aposto...@gmail.com wrote: I was able to load a 1MB file okay, but 1.5MB crashed. On Aug 13, 12:30 pm, Jonathan jon.aposto...@gmail.com wrote: If I truncate the file to 100,000 bytes (file is: 1,917,408 bytes originally) it works fine

[android-developers] Loading large assets

2009-08-13 Thread Jonathan
I have a fairly large asset (about 2mb) that I would like to process. I only need to read from the InputStream 24 bytes at a time. I get IOExceptions for reads on files over a meg (via the AssetManager). I don't need to load the entire file into memory or anything, I just need to read it 24

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
I'm not exactly sure... I'm actually only reading the file 24 bytes at a time, so I'm not quite sure why the IOException is thrown. I'm never allocating a buffer for the full file. If I do two sequential one byte reads it's fine... but a single 2 byte read (using read(byte[])) it throws the

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
Someone on StackOverflow responded to my question there and mentioned it's a problem with compressed files. If the file is stored uncompressed it works. In order to do this (per their suggestion) I renamed my file to .mp3, which is a known compressed format to android, and the reads work. It

[android-developers] Re: IOException while reading a raw resource.

2009-08-13 Thread Jonathan
Right, you did say that, but as I mentioned I tested it and you were absolutely right. Everything worked when I changed the extension to .mp3. Thanks for your help! On Aug 13, 3:05 pm, Mark Murphy mmur...@commonsware.com wrote: Jonathan wrote: Someone on StackOverflow responded to my

[android-developers] android activity crashing after waking up from sleep

2009-08-14 Thread jonathan
i have an activity that crashes randomly after the device resume from a long period of sleep, the activity is forced to be landscape mode only. When the device resumes from sleep, the activity seems to be redrawing itself in portrait mode, occupying half the horizontal view, then have to force

[android-developers] set text color for all guis within the task

2009-09-08 Thread jonathan
I need to make a toggle button that when clicked, change all text colors to green. I am thinking about recursively go through all the guis to set the color. and I'll have to do this for every activity. is there another way? all suggestions are welcome. thanks

[android-developers] manually restart an activity

2009-09-08 Thread jonathan
Is there a way to restart an activity? The reason is that need to change the theme dynamically, and the activity needs to be restarted and redraw itself after the change. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: outgoing call data stream / channel

2009-12-17 Thread Jonathan
Could you please describe the 2 ways that you reference? On Dec 11, 9:40 am, Mr Pinguin pinguint...@googlemail.com wrote: Is it possible to record only VOICE_DOWNLINK    Voice call downlink (Rx) audio source ? It doesn't work for me. it records only 2 ways. On 4 Dez., 08:00, hongki park

[android-developers] Use of VOICE_CALL, VOICE_UPLINK, or VOICE_DOWNLINK

2009-12-17 Thread Jonathan
Has anyone had any success on any device with using VOICE_CALL, VOICE_UPLINK, or VOICE_DOWNLINK as the Audio Source versus MIC? I have had no success actually recording even the local side of the call. I realize this may be more of a hardware related issue, but any ideas or references would be

[android-developers] gphone and RF transceiver

2010-01-14 Thread jonathan
does GPhone support receiving signal/data from a nRF2401A Transceiver or similar? - The Nordic Semiconductor nRF2401A ultralow power 2.4GHz transceiver? link to the device http://www.nordicsemi.com/index.cfm?obj=productact=displaypro=64 -- You received this message because you are subscribed to

[android-developers] A simple question - I hope

2010-08-09 Thread Jonathan
. Is there a simple way to do this? Do I have to go into the ndk to get at /proc/meminfo? Thank you, Jonathan -- 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

[android-developers] Re: A simple question - I hope

2010-08-11 Thread Jonathan
at the App on the market called Android System Info, for example, it is doing something to calculate Max ram (on on Evo, for example, it reports 414 max ram, which I assum is the 512 minus something reserved) - this is what I'd like to know how to do. Thanks, Jonathan On Aug 11, 6:34 pm, Frank Weiss

[android-developers] Accelerometer not running when phone goes in standby

2010-04-13 Thread Jonathan
According to earlier posts, it has been suggested that the Accelerometer will no longer run in the background when the screen turns off and the phone goes into standby unless a partial wake lock is held: See: http://groups.google.com/group/android-developers/browse_thread/thread/9787faee6f36a4fe

[android-developers] how to apply a matrix to a layout and redraw it

2010-04-20 Thread Jonathan
Hi all, I think I have reached my wits end with this. Basically I am trying to apply pinch zooming to a relative layout with 2 children, an image view and a progress bar. Here is the relevant parts of my code: layout xml: ?xml version=1.0 encoding=utf-8? LinearLayout

[android-developers] Re: Accelerometer not working when screen turns off

2010-04-24 Thread Jonathan
!! On Apr 24, 10:14 am, Lance Nanek lna...@gmail.com wrote: http://code.google.com/p/android/issues/detail?id=3708 On Apr 13, 6:32 am, Jonathan jharrisweinb...@gmail.com wrote: As I understand it, there seems to have been a change in the OS that prevents the accelerometer from running when

[android-developers] newbie question

2010-07-09 Thread Jonathan
is in a different table? Any clues would be appreciated. Thanks, Jonathan package hello.android; import android.app.ListActivity; import android.content.Intent; import android.database.Cursor; import android.os.Bundle; //import android.provider.Contacts. People; //import

[android-developers] trying to connect a onListItemClick to a contact (newbie)

2010-07-12 Thread Jonathan
Hello, I am trying to create a simple hello world application and then dial the selected contacts number from my contacts. I can seem to figure out how to connect the selected user to his phone number. I have been playing with this for a few days. Any help would be appreciated. @Override

[android-developers] using intent

2010-07-12 Thread Jonathan
Cool, I figured out the method to shifting through the contactscontract but now get a weird error on the intent. Any help would be appreciated. I think I have the right manifest. Thanks, --Jonathan @Override // the class that is called every time the user clicks something protected

[android-developers] Re: using intent

2010-07-12 Thread Jonathan
So I can print the actual phone number that I wish to dial but I can actually dial it. Its seems like a trivial problem but I am not sure I am doing anything wrong in Eclipse. --Jonathan On Mon, Jul 12, 2010 at 5:05 PM, Jonathan jshuf...@gmail.com wrote: Cool, I figured out the method

[android-developers] Re: using intent

2010-07-12 Thread Jonathan
= phones.getString(phones.getColumnIndex(Phone.NUMBER)); System.out.println(strPhoneNumber); i.setData(Uri.parse(tel: + strPhoneNumber)); } } Thanks for listening. On Mon, Jul 12, 2010 at 5:37 PM, Jonathan jshuf...@gmail.com wrote: So I can print the actual

[android-developers] aidl's, service, and multiple packages

2010-07-21 Thread Jonathan
Hello everyone, I've created a service that is meant to communicated to an activity using aidl's and callback functions. I got it working just fine with my test activity in the same package. But I was wanting to expose this service to different activities running in a completely different .apk

[android-developers] word wrap on button

2009-05-27 Thread jonathan
the possible button width are fill_parent or wrap_content, is there a way to make it wrap words? --~--~-~--~~~---~--~~ 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] styled text on button?

2009-05-27 Thread jonathan
is it possible to have line breaks or more generally styled text (eg.html) on button? --~--~-~--~~~---~--~~ 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] update gui from a separate thread

2009-06-05 Thread jonathan
I need to display two timers on my app, I have two approaches, one is to implement the displays as TextView and then use java.util.Timer and TimerTask to update its text, however, the text doesn't redraw itself after update. The other approach is to use DigitalClock, but I can't find a way to

[android-developers] How to fix hit area after scaling

2010-05-11 Thread Jonathan
I am scaling the canvas of a linear layout on draw, but this throws off all the hit areas of my views inside of this layout. They respond as if there was no scaling taking place. What do I have to do to get themselves to re-register their hit areas? Thanks Jonathan -- You received this message

[android-developers] Re: Accelerometer not working when screen turns off

2010-05-11 Thread Jonathan
, Jonathan wrote: Thanks Lance.  I saw that... it is one of the highest ranked issues out there and the comments are being abused quite a bit, but there does not seem to be any response from Google about whether or not they plan to correct this going forward, or if they feel it is something

[android-developers] Replacing the default volume toast

2010-05-12 Thread Jonathan
Hi, Is there any way to replace the default volume toast (which is displayed when the volume up or down keys are pressed) with a custom- built toast? Couldn't find any method of doing this. Thanks! -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: How to fix hit area after scaling

2010-05-12 Thread Jonathan
scaling.  If you zoom in 2x on the canvas your hit area is now twice the size likewise if you zoomed out 2x then your hit area is half the size. On May 11, 2:52 pm, Jonathan jonathanmschm...@gmail.com wrote: I am scaling the canvas of a linear layout on draw, but this throws off all

[android-developers] Re: How to fix hit area after scaling

2010-05-12 Thread Jonathan
, Jonathan jonathanmschm...@gmail.com wrote: Right, thats what I am trying to figure out how to do. I currently don't know how to separate a hit area from an actual view. It would make sense to me if there was some function needed to be called that would then figure out the new bounds of the views

[android-developers] Re: Replacing the default volume toast

2010-05-16 Thread Jonathan
Okay... took a deeper look on the android sourcecode, and this is probably impossible via a standard (non-superuser) application. This CAN be done when recompiling the Android sourcecode, especially the core/res/res/layout/volume_adjust.xml, which defines the volume toast layout. But again, not

[android-developers] Re: Accelerometer not working when screen turns off

2010-05-26 Thread Jonathan
FYI - it looks like Issue 3708 referenced above has now been addressed! I am reaching out to the developer to see if we can get further clarification as to how exactly this has been addressed and in which release. Encouraging news! On May 11, 7:11 pm, Jonathan jharrisweinb...@gmail.com wrote

[android-developers] Re: Accelerometer not working when screen turns off

2010-05-27 Thread Jonathan
not to have to hold the wake lock to keep the sensors running in standby, this is still great news! On May 26, 10:44 pm, Jonathan jharrisweinb...@gmail.com wrote: FYI - it looks like Issue 3708 referenced above has now been addressed!  I am reaching out to the developer to see if we can get further

[android-developers] sdcard mount detection

2009-06-08 Thread jonathan
is there a way to be notified from my application of sdcard mount? any services etc? thanks! --~--~-~--~~~---~--~~ 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] sdcard mount detection

2009-06-09 Thread jonathan
is there a way to be notified from my application of sdcard mount? any services etc? thanks! --~--~-~--~~~---~--~~ 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] BroadcastReceiver not able to receive events

2009-06-15 Thread jonathan
onReceive(Context context, Intent intent) { Log.d(SDCardBroadCastReceiver, receive +intent.getAction()); System.err.println(jonathan receive +intent.getAction()); } } --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: BroadcastReceiver not able to receive events

2009-06-15 Thread jonathan
I did not mean to put both actions in the intent-filter, only one at a time. On Jun 14, 11:34 pm, jonathan topcod...@gmail.com wrote: I have created a BroadcastReceiver to detect SDCard mount and unmount event, however, I am not able to receive any events at all: here's

[android-developers] Re: BroadcastReceiver not able to receive events

2009-06-15 Thread jonathan
onReceive(Context context, Intent intent) {                Log.d(SDCardBroadCastReceiver, receive +intent.getAction());                System.err.println(jonathan receive +intent.getAction());        } } -- Jeff Sharkey jshar...@android.com

[android-developers] Re: BroadcastReceiver not able to receive events

2009-06-15 Thread jonathan
context, Intent intent) {                Log.d(SDCardBroadCastReceiver, receive +intent.getAction());                System.err.println(jonathan receive +intent.getAction());        } } -- Jeff Sharkey jshar...@android.com --~--~-~--~~~---~--~~ You

[android-developers] OCR on Android?

2009-06-29 Thread jonathan
are there any libraries on G1 Android that supports OCR(Optical character recognition)? thanks! --~--~-~--~~~---~--~~ 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] android developers challenge 2

2009-07-10 Thread jonathan
I can not find a dedicated group for android developers challenge 2, so I'm posting the questions here: 1.are apps that rely on web service or do heavy backend processing on a remote server eligible? 2.are web sites that's optimized for android/smart phone eligible? so the client side may simply

[android-developers] Re: android developers challenge 2

2009-07-10 Thread jonathan
Yusuf, thanks for the reply.would a website designed for gphone/smart phone be eligible? -Jonathan On Jul 10, 9:41 am, Yusuf T. Mobile yusuf.s...@t-mobile.com wrote: I am not an official nor a judge, but from my reading of the preliminary rules posted so far, leveraging a server does

[android-developers] html in button

2009-07-14 Thread jonathan
how do I use html in a Button? I tried the following, it's not working. Button android:id=@+id/voice_memo_button android:layout_width=wrap_content android:layout_height=wrap_content android:text=@string/x /Button resources string name=xpXX/pYY/string /resources

[android-developers] auto mount the usb mass storage?

2009-07-16 Thread jonathan
when connecting the device to pc, it prompts to mount it as usb mass storage, is there a way to force it to auto mount? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: auto mount the usb mass storage?

2009-07-16 Thread jonathan
is there a design reason for not able to auto mount? has anyone done modifying the platform for auto mount? On Jul 16, 10:07 am, Dianne Hackborn hack...@android.com wrote: Sorry I don't believe you can do this without modifying the platform. On Thu, Jul 16, 2009 at 9:54 AM, jonathan topcod

[android-developers] Loading a layout from XML inside of a derived class

2010-03-04 Thread Jonathan
Right now I have a class that extends LinearLayout and builds the view inside of the constructor using a series of addViews. I wanted to move this into an XML file, so I have the same view defined there. My problem is that I can't figure out how to load the XML file in the constructor of the

[android-developers] Re: Loading a layout from XML inside of a derived class

2010-03-04 Thread Jonathan
to do and answers all my questions. I figured I'd reply to my own post for archival purposes! Thanks! On Mar 4, 1:59 pm, Jonathan jon.aposto...@gmail.com wrote: Right now I have a class that extends LinearLayout and builds the view inside of the constructor using a series of addViews. I wanted

[android-developers] Sub-directories with depth greater than one in application space

2010-03-16 Thread Jonathan
I understand that I can create a directory within my applications files directory by using getDir(). This allows me to write to the root of my application's file library, and one directory deep. This lets us do things like: /database.db /sounds/sound1.wav /sounds/sound2.wav

[android-developers] Updating UI in one activity from another activity

2010-03-22 Thread Jonathan
I have an activity (Activity A) that simply shows a list that a user can pick from. In a separate activity (Activity B) this list can be manipulated (ie: add, delete). What's the best way to have an interaction in Activity B tell Activity A to refresh its list so when the user returns to

[android-developers] Re: Updating UI in one activity from another activity

2010-03-22 Thread Jonathan
how it could be done, assume I can't use a database. Is there a preferred method for these types of refresh notifications? On Mar 22, 9:52 am, Mark Murphy mmur...@commonsware.com wrote: Jonathan wrote: I have an activity (Activity A) that simply shows a list that a user can pick from

[android-developers] Re: Updating UI in one activity from another activity

2010-03-22 Thread Jonathan
...@commonsware.com wrote: Jonathan wrote: In this case it's not, but there's no reason why it couldn't be. Right now it's actually driven by a list of files that are present on the filesystem.  The other Activity downloads a file and when it's finished the list Activity should know

[android-developers] OpenGL ES 2.0 Shader Access Client Memory

2011-04-06 Thread Jonathan
From what I understand, the GPU in Android devices uses shared memory- RAM. So I'm thinking it must be possible to have a shader access client memory directly. The ideal would be to be able to pass an array pointer to the shader and be able to access a value in that array using that pointer, in

[android-developers] Video viewing?

2012-04-22 Thread Jonathan
to your device? Which Android handset you're using? ... and which version of Android's OS your device is running? Also, please LMK if there's an easier way for me to test this out ;o) Any help would be greatly appreciated! Thanks a ton in advance! Jonathan -- You received this message because

[android-developers] 1024x1024 texture drops framerate dramatically

2011-11-14 Thread Jonathan
When I use a 1024x1024 texture atlas, my framerate is miserable (less than 10fps rendering a few simple sprites). If I use a 512x512 texture atlas instead, my framerate is normal. I am testing on a G1. Has anyone had similar experiences? I thought a G1 should be able to handle 1024x1024. Is there

[android-developers] Re: 1024x1024 texture drops framerate dramatically

2011-11-15 Thread Jonathan
a piece of ancient hardware. On Nov 14, 4:09 pm, Jonathan jlani...@gmail.com wrote: When I use a1024x1024texture atlas, my framerate is miserable (less than 10fps rendering a few simple sprites). If I use a 512x512 texture atlas instead, my framerate is normal. I am testing on a G1. Has

[android-developers] Full bleed, no border in art

2011-12-29 Thread Jonathan
So would these be examples of *not* following the screenshot specs? https://market.android.com/details?id=com.halfbrick.fruitninjahl=en https://market.android.com/details?id=com.zeptolab.ctr.paidfeature=search_result#?t=W251bGwsMSwxLDEsImNvbS56ZXB0b2xhYi5jdHIucGFpZCJd -- You received this

[android-developers] Clarification on DPI

2011-12-29 Thread Jonathan
This quote was taken from an official Android blog post ( http://android-developers.blogspot.com/2011/07/new-tools-for-managing-screen-sizes.html ): The original Samsung Galaxy Tab is an interesting case. Physically it is a 1024x600 7” screen and thus classified as “large”. However the device

[android-developers] In-app Subscription: Purchase Token and purchase time uniqueness

2012-11-20 Thread Jonathan
I have a couple of questions regarding purchase tokens. 1) Is the purchase token supposed to be unique for each user per subscription product or just for each user? (In my tests, I have purchased two subscriptions, and both have the same purchase token. I just want to verify that this is

[android-developers] In-app Subscriptions: Can users resubscribe after a refund or cancellation?

2012-11-20 Thread Jonathan
Do users retain the ability to change their minds. If they cancel their subscriptions, then are they blocked from ever being able to re-subscribe again? Or do they still get the option to undo their cancellations? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Is in-app billing subsction purchaseToken persistent?

2012-11-20 Thread Jonathan
I believe that the purchaseToken persists, and it only changes its purchase state. It should not be possible to buy twice. When I have attempted a purchase request with the product id of an item already subscribed, it pops up with a message that indicates that I already own it and cannot

[android-developers] Re: Augmented Reality frameworks - what your choice?

2013-08-08 Thread Jonathan
I think AR has enough required frameworks, which I've used without major issue. On Thursday, August 8, 2013 3:37:18 AM UTC+5:30, Nathan wrote: From your experience, what is the best option for an Augmented reality framework? If you have developed one or developed with one, please comment.

[android-developers] Implementing Parcelable with Eclipse - MyClass.java is in the way of MyClass.aidl

2009-01-05 Thread Jonathan DERROUGH
Hi, I am trying to use the Parcelable interface to have an activity communicate with a service. Following the AIDL tutorial (http://code.google.com/intl/fr/android/ reference/aidl.html), I implemented the Parcelable interface in MyClass.java and created the corresponding .aidl file

[android-developers] Re: Implementing Parcelable with Eclipse - MyClass.java is in the way of MyClass.aidl

2009-01-06 Thread Jonathan DERROUGH
Hi, It seems that there is no need for an .aidl file since the parcelable declaration was automatically added to 'project.aidl' at the root of the project. Cheers. On Jan 4, 2:01 pm, Jonathan DERROUGH jonathan.derro...@gmail.com wrote: Hi, I am trying to use theParcelableinterface to have

[android-developers] Re: How to do an animated pie chart?

2009-01-07 Thread Jonathan Parker
Maybe when android support animated gifs that would be easier (assuming there is an animated gif generator library): http://groups.google.com/group/android-beginners/browse_thread/thread/edfc219135fe0909?pli=1 I wonder if Google Charts API will support animated gifs in the future. That would be a

[android-developers] Re: Xml validation

2009-01-07 Thread Jonathan Parker
The feature name is any fully-qualified URI. It is possible for an XMLReader to recognize a feature name but to be unable to set its value; this is especially true in the case of an adapter for a SAX1Parserhttp://java.sun.com/j2se/1.4.2/docs/api/org/xml/sax/Parser.html, which has no way of

[android-developers] Re: Code generator for SQLite interface?

2009-01-07 Thread Jonathan Parker
I think there was a post in the android-beginners about ORMs. Maybe do a search on the archives. On Wed, Jan 7, 2009 at 8:04 AM, antlers googlec...@antlersoft.com wrote: I've been looking at the code for connectbot, and I notice that the objects that correspond to records in the SQLite

[android-developers] Touch screen slowdown

2009-03-26 Thread Jonathan Fisher
I am having a problem with the touch screen in that whenever the screen is touched, it causes significant slowdown because of the large number of callbacks that are being made. I have read in this group about throttling the UI thread, but this does not seem a good solution and i can't

[android-developers] Disabling Contact Sync

2009-10-06 Thread Jonathan Herriott
Contact syncing. Any help would be great. Thanks, Jonathan Herriott --~--~-~--~~~---~--~~ 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

[android-developers] Re: Disabling Contact Sync

2009-10-07 Thread Jonathan Herriott
So, I figured out a way to do it. It's a way that things shouldn't be done since it requires using APIs that have @hide. On Oct 6, 4:18 pm, Jonathan Herriott herri...@gmail.com wrote: Hi, So, I'm trying to figure out a way to disable Auto-Sync of the Contacts database because there may

[android-developers] Re: Windows driver for HTC G1 phone

2008-10-23 Thread Jonathan Herriott
Hi, The Found New Hardware Wizard is unable to detect the drivers after I already specified exactly which directory to look. Has anyone else run into these issues? Thanks On Oct 22, 1:32 am, Beau Gunderson [EMAIL PROTECTED] wrote: Here's the link from the other thread on this topic:

[android-developers] Re: Comunication Server-Phone: SMS directed to an application (0.9 SDK)

2008-11-17 Thread Jonathan Herriott
that android don´t support this yet... On 10 out, 18:49, Jonathan Herriott [EMAIL PROTECTED] wrote: Bump.  This needs to be addressed. On Aug 29, 10:31 am, Cristina [EMAIL PROTECTED] wrote: Hi! I am actually using the http client library in order to comunicate from my app

[android-developers] Re: Working with the new ContactContracts API

2009-11-10 Thread Jonathan Herriott
AbstractThreadedSyncAdapter. I'm assuming there must be a service I must implement involved somewhere, but I can't seem to find anything. Would you be able to point me in the right direction? Thanks, Jonathan Herriott On Nov 2, 5:24 pm, Dmitri Plotnikov dplotni...@google.com wrote: You can

[android-developers] Re: Extending contacts

2009-11-10 Thread Jonathan Herriott
you guys about these things ;) Thanks, Jonathan Herriott On Oct 27, 5:23 pm, Jeff Sharkey jshar...@android.com wrote: If the VoIP app can complete calls to any normal phone number, it should have an intent-filter for normal tel: style Intents, which allows you to leverage any phone numbers

[android-developers] Desarrollar para diferentes modelos

2010-01-29 Thread Jonathan Alonso
cual sera el problema por que no tengo el nexus one para probar, me comentaron que ahi una forma de programar que funcione para todos los moviles, alguien conoce esta solucion?, o que otra opcion tengo Gracias Jonathan Alonso -- You received this message because you are subscribed to the Google

[android-developers] Re: adding a quick add event to the Calendar

2010-02-01 Thread Jonathan Epstein
-  it is possible now to do this quick event addition and also jump to a specific event.  Inclusion of reminder to the quickly added event is a likely future enhancement. On Jan 13, 8:26 am, Jonathan Epstein jae6...@gmail.com wrote: I am an experienced developer, but an Android newbie.  I have a Droid

[android-developers] Signing in to Google for Google Document access

2010-02-05 Thread Jonathan Nalewajek
I am working on an app where the user inputs some numbers, my app performs a few relevant calculations, and displays the result. However, I would like it if the user could somehow save this value to a Google Spreadsheet. My problem is, I have no idea how to authenticate with Google. I have been

[android-developers] Re: Signing in to Google for Google Document access

2010-02-08 Thread Jonathan Nalewajek
/AuthForInstalledApps.html. If you are targetting android 2.0 up only, you should use the built in AccountManager to get the token that you'd otherwise get from ClientLogin. I know because I just added that for my own app :) On Feb 6, 4:38 am, Jonathan Nalewajek jonnalewa...@gmail.com wrote: I am working on an app

[android-developers] Re: Determining Who Passed an Intent to You

2009-08-18 Thread Jonathan Herriott
. There are also issues with that approach as well that I'd have to deal with. Thanks, Jonathan Herriott On Aug 18, 11:30 am, Jiri jiriheitla...@googlemail.com wrote: COuld you maybe use intent.getComponent() and then use the packageManager its getReceiverInfo(componentName); http

  1   2   3   4   >