[android-developers] Camera picture taking memory error

2010-12-14 Thread Stephen Lebed
. Best, Stephen Lebed Developer of 'On The Level' and 'SL DigiSlate' -- 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

Re: [android-developers] Application unavailable in Android Market

2010-12-10 Thread Stephen Jungels
Your apps are visible in the US market on my Droid X (Android 2.2) test device. They're not visible on my Galaxy S (2.1) test device. One thing to look at is the copy protection setting in the developer console. --SJ On Fri, Dec 10, 2010 at 9:27 PM, Pedro Duque pmdu...@gmail.com wrote: Thank

Re: [android-developers] who can give me android 2.2 system source code ?

2010-12-09 Thread Stephen Zhang
-- Thanks Best Regards, Stephen Zhang (张晓枫) Java engineer Android engineer Gtalk MSN Skype : stephensni...@gmail.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

[android-developers] Is there way to create a slow motion method for video

2010-12-06 Thread Stephen Chen
Is there way to create a slow motion method for video? -- 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] Re: Handling Android device without Menu button

2010-11-22 Thread Stephen Lebed
to design my app with a title or status bar showing unless its necessary. Best, Stephen On Nov 21, 9:17 am, Mark Murphy mmur...@commonsware.com wrote: On Sun, Nov 21, 2010 at 11:48 AM, Stephen Lebed srle...@gmail.com wrote: I have a couple of apps currently in the marketplace and they follow

[android-developers] Handling Android device without Menu button

2010-11-21 Thread Stephen Lebed
that tablets are not officially supported yet. My question is, has anyone started dealing with this potential issue, and if so how? Thanks, Stephen -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Detecting Task Resume

2010-11-21 Thread Stephen Jungels
The link you provided goes to a design document. The technical information you need is here: http://developer.android.com/guide/topics/fundamentals.html SJ On Sun, Nov 21, 2010 at 7:32 PM, Doug beafd...@gmail.com wrote: I don't think there aren't events to capture for task foregrounding and

Re: [android-developers] Re: What Intent for Browser without URL

2010-11-19 Thread Stephen Jungels
Have you tried using a standard intent to open the browser with the URL about:blank ? Maybe not exactly what you want, but simple and likely to work everywhere. On Fri, Nov 19, 2010 at 5:51 PM, jotobjects jotobje...@gmail.com wrote: Thanks - I don't have a URL to launch and I don't want to

[android-developers] Re: tutorial not working

2010-11-17 Thread Stephen Huey
http://developer.android.com/resources/tutorials/hello-world.html http://developer.android.com/sdk/installing.html http://developer.android.com/sdk/index.html On Sat, Nov 13, 2010 at 6:40 PM, Houston startup coder stephenh...@gmail.com wrote: I'm on Mac OS X Leopard and installed the ADT

[android-developers] Re: Camera saving corrupted photos

2010-11-16 Thread Stephen Lebed
Thanks Guys! I think it is a bug, so I'll post it. Strange, but I will have to test my code on my friends Droid to see if the issue is there as well. Best, Stephen On Nov 15, 4:03 am, Mark Murphy mmur...@commonsware.com wrote: Agreed. I tossed out the manifest change as an idea just in case

[android-developers] Camera saving corrupted photos

2010-11-14 Thread Stephen Lebed
this problem and have been able to resolve it. I'm testing this on a G2 phone. Any help is greatly appreciated. Stephen -- 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: Camera saving corrupted photos

2010-11-14 Thread Stephen Lebed
try 2.592 x 1.944? Regards On Nov 14, 7:58 pm, Stephen Lebed srle...@gmail.com wrote: I can't figure out why I'm getting corrupted images when I save them in my app.  In fact the thumbnail seems to be fine, but the actual image is corrupted, as if the stride value is not being set

[android-developers] Re: Camera saving corrupted photos

2010-11-14 Thread Stephen Lebed
Murphy mmur...@commonsware.com wrote: Try setting fullscreen in your manifest instead: android:theme=@android:style/Theme.NoTitleBar.Fullscreen On Sun, Nov 14, 2010 at 7:26 PM, Stephen Lebed srle...@gmail.com wrote: It is a supported size on the g2.  I'm not specifying the size, its

Re: [android-developers] add a linear layout on click of button

