[android-developers] Source code for live wallpaper settings

2011-07-04 Thread Zach
I want to make a button that points to my username on the market so a list of my apps will come up when the button is pressed. I also want an image as my background within wallpaper settings. What are the source codes for these and which xml folders do I put them in? I dont want java, but the tex

[android-developers] Re: C2DM application server

2012-10-12 Thread Zach
Hi, Yes you have to write a server application using Java/C#/PHP etc and port it in appropriate server. You can use your university server if it supports your web application. This is a good example http://www.vogella.com/articles/AndroidCloudToDeviceMessaging/article.html Cheers On Friday, Oc

Re: [android-developers] Disconnect from a WiFi Direct Group

2012-10-12 Thread Zach
Hi, Thanks for your reply. I was initially using removeGroup. But here is what happened A client calls remove group and he will be disconnected from the owner. But later when Group owner tries to remove the group, it goes to the OnFailure call back. So the only reason would be there is no group a

[android-developers] WifiP2pManager.ConnectionInfoListener onConnectionInfoAvailable (WifiP2pInfo info)

2012-10-16 Thread Zach
Hi I am working on wifi direct. After sending a connect request I was expecting a call back to the onConnectionInfoAvailable call back. But that wont happen always for some reason. And at times it takes a while when i finally receives a callback. What am i doing wrong here? Is this call back a

[android-developers] WiFi Direct Group Creation with Multiple Devices

2012-10-18 Thread Zach
Hi, I am doing some experiments with WiFi Direct. I was successful in creating a group and communication with each other(between 2 Devices) . I would like to know, say I have 10 devices and all starts to create a group, by calling createGroup functionality in WiFiP2Pmanager. Whether all devices

Re: [android-developers] WifiP2pManager.ConnectionInfoListener onConnectionInfoAvailable (WifiP2pInfo info)

2012-10-18 Thread Zach
gt; Do you see the peer status (WifiP2pDevice has a status field) as connected > when you listen P2P_PEERS_CHANGED_ACTION broadcast and request the peers ? > > On Tue, Oct 16, 2012 at 5:11 AM, Zach >wrote: > >> Hi >> I am working on wifi direct. After sending a conn

[android-developers] WifiDirect WifiP2pManager.ConnectionInfoListener

2012-10-22 Thread Zach
Hi WifiP2pManager.ConnectionInfoListener has a onConnectionInfoAvailable() call back. I am wondering what info this call back is ret

[android-developers] WifiDirect with WifiDirect NSD

