[android-developers] Bluetooth pair table size

2016-06-16 Thread ed
about these devices? Ed -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. To post to this group,

[android-developers] Installing jcifs on Android Studio

2016-01-20 Thread Ed Eyre
Hi is there any "good" Walkthrought I could use to help me get this setup. New to Android Studio (and Java) Have spent hours trying and googleing ??? any advice would be appriceated -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] Re: Fork/Join and JSR166 on Android

2014-05-29 Thread Ed Harned
igor: Absolutely. I know there are quad-core machines out there but the logic behind the answer is still the same. I'm not even sure Android supports Java7. The current F/J framework is designed for massive memory processing of DAG structures. What possible use is that on a phone? ed

[android-developers] Re: Fork/Join and JSR166 on Android

2013-07-06 Thread Ed Harned
looking to split work into multiple threads, then there are products to do just that. I wrote this article and the software it expounds: Managing Threads in Androidhttp://coopsoft.com/ar/AndroidArticle.html Ed On Tuesday, July 2, 2013 6:00:35 PM UTC-4, Ratamovic wrote: Hi all, I am trying

[android-developers] Re: It is possible to stop a thread that is connecting to URL with httpConnection.connect()?

2012-10-06 Thread Ed Harned
Do your connection in a separate thread or AsyncTask. You can time the thread and ignore it if it takes too long. Now you'll be getting into thread control which really is a whole other subject. On Friday, October 5, 2012 7:39:55 PM UTC-4, saex wrote: i have a thread that is connecting to a

[android-developers] Re: Is multithreading recommended for my case?

2012-06-01 Thread Ed Harned
As Nathan said -- but if you do need to separate you work into components and let each run independently then try out this product Managing Threads in Android http://coopsoft.com/ar/AndroidArticle.html Ed -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Problem using Ksoap2

2012-03-18 Thread Ed
FWIW I've tried using ksoap2 with wcf and it works until you get to complex classes and then it falls over on the namespaces. The best bet (if you can) is enable JSON on WCF and use GSON. Cheers, Ed On Mar 19, 4:03 am, g...@deanblakely.com g...@deanblakely.com wrote: I'm trying to see

[android-developers] Re: Resume activity while download

2012-02-01 Thread Ed Harned
This open source project supports a general purpose multi-threading service: http://coopsoft.com/ar/AndroidArticle.html Ed On Jan 31, 10:21 am, TreKing treking...@gmail.com wrote: On Tue, Jan 31, 2012 at 9:10 AM, ColletJb collet...@gmail.com wrote: How could I handle the progress updates

[android-developers] Re: Hardware accleration slow down every Canvas app. Why?

2012-01-18 Thread Ed Burnette
Fps2D does not show any change when you turn on or off the setting on a GN. On Jan 16, 11:09 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Holy macaroni What a thread. Let's take an anology: First vehicle: A bicycle. You can go reasonably fast with it by the power of a single human.

[android-developers] Current mobile connection speed?

2011-12-13 Thread Ed Murphy
How do I determine the current users mobile (not wifi) connection speed? I know how to receive the speed link of the wifi connection (myWifiInfo. getLinkSpeed());), but not the mobile connection. Thanks, any help is appreciated! -- -Ed Murphy contact.edmur...@gmail.com -- You received

[android-developers] strange difference between real phone and emulator on opening/playing sound file

2011-09-26 Thread Ed Korsberg
I have ran into an anomaly with my android phone. I have added several mp3 and wav files to the /res/raw folder and verify the R.java is updated correctly. The problem is that for one mp3 file I get different behavior between the phone and the emulator. Given this code MediaPlayer mpPop =

[android-developers] Re: parcelable again: passing object BACK through activity stack

2011-09-26 Thread Ed Korsberg
I will throw my 2 cents into this discussion keeping in mind I am a newbie android developer. I was able to successfully use serialization to pass an object to and return from another activity. I hope this helps... //this main activity will pass the gameParams (of type public class