2010-11-12 Thread Stephen Jungels
findViewById requires that you have already inflated the xml view (with setContentView, for example). To load a view defined in xml dynamically you want to use a layout inflater of some kind: http://developer.android.com/reference/android/view/LayoutInflater.html Or you could also just change

[android-developers] detect Bluetooth A2DP disconnection

2010-11-12 Thread Stephen Lau
-- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- 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

Re: [android-developers] detect Bluetooth A2DP disconnection

2010-11-12 Thread Stephen Lau
Stephen Lau wrote: Anyone know how I can detect when the Bluetooth audio is disconnected? I want to be able to pause the currently playing audio when it's disconnected, similar to how I do for the ACTION_HEADSET_PLUG intent, but can't figure out how to do it for a Bluetooth device. Any ideas

Re: [android-developers] Re: ViewFlipper dies with Receiver not registered

2010-11-12 Thread Stephen Lau
://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 Available! -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You received this message because you are subscribed to the Google

Re: [android-developers] ListView.invalidateViews() not working

2010-11-11 Thread Stephen Jungels
For a ListActivity, try onContentChanged(). On Thu, Nov 11, 2010 at 3:33 PM, Kumar Bibek coomar@gmail.com wrote: Try notifyDatasetChanged(). This should be called whenever the backing data us changed On 12-Nov-2010 2:01 AM, jotobjects jotobje...@gmail.com wrote: I have an ListActivity

Re: [android-developers] Canvas INSIDE of a Layout???

2010-11-08 Thread Stephen Jungels
This would be an example of creating a custom component. It's covered very well in the docs: http://developer.android.com/guide/topics/ui/custom-components.html The requirement for timed updates can be filled by your activity calling invalidate() on the custom view when needed. --SJ On Fri,

Re: [android-developers] Android dev using the Samsung Galaxy S on OSX

2010-11-08 Thread Stephen Jungels
Does your Mac meet the System Requirements? http://developer.android.com/sdk/requirements.html If so, a standard Android device like the Galaxy S would be expected to work (maybe you will have to sort out some device driver issues). The Galaxy S itself is a great phone for development and

Re: [android-developers] Proguard Breaks Javascript Interface

2010-11-08 Thread Stephen Jungels
com.trans_code.android.JavascriptCallback -keepclassmembers class * implements com.trans_code.android.JavascriptCallback { methods; } -- On Sun, Nov 7, 2010 at 7:17 PM, Stephen Jungels sjung...@gmail.com wrote: Thanks, I followed up on that idea by creating a placeholder

Re: [android-developers] CameraPreview example distorted with samsung galaxy s

2010-11-08 Thread Stephen Jungels
The camera preview example is very simple. Real camera apps letterbox the preview because widescreen phones don't have the same aspect ratio as standard photographic sizes. On Mon, Nov 8, 2010 at 4:20 PM, ping bernd.warm...@gmail.com wrote: Hey, Today i tried the sample code to get the camera

Re: [android-developers] Re: CameraPreview example distorted with samsung galaxy s

2010-11-08 Thread Stephen Jungels
Sorry, no. On Mon, Nov 8, 2010 at 6:52 PM, ping bernd.warm...@gmail.com wrote: Do you know a sample app where this is easily shown? On Nov 8, 11:33 pm, Stephen Jungels sjung...@gmail.com wrote: The camera preview example is very simple.  Real camera apps letterbox the preview because

[android-developers] Proguard Breaks Javascript Interface

2010-11-07 Thread Stephen Jungels
I've recently started using the WebView Android / Javascript interface in my projects (and I think it's pretty cool; article here: http://developer.android.com/resources/articles/using-webviews.html). The problem is that when obfuscation is turned on, the callbacks from Javascript to my Android

Re: [android-developers] Proguard Breaks Javascript Interface

2010-11-07 Thread Stephen Jungels
daniel.drozdzew...@gmail.com wrote: On Sun, Nov 7, 2010 at 10:41 PM, Stephen Jungels sjung...@gmail.com wrote: I've recently started using the WebView Android / Javascript interface in my projects (and I think it's pretty cool; article here: http://developer.android.com/resources/articles/using

[android-developers] error with CameraView setParameters

2010-11-03 Thread Stephen Pengilley
Hi all, I am trying to develop a small camera app. I am getting the following log errors when running the app on my phone 11-02 20:33:44.387: ERROR/AndroidRuntime(18165): Uncaught handler: thread main exiting due to uncaught exception 11-02 20:33:44.656: ERROR/AndroidRuntime(18165):

