[android-developers] Re: Deauthorizing account access in AccounManager

2010-04-26 Thread brian
Also, has anyone figured out what authTokenType is supposed to represent? AFAIK, it is a account specific value. Your implementation of AbstractAccountAuthenticator can enforce any or no restrictions or conventions on its use. Note, this is only my read, your mileage may vary. Anyway, I'm

[android-developers] Announcement: DynaDroid - an open source micro-framework for Android

2010-04-26 Thread Brian Knorr
. Enjoy! Brian Knorr http://www.starterstep.com -- 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

[android-developers] Re: Avoid cache name collisions with webkit

2010-04-19 Thread Brian
Never mind. I looked at the source for the CacheManager class today, and for web views Android is apparently creating a subdirectory in the cache directory. I could do the same, and therefore stay well out of its way. -- You received this message because you are subscribed to the Google Groups

[android-developers] AbstractAccountAuthenticator getAuthToken

2010-04-19 Thread brian
I'd like to limit or at least know who is calling my AbstractAccountAuthenticator. Ultimately, I'd like to get the signatures of the calling application before I return from getAuthToken int callingUid = Binder.getCallingUid(); int callingPid =

[android-developers] Avoid cache name collisions with webkit

2010-04-16 Thread Brian
I'd like to use my app's cache directory for storing small image files (80x80 thumbnails) downloaded from the internet, but at the same time I'm using WebViews which also want to use that area for images. What I want to avoid are file name collisions with webkit, so that cached content between

[android-developers] Geocoder and AsyncTask

2010-04-15 Thread brian karlo gutierrez
    e.printStackTrace();     return Error;     } }     @Override     protected void onPostExecute(String result)     {     Log.v(TAG ,Result: + result);     }     } Hoping for your help.  Thanks. - Brian -- You received this message

[android-developers] NullPointerException in ItemizedOverlay.getIndexToDraw

2010-04-02 Thread Brian Hardy
more code if necessary. Thanks /brian -- 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

[android-developers] VideoView - MediaPlayer : how do they recover from network interruption or handover ?

2010-04-02 Thread brian
Use case: User starts viewing video on current network == WiFi User moves out of WiFi range. Evdo network handover happens successfully. Observed behavior: Once buffer runs out user gets Cannot play this video Expected behavior: Either MediaPlayer recovers from network error or provides

[android-developers] Webview Issue Displaying 100% Wide Pages

2010-03-26 Thread Brian
I am working on an app that uses webview for a help section. The help section is loaded from an external site, that is specifically designed for mobile phones. There are a series of 5 pages, with a simple next/ back navigation. When the first page loads, it loads perfectly, filling the entire

[android-developers] removed android library

2010-03-16 Thread Brian
I am using Windows and Ecilpse. Through a few mis-clicks, I removed the Android library from my project. I am able to add the android.jar file from the specific version I want but that is does not allow me to run. In ecilpse, how do I add an Android library like 1.6 to an existing project? --

[android-developers] Re: what is the detailed relation between contacts and raw_contacts?

2010-03-11 Thread brian
As far as I can tell, in order to provide PRESENCE, a 3rd party provider needs to populate the following fields:PROTOCOL,CUSTOM_PROTOCOL,IM_HANDLE,IM_ACCOUNT At the same time there is a note on DATA_ID: If this field is not specified, the provider will attempt to find a data row that matches the

[android-developers] System kills my service even no other resource consuming application is running

2010-03-09 Thread brian karlo gutierrez
that the service was closed I don't see any log information already...seems like the phone was totally disconnected from my eclipse. Hoping for your help. Thanks, -Brian -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Scheduling restart of crashed service, but no call to onStart() follows

2010-03-09 Thread brian karlo gutierrez
() but as I have said onStart() wasn't called after onCreate().     Anyone having the same issue? Thanks, Brian --- On Mon, 3/8/10, kostmo kos...@gmail.com wrote: From: kostmo kos...@gmail.com Subject: [android-developers] Scheduling restart of crashed service, but no call to onStart() follows

[android-developers] Re: what is the detailed relation between contacts and raw_contacts?