2012-10-23 Thread Zach
Hi, I am working on wifi direct with network service discovery. Heres what I do for that For a Server(Device which first starts) 1. Initialize and Start Wifi Direct 2. Start a WifiDirect Group 3. Register a Local Service and Start service discovery For a client(All devices which s

Re: [android-developers] WifiDirect with WifiDirect NSD

2012-10-24 Thread Zach
sday, October 23, 2012 5:59:02 PM UTC+1, Irfan Sheriff wrote: > > > > On Tue, Oct 23, 2012 at 9:38 AM, Zach >wrote: > >> Hi, >> >> I am working on wifi direct with network service discovery. Heres what I >> do for that >> >> For a Server(Devi

[android-developers] Re: WifiDirect with WifiDirect NSD

2012-10-24 Thread Zach
blocked some how. I am not 100% sure about my inference. If you think differently let me know. Thanks On Tuesday, October 23, 2012 5:38:46 PM UTC+1, Zach wrote: > > Hi, > > I am working on wifi direct with network service discovery. Heres what I > do for that > > For a Serv

[android-developers] WifiP2pManager.BUSY State

2012-11-07 Thread Zach
sometime when I try to create a group in WifiDirect it returns back WifiP2pManager.BUSY message as reason for failure. I am not sure why this happens. But if I restart the WIFI interface it will again work. What could be the possible reason for this? How this can be avoided? is there any way

[android-developers] Handle WifiDirect Invitation Decline

2012-11-23 Thread Zach
Hi How to handle if the Group Owner declines the request to join the group? Is there any call back available for the same? 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@googl

[android-developers] Widget alignment - Small, Medium, High density

2010-05-24 Thread Zach
I have followed the tutorials on developers.android.com and designed my widget using the provided widget frame assets for a 2x2 horizontal and portrait layout. This frame asset was modified to create a 1x1 frame by following the recommendation of grabbing a screenshot and aligning to the search wi

[android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-18 Thread Zach
We were quite surprised to get a user report that our app was getting a force-close on startup in 2.3.3. After upgrading our Nexus One to 2.3.3 we can finally confirm that something incredibly odd and blatant has happened with the way the camera works. Odd because there isn't a single change t

[android-developers] Re: Anyone know the name of this menu?

2011-03-18 Thread Zach
Yeah, that's the "port this app to Android but make it look like iPhone" menu. It's just a bunch of images thrown onto a background. I would highly recommend not doing this to avoid screen density mayhem. -- You received this message because you are subscribed to the Google Groups "Android De

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-18 Thread Zach
> > What are your symptoms for the "global in scope" part? > Global in scope meaning that no matter where we get/set camera parameters, a subset of those parameters are now always null (on get) where before they were not. The most noticeable parameter is the preview size. Also related is we've

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-18 Thread Zach
> > If you haven't done so already, try my apps on your Nexus One, and see > what happens. I would do it myself, but my Nexus One's backlight is > pushing up daisies... > I'll do some testing Monday morning and post my results. -- You received this message because you are subscribed to the Googl

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-21 Thread Zach
I've had some opportunity to test. Mark, I tested your code but it seems this issue is tied to using autofocus and preview callbacks. I've created a minimalistic sample that reproduces the problem. The following code will run on all of my Android devices that are < 2.3.3 but not on 2.3.3. s

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-21 Thread Zach
You will also need the manifest properties: -- 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+unsubsc

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-21 Thread Zach
I posted http://code.google.com/p/android/issues/detail?id=15112 a while back. We originally based our app structure on the zxing libraries which I believe Barcode Scanner is using. I have it on my to-do list to check that source and see if it has changed how it deals with the camera in 2.3.3.

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-22 Thread Zach
> > I'm surprised your Nexus S isn't already on 2.3.3. That update got > pushed out by T-Mo a few weeks ago, IIRC. > Unfortunately, most of our development phones do not have data plans. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

Re: [android-developers] No camera changes in 2.3.3 but camera apps break going from 2.3 to 2.3.3.

2011-03-22 Thread Zach
I can now confirm that this problem only exists on the Nexus One on 2.3.3. I've updated our Nexus S to 2.3.3 and it does not have these problems. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

[android-developers] Device Drivers - Who Maintains the Bastard Devices?

2011-03-28 Thread Zach
I am discovering issues in some audio and display driver implementations in Android. I'm trying to determine where to report these issues. I'l like to know how drivers are handled with Android releases, say for instance the 2.3.0 and 2.3.3 releases. Let's take the Nexus One and Nexus S as goo

[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,

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

2009-04-14 Thread Zach Hobbs
ugh I still have the project.aidl file in the project's root. Also, the option to generate the AIDL for the Parcelables is no longer available. Anyone know how to get your Parcelables noticed in the new SDK? Thanks, Zach --~--~-~--~~~---~--~~ You received thi

[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] 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

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

2009-04-15 Thread Zach Hobbs
Thanks for the info. Looks like my problem was that I was declaring the parcelable with the whole package like : package parcelable . it worked if I just declared the parcelable like "parelable ". Thanks, Zach On Apr 14, 9:34 pm, Xavier Ducrohet wrote: > I have just reali

[android-developers] bug in FileInputStream for some chars?

2009-09-21 Thread Jan Zach
Hi, I am trying to parse an xml file from the /sdcard/... directory using the XmlPullParser. For a file containing a mixture of Czech and Japanese (czech national chars + kana + kanji) I am getting exception: position:END_TAG so that it looks that the parser cannot recognize tags properly. I have

[android-developers] AudioTrack and MP3 data

2009-04-28 Thread Zach Hobbs
just realized that AudioTrack only supports PCM audio. Is it worth decoding the MP3 data in Java? Or is there anyway to use the MediaPlayer's native decoding? Just trying to figure out what is worse, running a local HTTP server, or decoding MP3 audio to PCM in java.

[android-developers] VerifyError with Maps Add-ons

2009-05-07 Thread Zach Hobbs
15:44:32.224: ERROR/AndroidRuntime(16630): at dalvik.system.NativeStart.main(Native Method) Thanks, Zach --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

[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] 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: Bluetooth

2009-05-11 Thread Zach Hobbs
asy to interface with something like this: http://www.sparkfun.com/commerce/product_info.php?products_id=158 Thanks, Zach --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[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, 1

[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: VerifyError with Maps Add-ons

2009-05-12 Thread Zach Hobbs
I can run the BroadcastReceiver in another process and it does fix it, only problem is peekService() doesn't appear to be working for me across processes :( Thanks anyways for the info. -Zach On May 11, 8:52 pm, Dianne Hackborn wrote: > Hi, it looks like there is a bug initia

[android-developers] VerifyError on Custom View

2009-06-01 Thread Zach Hobbs
t. Thanks, Zach --~--~-~--~~~---~--~~ 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 t

[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 G

[android-developers] WebView Canvas rendering issue in 4.2.2

2013-04-23 Thread Zach Babb
I have an app that uses a local html page to render images to a canvas element. My code works in both the default browser and Chrome, but when I try to run that code in a WebView in my app it doesn't render. In fact, none of the canvas drawing I tried (fillRect, strokeRect) worked. The release

[android-developers] Instant upload without sync

2012-05-02 Thread zach white
I would like the ability to be able use the Google+ instant upload without having all the photos from my picasa web synced onto my Galaxy Nexus gallery app. I have thousands of pictures in my web album that I don't want on my Galaxy Nexus with no way to hide them or remove them from my device.

[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] 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] 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: 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] 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: 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 med

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

2009-01-30 Thread Zach Hobbs
You can create a custom singleLine TextView and animate it by creating a loop and calling scrollBy(x,y) incrementing/decrementing the x value. -Zach On Thursday 29 January 2009 7:47:49 pm Rodrigo wrote: > HI, > > What is the best way to implement scrolling text (with behavior >

[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

[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: 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: 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: 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: 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: 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: 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: 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 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: 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: 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: 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: 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: 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: 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: 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] 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] Back Button Activity

2010-08-25 Thread Zach Geis
Hi, I was wondering how or if it is possible to exclude activities from the back buttons history list? For example not letting the user back into the Splash Screen? Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

Re: [android-developers] Android tablet emulator

2010-10-28 Thread Zach Rattner
group at > http://groups.google.com/group/android-developers?hl=en -- Zach Rattner -- 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 f

[android-developers] Issue with JNI_OnLoad in pocketsphinx

2010-10-28 Thread Zach Rattner
an if "No JNI_OnLoad found"? Did I mess something up in the NDK step? Thanks, Zach -- 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 unsubscr