[android-developers] Re: Angry DROID2 Owner

2010-10-28 Thread Stephen Lebed
How is you not being able to log into a third party app developers games motorola or google's fault? What is the specific issue your dealing with? What did you do to your phone that you have to exchange it for a base model? What shame should those companies being feeling? On Oct 26, 6:25 

Re: [android-developers] [BUG?] Images from drawable-nodpi getting scaled

2010-10-22 Thread Stephen Jungels
In addition to what was said above, if you study the supports-screens directive carefully and set it properly in your manifest, that will most likely clear things up. On Fri, Oct 22, 2010 at 11:43 AM, TreKing treking...@gmail.com wrote: On Mon, Oct 18, 2010 at 3:35 PM, Wri cyri...@gmail.com

[android-developers] Orientation of Camera in my Camera app

2010-10-20 Thread Stephen Pengilley
Hi all, I am trying to build a simple camera view as part of my application. I want it to work just like the built in camera What you see is what you get. It doesn't auto correct rotation and the resultant photo is in the right orientation. What is happening in my Cameraview is that when i hold

[android-developers] Re: Camera Preview not working on my G2

2010-10-20 Thread Stephen Lebed
thread. Best, Stephen Lebed On Oct 20, 8:19 am, TreKing treking...@gmail.com wrote: On Wed, Oct 20, 2010 at 12:15 AM, Stephen Lebed srle...@gmail.com wrote: The error I'm getting in logcat is FATAL EXCEPTION: main Class Not Found Exception in dalvik.system.pathclassloader... Does

[android-developers] Camera Preview not working on my G2

2010-10-19 Thread Stephen Lebed
I'm trying to get the camera preview running on my G2. This is the code I'm testing with, which was taken from the sample code. It is using supplemental code supplied by Wu-Cheng, but its still throwing an error /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the

[android-developers] Re: Photo + info stored in database...Question bout linking the two together

2010-10-18 Thread Stephen Pengilley
do I get it? Stephen -- 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

[android-developers] Photo + info stored in database...Question bout linking the two together

2010-10-15 Thread Stephen Pengilley
it is clear what I want to do. Could I instead use a file path to locate the photo? Or do I need the URI? If I do need the URI then how do I get it? Stephen -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Do you spend any time sending DMCA notices

2010-10-14 Thread Stephen Jungels
I think you may have misinterpreted that email. I claimed my apps on AppBrain and got something similar; it's just a verify that they send to the registered email of the app developer, is it not? Also, claiming your apps and paying for promotion are two separate things. Just claiming as I have

[android-developers] Re: G2 vs. Samsung Android phone

2010-10-13 Thread Stephen Lebed
On Oct 10, 7:54 pm, olegkon oleg...@gmail.com wrote: Hi, I would like to try Flex/AIR development on Android phones [have lots of Flex/AIR + Java experience on PCs]. With T-mobile Android phone G2 and Samsung Vibrant seem to be the better choice to buy for development, of which Vibrant has

[android-developers] Gallery view problems - external memory

2010-10-10 Thread Stephen Pengilley
Hi all, I have developed a very simple gallery (it started as the hello gallery example) where I have added code to get the images from the content provider. It should return all images from the SD card but it is returning no images, my gallery view is blank. I am a fairly new developer, just