2010-03-08 Thread brian
+1 - the documentation in this area needs some work. To do the simplest thing takes hours of reverse engineering. For example, try and figure out how to enable presence for a 3rd party provider -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Small screen devices cannot see my app even declared already in the manifest

2010-03-08 Thread brian karlo gutierrez
manifest file.     application         /application     uses-sdk android:minSdkVersion=3 /     supports-screens android:smallScreens=true android:anyDensity=true/     Hoping for your great help. Regards, Brian -- You received this message because you are subscribed

Re: [android-developers] Re: Small screen devices cannot see my app even declared already in the manifest

2010-03-08 Thread brian karlo gutierrez
Ok...thanks for this..I also found out that I really don't need the permission of the CAMERA because I used an Intent to launch another application that uses the camera..but this one is already a good help in case I will be directly accessing the device camera. Thanks, -Brian --- On Tue, 3/9

[android-developers] What replaced activityCreator ?

2010-02-25 Thread Brian
I have noticed several tutorials use the activityCreator script, for doing various different types of builds for android. But i can not find that script in the SDK it appears to have been deprecated sevaral versions ago. So my question is, what has replaced activityCreator ? -- You received

[android-developers] Re: What replaced activityCreator ?

2010-02-25 Thread Brian
I see now that it has been replaced by android create project as documented on this web page http://developer.android.com/guide/tutorials/hello-world.html On Feb 24, 11:21 pm, Brian zootsuitbr...@gmail.com wrote: I have noticed several tutorials use the activityCreator script, for doing various

[android-developers] Icon size on 480x800 resolution

2010-02-17 Thread Brian Yoon
I found some informations about size of icons on developers' guide. But on 480x800 resolution, i couldn't find any information about that. Is there any formats or recomanded size of icons on 480x800 320x480 screen's icon size : 48x48 480x800 screen's icon size : ? -- You received this

[android-developers] Download and Display 9 Patch Images

2010-02-03 Thread brian karlo gutierrez
= BitmapDrawable.createFromStream(this.mStream, imgfn); this.mStream.close(); this.mImageLayout.setBackgroundDrawable( image ); Hoping for some help. Thanks, Brian -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Download and Display 9 Patch Images

2010-02-03 Thread brian karlo gutierrez
should be included in the docs that only in the res folder if it is... anyone? Thanks. -Brian --- On Thu, 2/4/10, haric zhu haric@gmail.com wrote: From: haric zhu haric@gmail.com Subject: Re: [android-developers] Download and Display 9 Patch Images To: android-developers@googlegroups.com

Re: [android-developers] VerifyError - how can I solve this error?

2010-01-31 Thread brian karlo gutierrez
=@string/app_name/ After declaring that so far I didn't have the VerifyError issue already. Hope it helps. -Brian --- On Sat, 1/30/10, Martin google-gro...@digle.de wrote: From: Martin google-gro...@digle.de Subject: [android-developers] VerifyError - how can I solve this error? To: Android

Re: [android-developers] How do I kill a blocking thread?

2010-01-29 Thread brian karlo gutierrez
)     {     ...     }     }     onStop()     {     this.mClient.getConnectionManager.shutdown();  //triggers to send an IOException if the client is on a blocking state so better catch the IOException     }  Hope this helps. - Brian --- On Fri, 1/29/10, redders redders6...@googlemail.com

Re: [android-developers] Re: Contacts FAQ?

2009-12-11 Thread Brian Cavagnolo
gets created, but I don't know if the account fields are populated. You could try it and dump the db table. If you do this experiment, let me know the result! Ciao, Brian -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

Re: [android-developers] Re: Contacts FAQ?

2009-12-10 Thread Brian Cavagnolo
(but account_type is empty on the database). I'm using the head of the public repo, not the SDK. I'm not sure if there's any differences. Ciao, Brian -- 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] Re: Contacts FAQ?

2009-12-09 Thread Brian Cavagnolo
who don't wish to use the stock android Contacts app to edit the custom fields. Ciao, Brian -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group

[android-developers] Re: Complex Object Collision Detection

2009-12-02 Thread Brian
as such.  THEN you can test each flagged collision to see which parts actually intersected using line vs line collision methods. On Nov 29, 2:58 pm, Brian phobos51...@gmail.com wrote: Hello, I am currently working on a collision detection routine for an Android based game which is capable

[android-developers] Re: Supporting Smaller Screen Sizes supports-screens

2009-12-01 Thread Brian Rak
supports-screens that will install on earlier devices? Thanks in advance! Brian On Oct 30, 5:34 pm, Lance Nanek lna...@gmail.com wrote: The build target can be set separately from the android:minSdkVersion attribute. Increasing the build target would allow you to use the supports-screens

[android-developers] Re: Pickup a phone contact under the emulator

2009-12-01 Thread brian
+1. Getting the same problem E/AndroidRuntime( 102): Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 102): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.SYNC_SETTINGS (has extras) }

