[android-developers] Sticky Broadcast Intent

2009-07-20 Thread Zach Hobbs
Is there anyway to determine if an Intent passed into a BroadcastReceiver's onReceive is the result of a sticky Boradcast Intent, or if it was just sent? Thanks, Zach --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "A

[android-developers] VerifyError on Custom View

2009-06-01 Thread Zach Hobbs
I have setup remote crash reports for unhandled java exceptions. I am getting lots of users who are crashing right on startup, and I'm seeing VerifyErrors that look like they are thrown right on startup. I have tested this app extensively on 1.1 and 1.5 on many different devices, but some phone

[android-developers] Re: VerifyError with Maps Add-ons

2009-05-12 Thread Zach Hobbs
lizing a process when it is launched > to handle a broadcast sent to an explicit component.  In this case its > shared libraries are not linked to it.  This will be fixed in a future > release, but I don't know of a work-around for 1.5. > > > > On Mon, May 11, 2009 at 2:55 PM,

[android-developers] Re: Bluetooth and Serial Port Profile

2009-05-12 Thread Zach Hobbs
Another note: You don't really have to flash the image with the @hide gone, that class will be accessible by any APK. You just need to have it visible in your development environment. -Zach On May 12, 1:05 pm, Alin Radut wrote: > On May 12, 7:00 am, Zach Hobbs wrote: > > &g

[android-developers] Re: Bluetooth and Serial Port Profile

2009-05-11 Thread Zach Hobbs
Did you change anything when you built the SDK? If not, then the classes will still not be visible. Hint: classes or methods with "@hide" in the comment block above the code are not visible in the jar built for the SDK. -Zach On May 11, 1:57 pm, Alin Radut wrote: > On May 3, 10:46 am, Nick P

[android-developers] Re: Bluetooth

2009-05-11 Thread Zach Hobbs
On May 11, 1:15 pm, Nick Pelly wrote: > Input as to what profiles are important is appreciated - especially > from people actually writing apps. I vote for SPP. I would like to be able to control microcontroller projects with a nice GUI on my Android phone. It would make it pretty easy to inte

[android-developers] Re: VerifyError with Maps Add-ons

2009-05-11 Thread Zach Hobbs
Some more information: it only happens if I have a widget (unrelated to maps) enabled on the Launcher the first time I access this MapActivity -Zach On May 11, 12:34 pm, Zach Hobbs wrote: > Not doing any instrumentation tests.  The superclass of > MusicMapActiv

[android-developers] Re: VerifyError with Maps Add-ons

2009-05-11 Thread Zach Hobbs
Not doing any instrumentation tests. The superclass of MusicMapActivity is com.google.android.maps.MapActivity, so how could this class not be found? I do have "" in my Manifest under my tag. Thanks, -Zach On May 8, 4:15 pm, fadden wrote: > On May 7, 12:52 pm, Zach Hobbs wr

[android-developers] VerifyError with Maps Add-ons

2009-05-07 Thread Zach Hobbs
After the first time I (re)install a new APK sometimes I get VerifyErrors when an Activity references another Activity that extends MapActivity. The app will crash, and then when I restart it it works fine. This is only on 1.5 targets with the google API addons (target 3). If anyone has any sug

[android-developers] AudioTrack and MP3 data

2009-04-28 Thread Zach Hobbs
I have been streaming MP3 audio tracks using the Apache Commons libraries to create a local HTTP server and then connecting to it with MediaPlayer. This is a very cumbersome setup, and has tons of overhead...that's why I was excited about the introduction of AudioTrack. Unfortunately I just real

[android-developers] Re: Parcelables / project.aidl in SDK 1.5

2009-04-15 Thread Zach Hobbs
just did a quick test following the information in the link I posted > > above and it is working for me. > > > Make sure your aidl file declares the package it's in (like any java class). > > > Xav > > > On Tue, Apr 14, 2009 at 1:05 PM, Xavier Ducrohet wrote: >

[android-developers] Re: create aidl preprocess file for parcelable

2009-04-14 Thread Zach Hobbs
I'm having the same problem :( http://groups.google.com/group/android-developers/browse_thread/thread/3f0117114ee7c0f8# -Zach On Apr 14, 3:20 am, "benjamin.lehej...@googlemail.com" wrote: > Hello android developers, > > yesterday the early look Android SDK 1.5 has released and i tried to > im