[android-developers] Re: Once again the INSTALL_FAILED_INSUFFICIENT_STORAGE error

2011-09-05 Thread Ed
are different so one may have room while the other doesn't. Cheers, Ed -- 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: How to detect if a view is on screen

2011-09-05 Thread Ed
in the right direction. Cheers, Ed -- 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: Can we create two ThreadPoolExecutor running on android?

2011-09-01 Thread Ed Harned
Take a look at this article and the open source project it mentions. http://coopsoft.com/ar/AndroidArticle.html You can create the Tymeac service with thread pools and do anything you want Ed On Aug 30, 12:30 pm, usher usher...@gmail.com wrote: AsyncTask is managing a thread pool with 5 core

[android-developers] Eclipse unresolved OpenGL functions.

2011-08-24 Thread Ed X
I'm using the NDK with Eclipse Indigo and I want to access some OpenGL methods from C++ so I included GLES/gl.h. I can compile the C++ code fine from within Eclipse, however Eclipse insists that the OpenGL functions cannot be resolved. I opened GLES/ gl.h in Eclipse and noticed that declarations

[android-developers] New Application

2011-08-04 Thread Ed Harned
: Managing Threads in Android http://coopsoft.com/ar/AndroidArticle.html Ed Harned -- 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: Generic resizable appwidgets in Android 3.1

2011-06-23 Thread Ed
how often it fires. Interested to hear/see your solution to this problem as it's likely to be one that I will face when I get around to it. Ed -- 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: Generic resizable appwidgets in Android 3.1