[android-developers] Complex Object Collision Detection

2009-11-29 Thread Brian
Hello, I am currently working on a collision detection routine for an Android based game which is capable of handling complex concave curves in 2D. I use complex in this post to describe any non-trivial, arbitrary shape (beyond circles, squares, etc.). My problem is that all of the various

[android-developers] Adding HeaderView to ListView results in occasional IndexOutOfBoundsException

2009-11-28 Thread Brian J. Coan
I add header and footer views to my listview on activity creation: public void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); ... this.headerView = new TextView(this); this.headerView.setText(null);

[android-developers] Re: Looking for Great App Ideas

2009-11-11 Thread Brian K
I want a really good roleplaying game. Something along the lines of Ultima, or Bard's Tale. Maybe a Diablo ripoff. I've seen all the options so far and they've all left me unimpressed. On Nov 10, 10:32 pm, John jmgro...@gmail.com wrote: Hi, I want to know what your dream app is. The dream

Re: [android-developers] ADB working with HTC Droid Eris?

2009-11-08 Thread Brian Conrad
drasticp wrote: I'm trying to debug apps with the new HTC Droid Eris and ADB doesn't seem to recognize the device. I have the latest SDK installed with Usb Driver Package, Revsion 2 downloaded through the Android SDK and AVD Manager. When the device is connected, it recognizes new hardware

Re: [android-developers] Re: Which Flavour of Linux

2009-11-05 Thread Brian Conrad
. I'm using 9.04. -Brian -- 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...@googlegroups.com

Re: [android-developers] Any way to create a standalone sqlite database and then put into my application?

2009-11-04 Thread Brian Conrad
On Ubuntu I use the SQLite database browser which will import csv files and turn them into SQLite databases. Very easy to use. Just use the Package Manager to get it. - Brian richard wrote: Hi all, I want to create a sqlite database by importing data from some data files, like csv

[android-developers] playing audio (mp3) within a browser?

2009-10-26 Thread Brian Bush
Can one play audio from within a 1.5 (Cupcake) browser? If not, is there a command line tool that plays audio, or a service that I can communicate with to request playback of an audio file? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] using ASE and playing sound

2009-10-26 Thread Brian Bush
, plays it and then exits. Can you call other java apps from ASE? - wait till the browser supports the audio tag. I guess this is html5, but am unaware if this will be on android any time soon. Thanks, Brian --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: using ASE and playing sound

2009-10-26 Thread Brian Bush
 pm, Brian Bush brianob...@gmail.com wrote: All. I have a python application (anki) running under ASE. It is a simple web server that uses the browser as a UI. My only issues are playing sound, which are stored locally. On the iphone, anki uses a command line app (play) to play the mp3 files

[android-developers] Re: Geo Fix Still Not Working in 1.6

2009-10-23 Thread Brian Conrad
off (which is a problem for testing that depends on more accuracy). Do you know if there is a bug filed for the rounding problem? On Oct 22, 5:06 pm, Brian Conrad brianjto...@gmail.com wrote: There is a bug filed for geo fix (not by me but by people who found it earlier). I haven't

[android-developers] Re: Geo Fix Still Not Working in 1.6