[android-developers] Re: Parcelables / project.aidl in SDK 1.5

2009-04-14 Thread Zach Hobbs
ation in 1.5 on AIDL still refers to the "Android Tools > Create Aidl preprocess file for Parcelable classes" which is not available in ADT 0.9. Should I open a bug for this? Thanks, Zach On Apr 14, 12:52 pm, Zach Hobbs wrote: > I'm attempting to get build my project

[android-developers] Parcelables / project.aidl in SDK 1.5

2009-04-14 Thread Zach Hobbs
I'm attempting to get build my project with the early preview SDK, targeting 1.1 and am having problems getting AIDL files to recognize imports for Parcelables. In the previous ADT you could right click on your project, hit "Android Tools" and have an option something like "Generate AIDL for Parce

[android-developers] Target 1.1 with early look SDK

2009-04-14 Thread Zach Hobbs
Is it safe to use the 1.5 early look SDK to build production apps for 1.1 targets? I want to start developing a cupcake branch of my software, just wondering if I'll need to switch back to using the stable SDK for production builds... Thanks, Zach --~--~-~--~~~---~--~

[android-developers] Re: how to implement scrolling text?

2009-01-30 Thread Zach Hobbs
gt; screen? > > If that's not possible, what's an alternative way of implementing this > behavior? > > Thanks! > -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads --~--~-~--~~~---~--~~ You received this me

[android-developers] Re: what's the "Media Button"?

2009-01-30 Thread Zach Hobbs
It's the button on the headset included with the G1. Thanks, Zach On Friday 30 January 2009 12:39:37 pm Peter Jeffe wrote: > Documentation for Intent.ACTION_MEDIA_BUTTON says "Broadcast Action: > The "Media Button" was pressed." Anyone know exactly what the media > button is? Is it intended f

[android-developers] Re: Android Source Code Now Available

2008-10-21 Thread Zach Hobbs
Everything in here: http://git.source.android.com/?p=platform/packages/providers/MediaProvider.git;a=tree This page can help you find what you're looking for also: http://source.android.com/projects -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Tuesd

[android-developers] Re: New Animation Interpolators

2008-10-14 Thread Zach Hobbs
Nice!! -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Tuesday 14 October 2008 8:30:28 am skink wrote: > hi, > > just implemented several animation interpolators: > Back, Bounce, Circ, Cubic, Elastic, Expo, > Quad, Quart, Quint & Sine >

[android-developers] app_thumbnails in data folder

2008-10-03 Thread Zach Hobbs
2_pic.save 1128052944_pic.save 1128638760_pic.save 1128568696_pic.save 1128650328_pic.save 1129447312_pic.save 1129217304_pic.save -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads --~--~-~--~~~---~--~~ You received this message because yo

[android-developers] Re: Activities Refactoring

2008-10-01 Thread Zach Hobbs
You may want to consider using an ActivityGroup or TabActivity. That way your Activities have separate logic, but can still be animated in/out. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Wednesday 01 October 2008 9:18:35 am skink wrote: > hi, > >

[android-developers] ActivityGroup unable to restart Activity

2008-09-16 Thread Zach Hobbs
nyone have any ideas for working around this issue? -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Allocation too large for this process

2008-09-12 Thread Zach Hobbs
n(Native Method) -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] Re: Question about details of how services may be used.

2008-09-10 Thread Zach Hobbs
You can startService(Intent) and then bind to it at anytime using the normal bind/unbind. This will also keep your service running after you unbind from it. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Wednesday 10 September 2008 7:16:13 am szeldon wrote: >

[android-developers] Re: Looking for Mobile Social Software Apps on Android

2008-07-03 Thread Zach Hobbs
There is a place on HelloAndroid.com where people have posted some of the apps they're working on. There are a handful of social apps on there: http://www.helloandroid.com/apps -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Thursday 03 July 2008 14:27:51

[android-developers] Re: Show a (progress) dialog in the onClick event of an alert dialog

2008-06-30 Thread Zach Hobbs
-- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Monday 30 June 2008 11:55:31 6real wrote: > Dear all, > > Here is the behavior I expect from my app : > I have a customized YES/NO dialog box. > > if the customer says YES, then I'd like to show a progress

[android-developers] Re: android emulator takes over sound card