Re: [android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Stephen Jungels
I had a pretty good week but I'm not sure the new markets are the reason why. It would be a lot easier to tell if we had something like Analytics for Google Checkout. --SJ On Fri, Oct 8, 2010 at 8:58 AM, String sterling.ud...@googlemail.com wrote: On Oct 8, 7:20 am, Zsolt Vasvari

Re: [android-developers] Follow up for the active install count problem

2010-10-08 Thread Stephen Jungels
My count had dropped to the point where it looked like an abandoned app (about 33% at the lowest, I think). It started to stabilize and then go up again, and after I did a release a few days ago it jumped from 37% to 45%, so I think releasing an update will get things back to normal more quickly

Re: [android-developers] Re: Any proposed changes to the Android Market?

2010-10-07 Thread Stephen Jungels
I have a slightly different take on this than the original poster. Currently Google is treating apps like web pages, and using ranking algorithms to highlight the successful apps. The poor apps don't need to be expelled because they are in the rankings basement where nobody sees them. The only

Re: [android-developers] Re: Gifting paid market apps

2010-10-06 Thread Stephen Jungels
About 24 hours after a buyer has purchased the app, their payment will have gone through and you can use the Checkout console to issue a full or partial refund. I have a separate system for distributing my app to beta testers, but I have used this method in a few cases as well. -SJ On Wed, Oct

Re: [android-developers] Re: Adding Rate this application capability

2010-10-06 Thread Stephen Jungels
Directing users to the details page so they can rate your app doesn't seem questionable as long as you do it in a neutral way and there is no implied reward for a positive rating. There's also no guarantee that it will increase the number of positive ratings more than it increases the number of

Re: [android-developers] File Pushing Problem on to the Emulator

2010-10-06 Thread Stephen Jungels
I have found that file push and pull work much better with the adb command line tool than they do with DDMS. Just use adb, than you can wait patiently for the tools to be fixed. --SJ On Wed, Oct 6, 2010 at 4:11 AM, Goutham P N pn.gowt...@gmail.com wrote: Hi, In one of the application I need

[android-developers] Unknown group for SyncAdapter

2010-09-30 Thread Stephen Lau
in Contacts, it calls the group that all my SyncAdapter managed contacts are in as Unknown. It seems like I'm just not setting a label somewhere somehow, but I can't figure out where. Anyone familiar with this? cheers, steve -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You

Re: [android-developers] Bitmap to Bytes then bytes to Bitmap

2010-09-27 Thread Stephen Jungels
The decode byte array call expects JPEG compressed data. You should be consistent about either using unpacked bytes, as in your save operation, or packed bytes, as in your read operation. --SJ On Mon, Sep 27, 2010 at 6:38 AM, Jey jp9894562...@gmail.com wrote: Hi all,       Am trying to store

[android-developers] Custom clickable widget / accessing system-wide colors

2010-09-26 Thread Stephen Shelton
I've got a dynamically driven TableLayout object that I've written which needs to support clickable rows, much like the out-of-the-box ListView widget. The API involved with what I want to do seems clear enough, but I need to know what the system defined clicked color is -- the orange that appears

[android-developers] Re: Proguard, Android, and the Licensing Server, or...

2010-09-24 Thread Stephen Lebed
Thank you so much Xavier! On Sep 24, 6:00 am, Xavier Ducrohet x...@android.com wrote: We are working on direct support in ADT/Ant. We just decided to release a quick blog post on how to manually add this to Ant since it's somewhat easy to do (unlike ADT). However, proguard does need to know

Re: [android-developers] Integrating Proguard using recently posted instructions

2010-09-23 Thread Stephen Lau
jars so that the proguard can find those while the obfuscation step? change the -libraryjars line in add-proguard-release.xml to look like: -libraryjars ${external.libs.dir}:${libraryjarpath} and you should be all set cheers, steve -- stephen lau | st...@grommit.com | http://whacked.net

[android-developers] Re: Proguard, Android, and the Licensing Server, or...

2010-09-23 Thread Stephen Lebed
and perhaps a no- brainer for you guys. I know that the blog was most likely rushed out to address developers concerns, but do you know if there are plans to make the whole process more streamlined? Best Stephen Lebed You sure know how to motivate people. -- Dianne Hackborn Android

[android-developers] Scrollable tabs

2010-09-21 Thread Stephen Shelton
I've got more tabs that can be expected to fit on low res screens. 6, to be exact, and some with some longer words. What I'd like to do is have them scroll, much as the stock music player that came equipped on my phone (Samsung Vibrant). I've dumped them in a scroll view, but the result is that

Re: [android-developers] Getting the right highlighting behavior in a ListView

2010-09-20 Thread Stephen Lau
). Is there a way I can tell the ListView that I want this behavior or something similar so the user knows what item has been selected? cacheColorHint http://developer.android.com/resources/articles/listview-backgrounds.html -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You

[android-developers] hah! so *thats* how they do it!

2010-09-18 Thread Stephen Ridley
navi-two:tools s7ephen$ say -v Cellos droid; navi-two:tools s7ephen$ uname -a Darwin navi-two.local 10.3.2 Darwin Kernel Version 10.3.2: Wed Mar 17 14:55:00 PDT 2010; root:xnu-1504.5.30~3/RELEASE_I386 i386 -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Activity stack with browser and protocol handler