2009-10-23 Thread Brian Conrad
confirmation for you and is easy to do. When I telnet into the emulator console and run geo fix as shown I am using Linux on the emulator of course. What problem has Android acknowledged regarding geo fix? What is the bug number? On Oct 23, 12:44 pm, Brian Conrad brianjto...@gmail.com wrote

[android-developers] Geo Fix Still Not Working in 1.6

2009-10-22 Thread Brian Conrad
I've tried the geo fix command to set coordinates for a program I wrote that provides the GPS coordinates. This program worked fine in 1.1. But the geo fix command got broken in 1.5 and appears to still have not been fixed in 1.6? When will it be fixed? Brian Conrad JyotishTools.com

[android-developers] Re: Geo Fix Still Not Working in 1.6

2009-10-22 Thread Brian Conrad
to figure out why it is not working. Brian Auguste Lunang wrote: Hi,This is a know issue. One of the discussions you can find here: http://groups.google.com/group/android-beginners/browse_thread/thread/0206ed9cdf7adc81 . Try to use DDMS to fix your GPS coordinates. Hope it helps.. Auguste 2009

[android-developers] Re: Geo Fix Still Not Working in 1.6

2009-10-22 Thread Brian Conrad
. Apparently this app is working normally on phones I would just like to have it working on the emulator so I could add and test similar functionality in other apps. jotobjects wrote: Has there been a bug filed? On Oct 22, 2:11 pm, Brian Conrad brianjto...@gmail.com wrote: Thanks. Yes, I know