2008-06-29 Thread Zach Hobbs
Also, I have noticed that in KDE if you're playing sound when the emulator starts up it won't take it over, but somehow the sound still works in the emulator. Could be some kind of irregularity with my setup, but worth a shot. -- Zach Hobbs HelloAndroid.com Android OS news,

[android-developers] Re: Adding half screen view on a map

2008-06-29 Thread Zach Hobbs
I have a tutorial that does something like this: http://www.helloandroid.com/node/206 Good luck :) -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Sunday 29 June 2008 03:21:00 dreamer wrote: > Hi, > > I want to show a view containing labels and buttons on l

[android-developers] Re: Why do I get this SQLiteCursor exception ?

2008-06-29 Thread Zach Hobbs
Usually happens when you fail to close a cursor. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Saturday 28 June 2008 06:13:59 Gavin Bong wrote: > Specifically what causes this to happen ? Thanks. > > > DEBUG/dalvikvm(927): Exceptio

[android-developers] Re: Null Pointer Exception

2008-06-21 Thread Zach Hobbs
ception is thrown while debugging your app. This is a good way to determine what may be happening. Also, the line number will be available if you look at the LogCat output. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Saturday 21 June 2008 07:29:02 redhatab w

[android-developers] Re: How do we implemet Slider bar?

2008-06-20 Thread Zach Hobbs
There is a tutorial on making a bar like this at: http://www.helloandroid.com/node/250 -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Thursday 19 June 2008 06:55:42 Prem wrote: > My requirement is to make a slider bar with pointer in center. Slider > bar is

[android-developers] Re: Running a program when emulator start

2008-06-18 Thread Zach Hobbs
.html -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Wednesday 18 June 2008 16:00:38 Jaikishan Jalan wrote: > Hi, > > Thanks for the reply. I understood what you are saying. I wrote my Intent > Receiver which will receive to this broadcast message. No

[android-developers] Re: how can i create a apk file from my project

2008-05-13 Thread Zach Hobbs
You can find an APK file in your project's bin folder, or you can right click on your project and hit "Android Tools -> Export Application Package". -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Tuesday 13 May 2008 05:30:59 mystic-d wrote: > h

[android-developers] Re: Retrieving an ApplicationContext

2008-04-10 Thread Zach Hobbs
Activity is a subclass of ApplicationContext, so in an Activity you can just use "this". -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Thursday 10 April 2008 02:43:35 Adriano Crestani wrote: > Is there a way to get a reference to an ApplicationC

[android-developers] Re: Text input on HVGA mode with no physical keys?

2008-04-03 Thread Zach Hobbs
Please don't "bump" a message twice 15 mins after posting. It's obvious that there will be some kind of on screen keyboard that users will use to input keys (like the iPhone), but it is not available with the currently SDK. -- Zach Hobbs HelloAndroid.com Androi

[android-developers] Re: Keeping Google's Android Honest

2008-03-31 Thread Zach Hobbs
I second that! GPL v2 or v3 will help keep the community thriving. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Monday 31 March 2008 23:55:22 Steve918 wrote: > I recently published a post discussing reasons why GPL V3 is the > obvious choice for A

[android-developers] Re: Changing activity label

2008-03-31 Thread Zach Hobbs
Try setTitle(String) -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Monday 31 March 2008 22:10:18 DotNetCode wrote: > I want to dynamically change the label of the activity in my code. > Can some one please help me achieve this? > > > > How can

[android-developers] Re: Which Log API should be used ?

2008-03-29 Thread Zach Hobbs
android.util.Log -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Saturday 29 March 2008 07:10:23 Derek wrote: > Hi, > > Android comes with android.util.Log and Apache Commons logging. Which > one should be used ? > Both seems to work and generate tra

[android-developers] Re: List of @android:drawables ?

2008-03-28 Thread Zach Hobbs
It's in the docs: http://code.google.com/android/reference/android/R.drawable.html -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Friday 28 March 2008 12:40:24 Harsh Jain wrote: > Where can i get the list of all @android:drawables I can use ? > > re

[android-developers] Re: couldn't import class Bitmap

2008-03-24 Thread Zach Hobbs
parcelable BitMap; End Good luck! -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Monday 24 March 2008 21:30:57 [EMAIL PROTECTED] wrote: > Hi all, > I have a aidl file containing The foll