2011-06-23 Thread Ed
Ahh yeah - forgot about our friend RemoteView :( On Jun 24, 9:05 am, Mark Murphy mmur...@commonsware.com wrote: On Thu, Jun 23, 2011 at 6:28 PM, Ed edscha...@gmail.com wrote: Can you have a custom view inside the widget that is fill_parent and do what you need to do in the onDraw? No. You

[android-developers] Re: Please help me with this issue

2011-06-23 Thread Ed
you have this twice: activity android:name=.Login may or may not be the issue -- 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

[android-developers] Re: IllegalStateException: Fragment not added in ActionBarTabs example

2011-05-20 Thread Ed Burnette
Ok, I've entered a bug report. See/vote for: http://code.google.com/p/android/issues/detail?id=17029 . Thanks. On May 19, 2:46 pm, Shane Isbell shane.isb...@gmail.com wrote: I've run into this on occasion, I surrounded it with a general Exception catch to handle this, which seemed to have no

[android-developers] IllegalStateException: Fragment not added in ActionBarTabs example

2011-05-19 Thread Ed Burnette
While writing an app that uses Fragments and tabs on the Action Bar I ran into a crash. I went back to the API Demos sample and can make the same crash happen there. Start the program in the emulator and select App Action Bar Action Bar Tabs. Click Toggle tab mode then Add new tab twice, then

[android-developers] Re: Fragment animation as in Honeycomb Gmail app - how to do that?

2011-05-19 Thread Ed Burnette
There's probably using FragmentTransaction.setTransition() or setCustomAnimations(). On May 19, 12:14 pm, Scythe scythe...@gmail.com wrote: I'd like to achieve similar fragment behaviour as in the Honeycomb Gmail app. So I have three fragment next to each other: A, B and C. Initially, A and B

[android-developers] Re: Eclipse wont regenerate files since downloading the 2.3 SDK

2011-03-10 Thread Ed Burnette
Sometimes I have to edit something innocuous in the xml file and in a .java file and save it (with build automatically set) to get a clean build. Project Clean usually works but when it doesn't, the modify- and-save trick usually works. Changing the Android build target temporarily might jostle

[android-developers] Re: Fragment Support forward compatibility?

2011-03-10 Thread Ed Burnette
Do you think this compatibility library could be used for more than just fragments? For example, action bars, touch event changes, and so on? It would be nice to cut down on the use of reflection and version checks when new APIs are added that you'd like to use but still want to run on older

[android-developers] Re: Sudoku

2011-03-03 Thread Ed Burnette
As far as I can tell, those DEBUG/SntpClient messages are printed by a part of the system not related to your program. Just ignore them. -- 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: Garbage collector hangs OpenGL on HTC Evo

2011-02-17 Thread Ed Burnette
This may not be related to the hang, but 387K freed and a pause of 46ms in garbage collection sounds like a lot. If you can cut out some of your larger memory allocations and deallocations it might help. Avoiding memory allocs will help your frame rate too. On Feb 16, 11:07 am, Bill Tschumy

[android-developers] Re: Android 2.3 Vs 3.0

2011-02-17 Thread Ed Burnette
The phone and tablet source trees have diverged temporarily but it's expected that the I version of Android will bring them back together. The version number hasn't been decided - it might become 3.1 or 3.5 or something else - just not 3.0. So when somebody says Honeycomb is just for tablets and

[android-developers] Re: Honeycomb SDK

2011-02-17 Thread Ed Burnette
Dianne said Android 3.0 would be level 11 in the final API (http:// groups.google.com/group/android-developers/msg/dbe54b1e41663284) but I was reading too much into that. It seems clear now it might be 11, or 12, or some other integer in that ballpark. We'll see when it comes out. Dianne also

[android-developers] Re: Honeycomb SDK

2011-02-10 Thread Ed Burnette
3.0 to provide some room to grow. If there are not going to be any more 2.x releases then it won't matter. On Feb 9, 1:25 pm, Xavier Ducrohet x...@android.com wrote: I'm not commenting on rumors, but Android 2.3.3 (API *10*) is out as an SDK. Xav On Wed, Feb 9, 2011 at 9:27 AM, Ed

[android-developers] Re: Honeycomb SDK

2011-02-09 Thread Ed Burnette
at 5:17 PM, Mark Murphy mmur...@commonsware.comwrote: My initial reaction was that it was an homage to Spinal Tap. On Mon, Feb 7, 2011 at 7:47 PM, Ed Burnette ed.burne...@gmail.com wrote: 11? Does that mean the next 2.x release will be API level 10 and that there will only be one more 2

[android-developers] Re: Honeycomb SDK

2011-02-07 Thread Ed Burnette
11? Does that mean the next 2.x release will be API level 10 and that there will only be one more 2.x release with API changes? Or am I reading too much into it? I was wondering how that numbering hiccup was going to be handled. On Feb 7, 3:01 am, Dianne Hackborn hack...@android.com wrote: I

[android-developers] Re: Dual mode (Honeycomb Gingerbread) is the same APK.

2011-02-04 Thread Ed Burnette
They could have a wrapper class that detects and uses the 3.0 API if it's there, and otherwise does some fall back behavior that looks good on older versions. On Feb 3, 6:20 pm, Streets Of Boston flyingdutc...@gmail.com wrote: I read this on android-developers.blogspot.com, from

[android-developers] Re: Tutor for project

2010-10-09 Thread Ed
Hit youtube. There's heaps of good tutorials/presentations on there ranging from hello world to Romain Guy's List View lectures. Ed On Oct 8, 5:31 am, Mike karl mike.d.k...@gmail.com wrote: Looking for some teaching on a simple calculator app please send rates to mike.d.k...@gmail.com should

[android-developers] Re: Can android support more than one sdcard?

2010-09-11 Thread Ed
that is probably in capable hands with Google. Ed On Sep 11, 11:04 am, Dianne Hackborn hack...@android.com wrote: On Fri, Sep 10, 2010 at 2:33 PM, Doug Gordon gordo...@gmail.com wrote: I am really surprised that the Android design would only account for one of anything. In my experience, any time you say

[android-developers] Re: Drawable.mutate().setAlpha() not working pre 2.2?

2010-09-08 Thread Ed
Hi Mark, It sounds similar to the weirdness I noticed in the post below. Maybe try using the code from my second comment and see if that helps. http://groups.google.com/group/android-developers/browse_thread/thread/761504bde4573d3e/4a68b54298dd4418#4a68b54298dd4418 Ed On Sep 9, 1:03 am, Mark

[android-developers] Re: How does Android determine whether to move the layout up when showing the softkeyboard?

2010-09-06 Thread Ed
Instead of View.INVISIBLE try View.GONE. Invisible = This view is invisible, but it still takes up space for layout purposes. http://developer.android.com/reference/android/view/View.html Also in your scroll view layout try setting android:fillViewport=true on the scroll view. Ed On Sep 7, 12

[android-developers] Bitmap mutability dependent on location

2010-08-30 Thread Ed
graphics as appropriate rather than scaling at runtime or implementing my own dpi image selector. Is this a known limitation? If so is there documentation about it? Cheers, Ed -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Scrolling like a spreadsheet

2010-08-30 Thread Ed
Ok... so I was bored so Uses spreadsheet.xml which contains a LinearLayout with the id layout_spreadsheet. There are some tweaks that could be made like making the top left cell outside the left scroll but I'm sure you can figure that out. Allowing for dynamic sized cols/rows might be an

[android-developers] Re: Bitmap mutability dependent on location

2010-08-30 Thread Ed
contain mutable. You have to check whether the Bitmap you get is mutable. Bitmaps loaded from resources are never mutable, you must create a mutable copy first (see the Bitmap.create/copy documentation.) On Mon, Aug 30, 2010 at 12:53 AM, Ed edscha...@gmail.com wrote: Hi all, Found a bit

[android-developers] Re: Optimizing list view scroll

2010-08-28 Thread Ed
that come up with a plan for handling a queue of requests (I used a PriorityQueue so I can fast track important images), caching images, returning the images to the caller...etc... Lots of fun to be had. Ed On Aug 28, 10:44 am, Dianne Hackborn hack...@android.com wrote: This is an API demo

[android-developers] Re: Strange Issue with Return String from Web Service

2010-08-15 Thread Ed
Please see: http://groups.google.com/group/android-developers/browse_thread/thread/d25a94dc3b92cd84/b4bbf23336c44341#b4bbf23336c44341 On Aug 14, 2:39 am, Tommy droi...@gmail.com wrote: Hi everyone,   I have a strange issue. I am using KSOAP2 to create a soap request to a .net webservice. I

[android-developers] Re: Largest Android application?

2010-08-06 Thread Ed Burnette
Your best option is to try a higher compression rate on your mp3s. Most people are not going to listen to it through studio quality headphones, but rather through a crappy 1cm wide speaker on the back of the phone. Android also supports Ogg Vorbis, AMR-NB, and AMR-WB which might work better than

[android-developers] Re: Socket Timout in a simple HttpGet

2010-08-04 Thread Ed
using Eclipse, is in Run Configurations where you can set a limited network speed for testing. It's easy to limit it to test something and then forget to remove the limit later. Ed On Aug 4, 10:58 pm, Martins Streņģis martin...@draugiem.lv wrote: btw on gprs it's working fine -- You received

[android-developers] Re: How to create new page / form

2010-08-02 Thread Ed
(this, MyActivity.class)); 6. run it and hopefully it will work. Cheers, Ed On Aug 3, 5:47 am, Bob Kerns r...@acm.org wrote: Also -- have you tried using the debugger to debug your problem? It doesn't sound like it. Had you done this basic step, I think: 1) You might have found the solution

[android-developers] Re: problem regarding starting of emulator

2010-08-01 Thread Ed
and if you are doing cross platform testing. Ed On Jul 31, 2:01 pm, Neeraj Sinha iamneerajsi...@gmail.com wrote: Hi All, I am so new in android developement.  I am facing a problem regarding AVD. Whenever i am trying to run my program it does take a lot of time to start AVD emulator. Once its

[android-developers] Re: Retrieving XML Document from web service

2010-08-01 Thread Ed
this is the KSoap2 toString() once KSoap2 has parsed the XML response. Ed On Jul 31, 9:28 am, beacon indiantalkiedhi...@gmail.com wrote: Hello Frank, This is what I am doing on the client side SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); request.addProperty(token,WebPage.token

[android-developers] Re: Problem

2010-08-01 Thread Ed
writing a generic reusable solution to this very problem but I think the subset of language components for both views and code would be hard to define for unknown applications. Ed On Aug 1, 10:26 pm, { Devdroid } webnet.andr...@gmail.com wrote: On 30 July 2010 11:49, prateek tuli censor

[android-developers] Re: get favicon from sites

2010-08-01 Thread Ed
= Drawable.createFromStream(is,src); use the Drawable as you see fit. NB: this is a blocking request and ideally should not be executed on the UI thread. If you're just mucking around with ideas then blocking the UI thread probably isn't a concern though. Ed On Jul 31, 7:52 pm, aye thwe ayethw...@gmail.com

[android-developers] Re: What is the best way to handle Images?

2010-07-30 Thread Ed
of the image is the key. This might help - http://code.google.com/p/android-pinch/source/browse/trunk/src/com/nikkoaiello/mobile/android/WebImageView.java?r=7 Also try some housekeeping things like closing any streams. Ed On Jul 30, 12:42 am, Sohan badaya sohan.bad...@gmail.com wrote: Hi All, I wrote

[android-developers] Inflate view from XMLPullParser or other external source

2010-07-27 Thread Ed
across projects. Cheers, Ed -- 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] location.getTime() returns strange result