[android-developers] Android Theme Widget wanted (For mAPPn's Home Alternative Application - aHome)

2009-10-16 Thread Brian
Hi there, My name is Brian and I am the Operation Manager of mAPPn, a mobile application and software provider based in Southern California. I am posting the message here looking to potentially partnerships with Android designers and developers. In short, we have had great success

[android-developers] Re: Market screen shots

2009-10-14 Thread Brian Conrad
Yes, I saw that too. But when I went back the next day I was able to browse/upload on that application. So check again tomorrow. It's kind of as if you are only allowed upload one set a day (which is funny). Keith Wiley wrote: Anyone else? When open the console for my app I see the entry

[android-developers] Re: How did you localize your app?

2009-10-12 Thread Brian Conrad
be helpful. These are words like File, Open, etc that we often use in applications. Brian Conrad JyotishTools.com Yusuf Saib (T-Mobile USA) wrote: Machine translation quality varies from good to humorous. A few extra strings in your code, and the logic to handle them, shouldn't add much

[android-developers] Re: Package installer crash in version 1.6

2009-10-09 Thread Brian Smith
No one else has published an update since the 1.6 release, then, that uses the sharedUserId manifest attribute? From the stack trace, that seems to be what triggered the bug. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Package installer crash in version 1.6

2009-10-08 Thread Brian Smith
Is anyone else seeing a system crash and reboot when attempting to install an update for (aka re-install) an application in Android 1.6? I have an application that is triggering just that symptom and, according to the following exception trace recorded just before the crash, it seems related to

[android-developers] Re: Where have all the Google employees gone?

2009-10-08 Thread Brian Wright
How did you determine you had 95 people test my app for Round 1 judging, but 27 of those were force closes due to the 1.6 update. I have not been told anything? Where is this data? On Oct 6, 8:48 pm, bellapariah bellapar...@gmail.com wrote: Thread for developers to discuss problems with

[android-developers] Re: Soft Keyboard

2009-09-25 Thread Brian Conrad
Dianne Hackborn wrote: Long press on menu is NOT what you should be making your users do. Seriously. It sucks. Who would guess that is how you get to a keyboard? Please give them a decent UI. Depends on the application. I just heard from one Hero user they are unable to enter data in a

[android-developers] 3d Physics Engine?

2009-09-15 Thread Brian
Does anyone have any recommendations for a 3D physics engine? I'm looking for something like Bullet Physics. I've only run across suggestions for 2D engines. There is a jBullet engine, but it seems a bit out of date and I'm not sure if people are able to successfully use it on android hardware.

[android-developers] Re: A Simple Graphic App on Android

2009-09-10 Thread Brian Conrad
Some the blogs and developer forums that have sprung up around Android often will have simple examples like you are looking for. Do a search for them. I found many good examples on them. http://www.anddev.org/ is one. Maxood wrote: I like to explore the android.graphics.* api. The app i

[android-developers] Re: Date Limit

2009-08-29 Thread Brian Conrad
I've done something like this with my own DatePicker like widget where I used the TextWatcher member to keep input within bounds. I haven't tried it with the DatePicker widget but it may be possible. - Brian Sasi Kumar wrote: Can any one suggess that i want a limited datepicker ex:- 25

[android-developers] What's the meaning of the $ (dollar sign) in the backtrace?

2009-08-25 Thread Brian
Hi all, I wanted to understand what the $ sign and the number after a $ sign meant in a backtrace. For example, consider the following backtrace: at android.app.ActivityThread.access$2500(ActivityThread.java:115) at android.app.ActivityThread$H.handleMessage(ActivityThread.java: 1745) In

[android-developers] Re: What's the meaning of the $ (dollar sign) in the backtrace?

2009-08-25 Thread Brian
and compiled as '2500'. On Aug 25, 11:47 am, Brian brianlee8...@gmail.com wrote: Hi all, I wanted to understand what the $ sign and the number after a $ sign meant in a backtrace. For example, consider the following backtrace: at android.app.ActivityThread.access$2500

[android-developers] Re: What's the meaning of the $ (dollar sign) in the backtrace?

2009-08-25 Thread Brian
and variables. Compromises, compromises. 2009/8/25 Brian brianlee8...@gmail.com Thanks for the reply. I understand that the $ sign is normally used to denote a nested/inner class. In the above example (ActivityThread.java - http://android.git.kernel.org/?p=platform/frameworks/base.git

[android-developers] Re: How to use telnet

2009-08-07 Thread brian
Be careful, though. You'll be talking to a telnet server, which expects you to use the telnet protocol (RF854). You may see some *extra* data that appears to be garbage characters. A quick read through rfc854 should explain what you're seeing. http://tools.ietf.org/html/rfc854 Brian Pence

[android-developers] Re: Dev Phone not available anymore

2009-07-26 Thread Brian Conrad
I'm also wondering if they are going to make some of the newer phones available to developers instead? The G2 (Magic) or even the Samsung. I believe T-Mobile will have the G2 available to public on the 8th. f_heft wrote: Look here:

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-25 Thread Brian Conrad
Cédric Berger wrote: On Sat, Jul 25, 2009 at 00:41, Brian Conradbrianjto...@gmail.com wrote: I've had unlockable trial versions of software and versions which were crippled demos. The crackers eventually broke or created keygens for the unlockable versions. But they never broke

[android-developers] Re: Emulator taking More time to open main page

2009-07-24 Thread Brian Conrad
I see a slow boot even with Ubuntu. But canceling the launch and relaunching brings it up fast. MCON Dev wrote: I use Fedora and its fast. Vista its really slow (20 mins, to launch). On Fri, Jul 24, 2009 at 1:06 PM, android.vinny vinny.s...@gmail.com wrote: HI My emulator is taking

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-24 Thread Brian Conrad
Ed wrote: On Jul 24, 6:01 am, Kaj Bjurman kaj.bjur...@gmail.com wrote: Crackers don't think about if a program is expensive or not. They only want to get known for their talents, and they crack all popular applications, even if they are almost for free. So all popular applications get

[android-developers] Re: videoview can't play mp4 smoothly

2009-07-23 Thread Brian Conrad
Are you trying to play this on the emulator? About the only thing I can get to play on the emulator is 176x144 3gp h.263 videos at 15fps. Anything else, especially h.264 AVC only shows a frame or to and plays audio. Support is mum on this but I think the emulator can't really handle these in

[android-developers] Re: GPS still not working on emulator with r3

2009-07-22 Thread Brian Conrad
with it differently then some documentation with an example please. - Brian Kaj Bjurman wrote: I'm using 1.5 r2 and r3, and I telnet to the emulator, and then issue geo fix lng lat. It works, but I have to do it everytime I restart the emulator. Do also note that the first command that you issue

[android-developers] Re: GPS still not working on emulator with r3

2009-07-22 Thread Brian Conrad
Thanks David for confirming my suspicions. - Brian David Turner wrote: Actually, some emulator geo-related bugs have been fixed, but there are still some issues, probably in the framework code, which happens to have evolved quite a bit since 1.1. I can't say much more right now, since I

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-22 Thread Brian Conrad
You have to log into the Market Developer Console to see purchases. They don't send email notifications like some of the other online stores do. Maps.Huge.Info (Maps API Guru) wrote: What does the Android market send the developer when an app is purchased? Is there any sort of notification?

[android-developers] GPS still not working on emulator with r3

2009-07-21 Thread Brian Conrad
(this.LOCATION_SERVICE); if(locmgr == null) Log.v(err,Couldn't get locmgr); Location loc = locmgr.getLastKnownLocation(LocationManager.GPS_PROVIDER); if(loc == null) Log.v(err,loc is null); } So is GPS emulation still broken? Thanks, Brian Conrad

[android-developers] Re: GPS still not working on emulator with r3

2009-07-21 Thread Brian Conrad
- Brian Conrad . Maps.Huge.Info (Maps API Guru) wrote: Until you send it a location with DDMS, the location will be null. After you send it, everything works as expected. No altitude, speed, bearing or any of the GpsStatus comes across though. It would be nice if these things were also accessible

[android-developers] Re: Date.getTime() and Daylight Saving Time?

2009-07-19 Thread Brian Conrad
and the second one may too. The general rule with DST is spring forward (you set the clock ahead one hour in the spring) and fall back (you set the clock back one hour to standard time in the fall). When these spring and fall change dates occur is the mess. - Brian Cheng Zhong wrote: Hi all

[android-developers] Re: SDK 1.5_r3 is available

2009-07-18 Thread Brian Conrad
Does this fix the GPS emulation bug? - Brian Dan Morrill wrote: Hi, all! I wanted to let you know that a new SDK has been released: 1.5_r3 is now available. This is a minor release, and includes a Japanese IME and fixes for a few bugs, including a permissions issue. You can read more

[android-developers] Re: matching prebuilt kernel sources

2009-07-14 Thread Brian Manning
://groups.google.com/group/repo-discuss Thanks, Brian --~--~-~--~~~---~--~~ 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

[android-developers] More Appwidget Phantom Scenarios?

2009-07-13 Thread Brian Muramatsu
through appwidgetmanager to check the widget's status or is it checkmate again? -Brian --~--~-~--~~~---~--~~ 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] Re: G1 Firmware in ADP1?

2009-07-02 Thread Brian
, not a programmer, unsure what to do next. Thanks again for help in advance. Brian On Jul 2, 5:30 am, John Smith deltafoxtrot...@gmail.com wrote: 2009/7/2 Brian brian.minig...@gmail.com I was hoping to find an answer to MY question on here. I have a developer phone. Build is 1.1 I am

[android-developers] Re: G1 Firmware in ADP1?

2009-07-02 Thread Brian
I know it probably seems simple to you, but I get it so it says fastboot...then what? and what do i have to do on my machine, if anything, prior to this? (do i need to install the sdk? and if so, how? On Jul 2, 1:52 pm, John Smith deltafoxtrot...@gmail.com wrote: 2009/7/2 Brian brian.minig

[android-developers] Re: G1 Firmware in ADP1?

2009-07-02 Thread Brian
I know it probably seems simple to you, but I get it so it says fastboot...then what? and what do i have to do on my machine, if anything, prior to this? (do i need to install the sdk? and if so, how? On Jul 2, 1:52 pm, John Smith deltafoxtrot...@gmail.com wrote: 2009/7/2 Brian brian.minig

[android-developers] Re: G1 Firmware in ADP1?

2009-07-01 Thread Brian
? Brian On Jul 1, 2:10 pm, John Smith deltafoxtrot...@gmail.com wrote: 2009/7/1 John Smith deltafoxtrot...@gmail.com 2009/7/1 Disconnect dc.disconn...@gmail.com I'll say it once more, then I'm out of here. We will have to agree to disagree then, because I simply don't agree with your view

[android-developers] Re: No one ever answer my posts !!!!

2009-06-23 Thread Brian Cloutier
And posts like that aren't going to help your case. On Mon, Jun 22, 2009 at 8:36 PM, Rotem Or rote...@gmail.com wrote: -- Thanks Rotem Or --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Progress Dialog When Application Starts

2009-06-23 Thread Brian Cloutier
It's been a while since I last made an Android Application, so take this with a grain of salt, but can't you just fire an intent to start the dialog from onStart()? On Mon, Jun 22, 2009 at 9:06 PM, Georgy georgearna...@gmail.com wrote: Hello, I am trying to initiate a progress bar when my

[android-developers] Re: Application Needed

2009-06-23 Thread Brian Cloutier
While I do not know of such an app, if you give me a week or two I could write one for you. On Tue, Jun 23, 2009 at 9:56 AM, Fred Grott(shareme) fred.gr...@gmail.comwrote: I would imagine if you would mention your branch of service that might help in getting the help you require. Myself, I

[android-developers] Re: ListView - keep item selected

2009-06-19 Thread Brian Smith
I could rattle off an explanation, but the folks at Google have already explained it better than I ever could... http://android-developers.blogspot.com/2008/12/touch-mode.html On Jun 19, 12:01 pm, Mark Wyszomierski mar...@gmail.com wrote: Hi, I have a ListView. When I click a row Item (which

[android-developers] Re: Native MediaPlayer plays audio but not video (3gp format)

2009-06-18 Thread Brian Conrad
Look in the ApiDemos sample in the SDK at the MediaPlayerDemo_Video example to see how to set things up for Android. - Brian dglushko wrote: Ok, I understand. What will be better place to post this question? Thank you, David On Jun 16, 11:02 pm, Marco Nelissen marc...@android.com wrote

[android-developers] Re: Search context with type-to-search?

2009-06-16 Thread Brian Smith
key handler in android.app.Activity should call onSearchRequested() in the first place for local searching, in case it's overridden. Oops :-) On May 1, 7:27 pm, Brian Smith avalo...@caerleon.us wrote: When implementing search in my application, I'm including some search context info depending

[android-developers] Re: Android WebView - handling orientation changes

2009-06-16 Thread Brian Smith
It has to reload the page every time, by default, because the default action for an activity dealing with a configuration (including orientation) change is for it to be destroyed and restarted. That can be overridden, though, by specifying an android:configChange attribute for the activity in

[android-developers] Re: How to save the view to image file ?

2009-06-16 Thread Brian Smith
Two questions... 1) (out of curiosity) What does the ability to take snapshots have to do with the ability to design a game for Android? Games usually put things on the screen, not the other way around. 2) Are you wanting to do this from your code, or just to have screenshots for

[android-developers] Re: Video Play error

2009-06-15 Thread Brian Conrad
cleanup too which is missing (look at the MediaPlayerDem_Video source). Brian Conrad JyotishTools.com --~--~-~--~~~---~--~~ 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: Why did Google Groups not post my comments?

2009-06-12 Thread Brian Conrad
The post arrived here. Are you on email? I don't see my posts often when I post them here. It is hit or miss. I'm using Gmail and I see no settings that keep my original mail from being sent to me too. - Brian Conrad Dennis wrote: I posted a detailed comment about typos in Android

[android-developers] Re: Theme.Translucent.NoTitleBar - No config changes...!?

2009-06-12 Thread Brian Muramatsu
orientation though. ...does anybody have a clue why this is? Is there any work around besides using a black background? Thanks in advance! My head is about to explode from all these quirks! -Brian --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: weird rotation in CameraPreview

2009-06-11 Thread Brian Smith
That's what I'm seeing as well. There's an easy workaround, though... do the same thing that the Android Camera app does, and force the activity which contains the preview surface to landscape orientation. Hint: In the manifest file, the activity element supports the attribute

[android-developers] Re: weird rotation in CameraPreview

2009-06-11 Thread Brian Smith
You can get the final picture size and set the preview size using the Camera.Parameters object (getParameters/setParameters on the Camera object). If you implement the SurfaceHolder.Callback interface, as done in the API demo code, then you have the size of the preview surface as well. I don't

[android-developers] Re: weird rotation in CameraPreview

2009-06-11 Thread Brian Smith
No problem :-) Out of curiosity, how was the preview image oriented on the preview surface? Was it centered, or anchored to the left or right side? On Jun 11, 9:12 pm, jia liu jpokeco...@gmail.com wrote: I see, you are definitely right Brian. Now it works fine with right ratio. Thank you so

[android-developers] Re: How to Implement the Compass function to my application?

2009-06-08 Thread Brian Smith
Indeed :-) It's come in very handy for me as far as getting a grasp on Android's architecture, as well as getting ideas for doing certain things with it. On Jun 8, 11:46 am, Georgy georgearna...@gmail.com wrote: btw Brian the code in that book is REALLY good I just embedded the compass.. I

[android-developers] Re: reg playing youtube videos in android

2009-06-06 Thread Brian Conrad
there is a bug in the VideoPlayerDemo too. A start() call needs to be added after the initialization or nothing happens. ;-) Brian Conrad JyotishTools.com manoj wrote: Hi, I want to go with the code specified in the following link http://groups.google.com/group/android-developers