2010-09-18 Thread Stephen Lau
quite figure out how. I've made the activity's launchMode singleTask in the AndroidManifest but that doesn't seem to have an effect. Anyone have any suggestions? cheers, steve -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You received this message because you

[android-developers] Re: Need a Samsung Behold II user to help identify problem

2010-09-11 Thread Stephen
Tried to test on an original Samsung Galaxy i7500 which I think has the same lineage as the Behold II, but Android Market cannot find your app on this phone. Did you take it down? Stephen On Sep 9, 4:14 pm, dhagge damianha...@gmail.com wrote: I just released my first app and have several

Re: [android-developers] Re: Can you change permissions when you update an app?

2010-08-31 Thread Stephen Morrison
Ok, thanks. Sounds good. I guess I have to decide if I will loose more users by being scared away by a permission that allows the app access to their location or if I will loose more because it is too much hassle to update the app manually. -Stephen On Tue, Aug 31, 2010 at 3:29 AM, String

Re: [android-developers] Sharing code between apps as in Eclipse

2010-08-26 Thread Stephen Lau
in your sidebar for java-common. Right click on your Android project node, and select Build PathConfigure Build Path and make sure the java-common (or whatever you call it) is included. That should be it. You can also do this using ant quite easily. cheers, steve -- stephen lau | st...@grommit.com

Re: [android-developers] ATT Samsung Captivate mExternalStorageAvailable == false;

2010-08-19 Thread Stephen Lau
Brown -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- 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: Application permissions

2010-08-19 Thread Stephen Lin
Hi Dianne, I am building an application to configure Ethernet on a custom Android platform. How do I get my application signed to have access to android.permission.WRITE_SECURE_SETTINGS? Thanks, Stephen On Aug 5, 7:36 pm, Dianne Hackborn hack...@android.com wrote: ... Third party apps can't

Re: [android-developers] Re: ATT Samsung Captivate mExternalStorageAvailable == false;

2010-08-19 Thread Stephen Lau
the owner, group, and user (everybody) have no rights at all. Any suggestions how I might get read and write access to the sdcard on the ATT Samsung Captivate? Thanks, John Brown -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You received this message because you

Re: [android-developers] Re: Round Thumbs in Seek Bar

2010-08-19 Thread Stephen Lau
Not really, it's a transparent .png -- not code. cheers, steve Ranjan A R wrote: Could you please give me some sample code. On Aug 18, 2:31 pm, Stephen Laust...@grommit.com wrote: Ranjan A R wrote: How to change the rectangular thumb to round thumb in androidd seek bar. You can use

Re: [android-developers] registerMediaButtonEventReceiver issue

2010-08-18 Thread Stephen Lau
/AudioManager.html#unregisterMediaButtonEventReceiver(android.content.ComponentName) cheeers, steve -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- 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: mediaplayer seekTo buffering

2010-08-18 Thread Stephen Lau
Stephen Lau wrote: I'm noticing a problem (on my Android 2.1 test devices) where if I use MediaPlayer and have it start playing a stream and then try to seek to a point past where it buffers, the player gets out of sync. I would expect it to issue a new HTTP GET from the server with a byte

[android-developers] mediaplayer seekTo buffering

2010-08-18 Thread Stephen Lau
and the currently playing position is 0:08 while it has 0:30 seconds buffered. If I seek to 1:00, getCurrentPosition() starts returning 60s, but the audio playing is actually from 0:30. Any ideas what could be wrong? cheers, steve -- stephen lau | st...@grommit.com | http://whacked.net

Re: [android-developers] Round Thumbs in Seek Bar

2010-08-18 Thread Stephen Lau
Ranjan A R wrote: How to change the rectangular thumb to round thumb in androidd seek bar. You can use a drawable with transparency for your thumb attribute. cheers, steve -- stephen lau | st...@grommit.com | http://whacked.net | @stevel -- You received this message because you

[android-developers] Re: Connecting to ATT Samsung Captivate Galaxy

2010-08-12 Thread Stephen
%CompositeAdbInterface% = USB_Install, USB\VID_22B8PID_41DBMI_01 add the lines above with the new device’s Hardware Ids and install the usb driver again. And I dont think is operator dependents, all do with the device itself. Regards, Stephen On 8月13日, 上午3時42分, john brown johnbrowngreybe

[android-developers] Re: start AlertDialog from AppWidgetProvider