2010-07-26 Thread Ed Lebeau
It doesn't appear to be the conversion. It's the (long) value being returned that is way off. With the Date() function, I'm getting back Jan 29 12013. The time is off by two minutes, but I can't tell if that is just the time of the last valid fix, a random number that happens to be close to the

[android-developers] Re: Custom namespace using .Net webservice and ksoap.

2010-06-09 Thread Ed
to the Android app. Cheers, Ed On Jun 1, 10:25 pm, rrohilla rohill...@gmail.com wrote: Hi, I am calling a web service which has the following request format. soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/ envelope/ xmlns:ns=http://test.com/2009/08; xmlns:dat=http:// test.com/2009/08

[android-developers] Re: Custom namespace using .Net webservice and ksoap.

2010-06-09 Thread Ed
. envelope.addMapping(request.getNamespace(), MyRequestClass, MyRequestClass.class); No doubt I'll have move questions as soon as I have more time to work on the app. Ed On Jun 8, 11:15 am, Ed edscha...@gmail.com wrote: Hi All, I believe I'm having the same problem as Rahul. Basically I have a .Net

[android-developers] Re: Motorola Droid (possible android) multi-touch bug and how to reproduce

2010-03-12 Thread Ed Burnette
Please read and vote for this bug: http://code.google.com/p/android/issues/detail?id=6297 And also see some commentary about it on my blog here: http://blogs.zdnet.com/Burnette/?p=1747 --Ed Editor, Planet Android -- http://www.planetandroid.com -- You received this message because you