[android-developers] Re: How to Implement the Compass function to my application?

2009-06-05 Thread Brian Smith
You're trying to get the distance and bearing from the start point to the end point? If so, then you don't need to work with the compass hardware... unless you later want to use it to help the user navigate to the point. The Location class (in android.location) can be used compute those two

[android-developers] Re: Detecting hardware capabilities

2009-06-05 Thread Brian Smith
I'm guessing I'm not the only one who's stumped by this? That's comforting. --~--~-~--~~~---~--~~ 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] Re: How to Implement the Compass function to my application?

2009-06-05 Thread Brian Smith
It's an object method, not a standalone function, so it would look like this (assuming start and end are Location objects): float res = start.distanceTo(end); As for an example of using SensorManager and SensorListener, I don't have anything handy, but there is an example in the API demos:

[android-developers] Re: MapView Draggable Objects

2009-06-04 Thread Brian Smith
It looks like it, yes. It also looks like a custom overlay that the developer wrote in order to make that work. Looking at the docs for the maps library, I don't see any overlay classes for doing that sort of thing, but you can always extend the base Overlay class and roll your own. That class

[android-developers] Re: media player does not display video, only audio coming, the screen turns black

2009-06-03 Thread Brian Conrad
didn't do any better either. Brian Conrad JyotishTools.com Harishkumar V wrote: Hi, I am trying to play mp4 video file from mediaplayer demo given in the api demos along with android sdk. I changed the path to /sdcard/video.mp4.. If i run mediaplayer_video demo, the audio output is coming