2010-08-10 Thread Stephen
I got the solution. Probably you might already know but if anyone dont want your started activity display when user long press home, put android:excludeFromRecents=true for the activity. Otherwise, user might launched wrong activity from the recent list. Regards, Stephen On 8月9日, 上午10時08分

[android-developers] Re: start AlertDialog from AppWidgetProvider

2010-08-08 Thread Stephen
? On 8月6日, 下午6時38分, Stephen nxvs...@gmail.com wrote: Oh, that can start a AlertDialog in Home screen. I will give it a go. Thx Regards, Stephen On 8月6日, 下午6時19分, Mark Murphy mmur...@commonsware.com wrote: On Fri, Aug 6, 2010 at 6:16 AM, Stephen nxvs...@gmail.com wrote: Anyone know

[android-developers] start AlertDialog from AppWidgetProvider

2010-08-06 Thread Stephen
Anyone know if it is possible to add AlertDialog within a AppWidgetProvider class? Here is the code I am working on where I start the AlertDialog on onEnabled function call. @Override public void onEnabled(Context context) { super.onEnabled(context);

[android-developers] Re: start AlertDialog from AppWidgetProvider

2010-08-06 Thread Stephen
Oh, that can start a AlertDialog in Home screen. I will give it a go. Thx Regards, Stephen On 8月6日, 下午6時19分, Mark Murphy mmur...@commonsware.com wrote: On Fri, Aug 6, 2010 at 6:16 AM, Stephen nxvs...@gmail.com wrote: Anyone know if it is possible to add AlertDialog within

[android-developers] Re: Android Market Licensing: Now Available!

2010-07-27 Thread Stephen Lebed
I just wanted to say a big thank you! Stephen On Jul 27, 10:55 am, Trevor Johns trevorjo...@google.com wrote: Android fans, For those of you who haven't already heard through our blog, we've just launched the Android Market licensing service: http://android-developers.blogspot.com/2010/07

[android-developers] Re: Disabling Java formatting in the Eclipse editor

2010-07-18 Thread Stephen Lebed
If you have your own style of formatting, why not see if you can create your own custom format in settings? There were things I didn't like with the default java formatting, so I created my own custom setup. On Jul 17, 6:32 pm, DonFrench dcfre...@gmail.com wrote: Out of curiosity, what do you

[android-developers] Using EmbossFilterMask

2010-07-17 Thread Stephen Lebed
I'd like to have an embossed look on a bitmap image using its alpha channel. It seems that the EmbossFilterMask works great on drawables, like drawCircle, for instance. Is there a way to apply it to a bitmap like drawBitmap? Thanks, Stephen -- You received this message because you

[android-developers] Re: App Inventor to Market

2010-07-14 Thread Stephen Lebed
I wouldn't think that a person should/could upload App Inventor apps to the market. I thought it would just be used to upload to your own phone. Hopefully Google will add a filter for AppInventor apps. Stephen On Jul 14, 12:13 pm, TreKing treking...@gmail.com wrote: On Tue, Jul 13, 2010 at 3

[android-developers] Market question about copy protection

2010-07-13 Thread Stephen Lebed
helping and I should just leave it off, but since I've had it on through several updates now, I'd hate to cause my users grief by changing now. Anyone with experience in this please let me know. Best, Stephen Lebed -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: IP infringements on the Market

2010-07-12 Thread Stephen Lebed
that Google wouldn't try to preempt this situation now when its not on anyones radar. -Stephen Lebed On Jul 10, 11:09 am, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: 50+ - I'm from a time that if you plagiarized to write a paper, you got expelled from school. That mentality stuck

[android-developers] Market reporting wrong app size

2010-07-07 Thread Stephen Lebed
I've just released an update to my app and the apk file is 3.5mb on my system. It is reported as 3.5mb in the developer console. But in the market it is showing up as 7.02mb. I'm now getting comments that that app is too big and I feel people may not purchase it if they think it will take up

[android-developers] Allowing apps to be stored on SD card

2010-07-07 Thread Stephen Lebed
I'm not programming for Froyo yet, I still developing against 1.6 for now. I've been asked to allow my app to be stored on the SD card. Is there a way to add that option to my app? Is it a setting in the manifest? Thanks, Stephen -- You received this message because you are subscribed

[android-developers] Re: Allowing apps to be stored on SD card

2010-07-07 Thread Stephen Lebed
Never mind, I just found it... http://developer.android.com/guide/appendix/install-location.html On Jul 7, 7:49 pm, Stephen Lebed srle...@gmail.com wrote: I'm not programming for Froyo yet, I still developing against 1.6 for now.  I've been asked to allow my app to be stored on the SD card

[android-developers] How to wait for Asynctask to return with data

2010-07-06 Thread Stephen Lebed
, or how to trigger an event when AsyncTask is finished. Thanks, Stephen -- 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

[android-developers] Re: How to wait for Asynctask to return with data

2010-07-06 Thread Stephen Lebed
the first call to Asynctask returns, then the data will not be complete. I hope this makes sense. Any ideas for this scenario? Thanks, Stephen On Jul 6, 10:23 am, Mark Murphy mmur...@commonsware.com wrote: On Tue, Jul 6, 2010 at 12:57 PM, Stephen Lebed srle...@gmail.com wrote: I'm calling

[android-developers] Re: How to wait for Asynctask to return with data

2010-07-06 Thread Stephen Lebed
Thanks Frank, its a very good idea. I'll have to rewrite the interface code to accommodate it. I'm currently using an alert dialog to present the user with the button to click or cancel. It executes the Asynctask, and calls a second alert dialog with a new button to press or cancel. Right now

[android-developers] Re: How to wait for Asynctask to return with data

2010-07-06 Thread Stephen Lebed
It did work fine! Thank again for all your help as always. Best, Stephen On Jul 6, 12:47 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Jul 6, 2010 at 3:44 PM, Stephen Lebed srle...@gmail.com wrote: I guess I could try calling a new alert dialog in the onPostExecute(), but I don't

[android-developers] Choosing resolution over density for drawables

2010-07-04 Thread Stephen Lebed
supports 480x800 resolution, I'd like to use that, irregardless of density. Thanks, Stephen -- 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

[android-developers] Re: Choosing resolution over density for drawables

2010-07-04 Thread Stephen Lebed
with a density of 1.5 Now I'm really confused! Stephen On Jul 4, 12:33 am, Kostya Vasilyev kmans...@gmail.com wrote: Stephen, There is a whole bunch of qualifiers for resource folder names, described here: http://developer.android.com/guide/topics/resources/providing-resourc... You can do

[android-developers] Re: Resource Alias not resolving

2010-07-04 Thread Stephen Lebed
. If there is a folder qualifier combination that I'm missing, or anything else please let me know. Best, Stephen Lebed On Jul 4, 5:42 am, Mark Murphy mmur...@commonsware.com wrote: On Sun, Jul 4, 2010 at 8:11 AM, Tom Gibara m...@tomgibara.com wrote: That lays it out very clearly. If that is the approach we

[android-developers] Re: Resource Alias not resolving

2010-07-04 Thread Stephen Lebed
android:anyDensity=false/ Stephen On Jul 4, 3:20 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, Jul 4, 2010 at 6:06 PM, Stephen Lebed srle...@gmail.com wrote: I've tried your suggestions, but its still not working.  I am testing on the emulator, so there may be an issue with that.  I'm

[android-developers] Re: Resource Alias not resolving

2010-07-04 Thread Stephen Lebed
I have tried creating a drawable folder called res/drawable-480x320 and res/drawable-800x480 thinking that this would do the trick, but it doesn't work either. Stephen On Jul 4, 3:44 pm, Tom Gibara m...@tomgibara.com wrote: 2. The Web designer decides that the original design was nonsensical

[android-developers] Re: Resource Alias not resolving

2010-07-04 Thread Stephen Lebed
is displaying correctly. Stephen On Jul 4, 3:58 pm, Stephen Lebed srle...@gmail.com wrote: I have tried creating a drawable folder called res/drawable-480x320 and res/drawable-800x480 thinking that this would do the trick, but it doesn't work either. Stephen On Jul 4, 3:44 pm, Tom Gibara m

[android-developers] Re: Resource Alias not resolving

2010-07-04 Thread Stephen Lebed
to meet with you at a future I/O conference. Best, Stephen Lebed On Jul 4, 6:19 pm, Dianne Hackborn hack...@android.com wrote: Okay let me put it this way...  what you are trying to do is not how things are intended to work, because it results in applications that are very tied to specific screen

[android-developers] Re: Setting and testing state of WiFi Tether hotspot setting in 2.2

2010-07-03 Thread Stephen
Me too! On Jul 2, 1:53 pm, Jens jens.is.loca...@googlemail.com wrote: I'm interested in this too. Is there already any experience with this? -- 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: Resource Alias not resolving

2010-07-03 Thread Stephen Lebed
the alias's from anything other than the 'drawable' folder. I understand the difference between screen sizes and dpi', I'm just trying to find a simple way to make a device utilize graphics that its capable of supporting. Thanks, Stephen On Jul 2, 5:33 pm, Dianne Hackborn hack...@android.com wrote

[android-developers] Resource Alias not resolving

2010-07-02 Thread Stephen Lebed
, but when my app tries to read the drawable, it throws an error, Null Pointer Exception. Does the alias xml file only work with images in drawable, or can they be in a drawable-hdpi folder? When I try to pull the file from drawable-hdpi it causes the error. Any help would be appreciated. Stephen

Re: [android-developers] Re: UI Stack over flow

2010-06-24 Thread Stephen Eilert
And so there's now a virus that has the completely useless payload of typing ='s and targets android? Stephen On Jun 24, 2010, at 7:38 PM, Gabriel Simões wrote: Well, it´s seems my computer has a virus that interacts only with some softwares. And one of them is the emulator. If I try

[android-developers] Re: How is the camera view angle determined in getHorizontalViewAngle ()?

2010-06-13 Thread Stephen Lebed
() command seems like it would return a value from the camera that I could use, but I'd like my app to run on pre 2.2 hardware. Thanks, Stephen On May 21, 4:46 am, Stephen Lebed srle...@gmail.com wrote: I'm curious how the camera view angle determined using getHorizontalViewAngle

[android-developers] Re: App disappears from the Market after upgrade

2010-06-10 Thread Scott STEPHEN - Better Contacts
Ian, What apps ? I will test here from France. Scott On Jun 10, 8:09 am, piemm...@googlemail.com piemm...@googlemail.com wrote: Similar problems here, Before google did the market 'fix' for 2.1/2.2,  2 of my apps (Torque) appeared correctly in the Android Market for Android1.6 and upward

[android-developers] Re: App disappears from the Market after upgrade

2010-06-10 Thread Scott STEPHEN - Better Contacts
, it seems that: uses-permission android:name=android.permission.BLUETOOTH now hides apps for 1.5/1.6 devices whereby before the market upgrade, it didn't. (This is now a problem for me) Thanks Ian. On Jun 10, 7:19 am, Scott STEPHEN - Better Contacts scott.stephen...@gmail.com wrote: Ian

Re: [android-developers] Re: java.lang.OutOfMemoryError

2010-06-10 Thread Stephen Eilert
for the garbage collector. Now, an explicit GC *before* big allocations could help. This would at the very least allow the VM to free memory (if any) before the fact. I'd take it as a hint to the virtual machine. -- Stephen Sent from my Emacs -- You received this message because you

[android-developers] Re: App disappears from the Market after upgrade

2010-06-09 Thread Scott STEPHEN - Better Contacts
Yuvi, You are definately not the only one having this problem. My application Better Contacts (info.scottstephen.android.bettercontacts) is not longer in the Market, since an update on Friday evening. It actually seemed to disappear progressively as I had people telling me that they couldn't find

[android-developers] Re: App disappears from the Market after upgrade

2010-06-09 Thread Scott STEPHEN - Better Contacts
Same problem here with my application Better Contacts (info.scottstephen.android.bettercontacts). Also missing the above mentioned apps. Tested on a Motorola Milestone and HTC Desire both running 2.1- update1. These tests are done from France on the SFR and Orange networks. Hope this helps. And I

[android-developers] Re: App disappears from the Market after upgrade

2010-06-09 Thread Scott STEPHEN - Better Contacts
Same problem here with my application Better Contacts (info.scottstephen.android.bettercontacts). Also missing the above mentioned apps. Tested on a Motorola Milestone and HTC Desire both running 2.1- update1. These tests are done from France on the SFR and Orange networks. Hope this helps. And

Re: [android-developers] java.lang.OutOfMemoryError

2010-06-08 Thread Stephen Eilert
the garbage collector before spitting out an OutOfMemory exception? -- Stephen Sent from my Emacs -- 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

<    1   2   3   >