[android-developers] Re: Mulit-Touch Problems

2010-03-12 Thread Ed Burnette
Please read and vote for this bug: http://code.google.com/p/android/issues/detail?id=6297 And also see some commentary about it on my blog here: http://blogs.zdnet.com/Burnette/?p=1747 --Ed Editor, Planet Android -- http://www.planetandroid.com -- You received this message because you

[android-developers] Updating the UI in response to a received broadcast.

2010-03-11 Thread Ed Greenberg
I have an app with an activity and a service. The service schedules a function to run using timer.scheduleAtFixedRate. When the timer task runs, I want to update some TextView objects in the Activity's UI, so that the user knows that the service has run, and the last thing it did. So in the

[android-developers] Calendar application issues-

2009-11-22 Thread Ed Gatzke
I submitted a handful of different issues for enhancement to the buglist (Items 4919-4924). I think these are reasonable issues and not too difficult to do. I would even take a stab, but it is not obvious to me yet how to grab the applications package and get running. Is there a separate

[android-developers] Re: Android WVGA support

2009-09-09 Thread Ed Burnette
Did you mean uses-sdk? On Sep 9, 12:37 pm, Dianne Hackborn hack...@android.com wrote: You'd do supports-sdk android:minSdkVersion=3 android:targetSdkVersion=4 / and then configure the rest of the manifest as desired. On Wed, Sep 9, 2009 at 2:12 AM, Al Sutton a...@funkyandroid.com wrote:

[android-developers] Re: Broken OpenGL texture output after resuming the app

2009-08-25 Thread Ed Burnette
version of the OpenGL example at http://www.pragprog.com/titles/eband/source_code exhibits this issue, but I hate to put in hacks for short-term problems because they cloud the examples and may be inefficient or even stop working in the future. Thanks, --Ed On Aug 21, 4:58 pm, Ed Burnette ed.burne

[android-developers] Re: Broken OpenGL texture output after resuming the app

2009-08-21 Thread Ed Burnette
, if that's what it is. --Ed Burnette Author of Hello, Android -- http://pragprog.com/titles/eband On Jul 28, 9:02 pm, Michael Angel obliviousau...@gmail.com wrote: I've run into a very strange problem regardingOpenGLtextureoutputs, which only occurs when the app is resumed (particularly when

[android-developers] Re: Broken OpenGL texture output after resuming the app

2009-08-21 Thread Ed Burnette
I have opened Issue 3623 for this problem. http://code.google.com/p/android/issues/detail?id=3623 --~--~-~--~~~---~--~~ 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] Getting content in browser launched activity

2009-08-04 Thread Ed
Hello, I have an activity which is launched to process a file which is downloaded from a website. The site requires a login and maintains the session via cookies. The activity has an intent filter defined and it is started but I do not understand how it can get the document that was

[android-developers] Re: problems with Phone.apk built from source

2009-07-26 Thread Ed
a phone call, and extended the subsequent timeouts to default instead of medium (15 seconds). This makes calling phone menus MUCH easier. Thanks again, --Ed On Jul 25, 6:02 pm, Dianne Hackborn hack...@android.com wrote: Hi, this should probably be posted in android-platform, since I think we

[android-developers] problems with Phone.apk built from source

2009-07-25 Thread Ed
the Vendor folder in the source (i.e., T- Mobile, etc). Am I off base? Should Phone.apk be able to work on our HTC dream phones without additional modifications? Thanks very much for your help, --Ed --~--~-~--~~~---~--~~ You received this message because you

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

2009-07-24 Thread Ed
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 cracked,

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

2009-07-23 Thread Ed
a developer's potential profits. The solution to go free with ads is a good one, and using something like a prebuilt solution at the andapp store is great too. Think too much about it, and you WILL have lost time and money. --Ed --~--~-~--~~~---~--~~ You received

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

2009-07-23 Thread Ed
Good point about the Market in other countries. However, I was not only referring to cell phones, but all platforms and software in general. My wild guess that Android software is less pirated is simply because of the installed base. Since there are so many more users of other platforms and

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

2009-07-23 Thread Ed
In fact, using the pirating site listed previously as an example, here is what I found for each cell phone platform: Symbian OS9: 39 pages of apps, 24 pages of games Symbian OS6-8: 41 pages of apps, 34 pages of games Nokia S40: 9 pages total of apps and games PocketPC/Palm: 19 pages of apps,

[android-developers] location and usage of Screen Time Out

2009-07-23 Thread Ed
Hi, I am trying to change the default screen time out for phone calls. I have looked through PhoneApp.java and see that there are calls to PowerManager and LocalPowerManager, which are located in the frameworks. Unfortunately, I am only able to find references to default durations, for example:

[android-developers] Re: AndCooper Build Tool Release

2009-06-02 Thread Ed Burnette
I think he meant: http://mobilebytes.wordpress.com with an r. On Jun 1, 9:13 pm, Mark Murphy mmur...@commonsware.com wrote: Fred Grott(shareme) wrote: The link to the project pages can be found at the MobileBytes blog under the FOSS page: http://mobilebytes.wordpess.com Um... I

[android-developers] Re: How to get more sales on the Android Market

2009-03-03 Thread Ed Burnette
Here's a progress report: 57% of the poll respondents said lower the price so I cut it temporarily from $2.99 to $0.99 (1/3rd the original). In the short time since then, sales increased (2x), but not enough to make up for the price difference. See http://blogs.zdnet.com/Burnette/?p=824 . In

[android-developers] How to get more sales on the Android Market

2009-02-27 Thread Ed Burnette
? Reduce the price on the paid one? Add some more features? These are questions that every Android developer will face. Please have a look, add your vote for the best approach, and share your experiences in marketing your own apps in the talkback section. Thanks, -- Ed Burnette Author, Hello, Android

[android-developers] Re: Having multiple versions of the same app in the market

2009-02-19 Thread Ed Burnette
have 24 hours to decide whether or not to keep it. -- Ed Burnette Hello, Android: Introducing Google's Mobile Development Platform - now available http://www.pragprog.com/titles/eband/hello-android On Feb 19, 8:42 am, jarkman jark...@gmail.com wrote: I'd love to get a definitive answer

[android-developers] MediaPlayer seeking back

2009-01-29 Thread ed
to seek back on the stream. Is this correct, or is there something else going on? Thanks, Ed --~--~-~--~~~---~--~~ 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] Question on recovering deleted pictures and wallpaper