[android-developers] Detecting hardware capabilities

2009-06-03 Thread Brian Smith
There are return values and such that allow handling if SensorManager sensors and location providers aren't available, but what about the camera and microphone for audio recording? Is there a way to detect those in software, or are we just to assume that every device running Android (even the

[android-developers] Console logging missing on Eclipse

2009-05-29 Thread Brian Conrad
. Log.v messages are not showing. Anyone else seeing this? I'm wondering if one of Ubuntu's updates screwed things up? I may try reinstalling the plug-in or even Eclipse but thought I would check here first. Brian Conrad JyotishTools.com

[android-developers] Resources.getDrawable() returning empty bitmap

2009-05-24 Thread Brian Smith
I'm working on adding a map view to an app of mine, and so far I've successfully gotten the MapView itself to work. I'm trying to add an overlay now, and I'm having problems loading the bitmap resources to do that. Here is the code snippet that does the loading, in the activity's onCreate:

[android-developers] Re: Resources.getDrawable() returning empty bitmap

2009-05-24 Thread Brian Smith
I stand corrected. It's not Resources.getDrawable() that's broken, regardless of the deceptive object properties in the debugger. What's broken is Overlay.drawAt(). That one, at least, I can live without. --~--~-~--~~~---~--~~ You received this message because

<    1   2   3   4   >