2009-01-06 Thread Ed Burnette
of it. Any ideas? Thanks, --Ed --~--~-~--~~~---~--~~ 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: Is a SIM Required for Dev 1?

2008-12-15 Thread Ed Anuff
Wish I'd known that, although it was pretty cheap to get a second sim from ATT that shares minutes from my iPhone plan. The main gotcha is that I needed to enter the ASN info into the G1 myself for it to connect to the data network, it didn't just work.

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Ed
You could use the browser to access sites like http://www.showipaddress.com/ On Dec 1, 12:18 pm, Andrea [EMAIL PROTECTED] wrote: Yes, the ip address that the dhcp server of a wifi net assigns to my device. Xavier Mathews wrote: IP Address? Xavier A. Mathews Student/Browser

[android-developers] Re: Android Icon Creation Software

2008-11-05 Thread Ed Burnette
Those look nice; are the .svg versions available for use as examples/ templates? On Nov 4, 8:50 am, Peli [EMAIL PROTECTED] wrote: We've created our Android icons using Inkscape.http://www.inkscape.org/ Have a look at some icons here:http://www.openintents.org/en/ for OI Flashlight, OI

[android-developers] Re: g1 keyboard missing up/down/left/right keys?

2008-10-27 Thread Ed
Hi, I had the same problem with the Lunar Lander application. Someone on this group told me that the D-Pad events are supposed to be handled by the trackball, but this is definitely not happening. Please post if you get a solution. I have been trying to find an applicable code snippet for

[android-developers] Re: g1 keyboard missing up/down/left/right keys?

2008-10-27 Thread Ed
Dear Mark, Thanks for your message. Are you saying that when you install LunarLander on your G1 device, you can steer left and right using the trackball? Because it sure doesn't work for me, or other G1 users in my office. Please try it out and let me know. Thanks, --Ed On Oct 27, 9:59 am

[android-developers] Re: D-Pad on the emulator does not exist on G1

2008-10-25 Thread Ed
.  This of course means very quick down and up dpad events for each trackball movement, so if you are depending on someone holding a button down it won't work. You can watch trackball events yourself with View.onTrackballEvent(). On Oct 24, 1:32 pm, Ed [EMAIL PROTECTED] wrote: Just to clarify

[android-developers] Installed my APK on my G1 via my website, but app does not appear??

2008-10-24 Thread Ed
Thanks in advance to any Android demigods that can help me with this. I wrote a small app, exported it as an APK, and put it on my website so I could install it. It says it installed correctly, but now I can't see the app on my phone. Note the following: 1. The app runs fine on the emulator. 2.

[android-developers] Re: Installed my APK on my G1 via my website, but app does not appear??

2008-10-24 Thread Ed
I apologize for posting this topic, it keeps coming up and the solution is to use the USB debugging method. Please delete. On Oct 24, 9:38 am, Ed [EMAIL PROTECTED] wrote: Thanks in advance to any Android demigods that can help me with this. I wrote a small app, exported it as an APK, and put

[android-developers] Re: ADB via USB

2008-10-23 Thread Ed Burnette
I see the doc has been changed to say Windows (32-bit only). I tried it on a Win32 (XP) machine and it worked fine. Any tips on how to port the driver to Win64? On Oct 22, 4:20 pm, Ed Burnette [EMAIL PROTECTED] wrote: It's not working for me. The device driver won't install, and I get

[android-developers] Re: Market Place and Trial Software?

2008-10-23 Thread Ed Burnette
Google did the developer community a disservice by not allowing for paid apps from day one. A lot of the developer energy on iPhone comes from dreams of riches made in the App Store. If at all possible, please get paid apps in place by this December at the latest. --Ed Hello, Android - now in 7th

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

2008-10-23 Thread Ed Burnette
+1 to a zip file version, perhaps updated nightly or weekly. I know we can use the web interface to look at one file at a time, but it would be nice to be able to read it all from a Windows machine. On Oct 21, 4:59 pm, whitehexagon [EMAIL PROTECTED] wrote: Great news!!  Is it also available as

[android-developers] Re: ADB via USB

2008-10-22 Thread Ed Burnette
It's not working for me. The device driver won't install, and I get this error from Vista64: Description: Windows detected a new device attached to your computer, but could not find the driver software it needs to make the device usable. Each device manufacturer typically includes driver

[android-developers] Re: sqlite3?

2008-09-11 Thread Ed Burnette
didn't turn up one. Thanks, --Ed On Aug 19, 11:09 pm, Megha Joshi [EMAIL PROTECTED] wrote: It seems windows sdk is missing tools/sqlite3 which will be fixed in the next release. For the time being if you use Linux, you will find tools/sqlite3. On Tue, Aug 19, 2008 at 7:31 PM, Brad Larson [EMAIL

[android-developers] Re: WebView loadUrl does not seem to work...

2008-09-05 Thread Ed Burnette
Try the BrowserView example from http://www.pragprog.com/titles/eband/source_code and see if that works for you. If it does, then compare it against what you're doing in your layout file, your manifest, and your Activity class. -- Ed Burnette http://www.pragprog.com/titles/eband/hello-android

[android-developers] Re: New beta book available: Hello, Android

2008-05-03 Thread Ed Burnette
it there. On May 1, 6:11 am, Ed Burnette [EMAIL PROTECTED] wrote: I hope you'll excuse this bit of self-promotion, but after months of work I'm excited to announce that my newbook, Hello, Android: Introducing Google's Mobile Development Platform, is now available as a Beta PDF from the Pragmatic

[android-developers] Re: GTalk sendDataMessage from Server

2008-04-14 Thread Ed
Yup, I figured it out after reading this blog post: http://craigbbaker.com/2008/01/03/android-on-smack/ On Apr 14, 8:42 am, Hielko [EMAIL PROTECTED] wrote: This is certainly possible, you just have to use the proper xml message to the phone. On Mar 13, 7:35 pm, viktor [EMAIL PROTECTED]