Re: [android-developers] Re: Where in code would i resize an image taken using intent?

2015-04-13 Thread Dave Truby
Daniel, In my case, the large image is read from storage resized then saved to storage. Dave Truby On Apr 12, 2015 12:37 AM, "Daniel Chacon" wrote: > So what you are doing is resizing before or after being saved or uploaded? > > On Sat, Apr 11, 2015 at 6:59 AM, Dave Tru

[android-developers] Re: Where in code would i resize an image taken using intent?

2015-04-11 Thread Dave Truby
Dan, I am doing the following in my Over Time app. Maybe it helps you. File aThumbnail = new File(pDir, TbsFile.THUMBNAIL_FILENAME); final float aRatio = (float) pPictureWidth / (float) pPictureHeight; final int aThumbnailWidth = Math.round(pThumbnailHeight * aRatio); final BitmapFactory.Opt

[android-developers] Bluetooth devices connected list - getConnectedDevices()

2014-09-20 Thread Dave Truby
This call is for bluetooth low energy connections. Are you sure you have a low energy device connected? It looks like you are connecting a mouse, I'm not sure that is a low energy device. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] Re: Choreographer regularly skipping frames during OpenGL Render

2014-04-14 Thread Dave Smith
th the GL code. Thanks again, Dave Smith, PE Double Encore, Inc. On Sunday, April 13, 2014 12:51:07 PM UTC-6, Doug wrote: > > Bear in mind that anything could be causing main thread delays. It could > be your code. It could be other threads in your app's process. It could &

[android-developers] Choreographer regularly skipping frames during OpenGL Render

2014-04-11 Thread Dave Smith
Hello all - I am working on an application that is using Choreographer and OpenGL to render flash patterns on the display. Our GL calls are quite simple, simply toggling the display back and forth between white and black using glClearColor() based on the frame time and status of the pattern we

Re: [android-developers] Using ACTION_OPEN_DOCUMENT for editing files

2014-01-30 Thread Dave Smith
eflect ACTION_CREATE_DOCUMENT for editing, or to indicate that using ACTION_OPEN_DOCUMENT should include a branch check on FLAG_SUPPORTS_WRITE to determine if the edit can happen in place, or if ACTION_CREATE_DOCUMENT will need to be used anyway to create a new file for the edit changes. Thanks

[android-developers] Using ACTION_OPEN_DOCUMENT for editing files

2014-01-01 Thread Dave Smith
issed here. As it stands, suggesting that developers use ACTION_OPEN_DOCUMENT for in-place editing doesn't seem like a viable approach. Dave Smith @devuwired -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Re: Deep sleep after 1 hour?

2013-04-23 Thread Dave Shortman
e > server. Where would the alarm be located that you're talking about? > > On Tuesday, April 23, 2013 4:26:11 AM UTC-4, Dave Shortman wrote: >> >> Does the app do anything else other than ping the server? Best way to >> approach this really would be to set an alarm

[android-developers] Re: Deep sleep after 1 hour?

2013-04-23 Thread Dave Shortman
Does the app do anything else other than ping the server? Best way to approach this really would be to set an alarm which fires every 30 seconds, when you receive the alarm take a partial wakelock and fire a service to perform the ping, this service should also take and release a wakelock whils

[android-developers] Re: Cannot get the initial SDK setup working, nightmare

2013-04-22 Thread Dave Truby
Using the AVD tool (inside Eclipse, menu "Window" -> "Android Virtual Device Manager"), create at least one virtual device. See http://developer.android.com/tools/devices/index.html After you have a virtual device created, start it by selecting it in the list (in AVD manager) then click the "St

[android-developers] Re: Error in the "Interacting with other apps" class on developer.android.com

2013-04-22 Thread Dave Truby
In the link you provided I see the Uri.parse() syntax. On Saturday, March 30, 2013 4:09:03 PM UTC-4, Mateusz Matlengiewicz wrote: > > Hi, > > I'm new to Android app developement so forgive me if what I write is > untrue. > I was looking throu the starting classes and in > http://developer.andro

[android-developers] Re: App ran at startup

2013-04-22 Thread Dave Truby
You can have an activity started at boot by doing the following: public class BootReceiver extends BroadcastReceiver { public void onReceive(Context context) { context.startActivity(new Intent(context, SomeActivity.class)); } } On Saturday, March 23, 2013 6:22:44 PM

[android-developers] Re: How to dynamically add new ImageView instances to RelativeLayout?

2013-04-22 Thread Dave Truby
You are setting the id in tiles[i].setId(i); Also, titles[i] does not appear to have any children, so why tiles[i].findViewById() I'm probably not seeing what you are trying to do. On Sunday, March 31, 2013 6:10:00 AM UTC-4, langui...@gmail.com wrote: > > What I am trying to do is create *N*

Re: [android-developers] Efficient Tablet Resource Selection

2012-11-09 Thread Dave Smith
dnesday, November 7, 2012 9:13:10 AM UTC-7, Mark Murphy (a Commons Guy) wrote: > > On Wed, Nov 7, 2012 at 10:38 AM, Dave Smith > > wrote: > > In my mind, the old devices that don't understand the "sw" qualifier > should > > just ignore its existence an

[android-developers] Efficient Tablet Resource Selection

2012-11-07 Thread Dave Smith
I am trying to develop an efficient method of including resource qualifiers to appropriately select the layouts (and other resources really) for handsets, small tablets, and large tablets. To properly support devices on both sides of Android 3.2, when smallest width was introduced, I had hoped

[android-developers] Help with bluetooth printing Please

2012-10-21 Thread dave parker
Can Somebody help please? I think I have tried every app available for bluetooth printing and have pulled all my hair out now ,The problem is. I have installed printer share onto my HTC phone which is running android 2.3.5 and on my Samsung tablet galaxy tab 2 which is running android 4.0.4. and

Re: [android-developers] Re: installation of audio in /mnt/sdcard

2012-09-10 Thread Dave Stikkolorum
ad(buffer)) > 0) { >>> myOutput.write(buffer, 0, length); >>> } >>> >>> // Close the streams >>> myOutput.flush(); >>> myOutput.close(); >>> myInput.close(); >>> buffer = null; >>> >>> &

Re: [android-developers] Re: installation of audio in /mnt/sdcard

2012-09-10 Thread Dave Stikkolorum
= null; > > > > > On Monday, September 10, 2012 5:27:25 AM UTC-4, drstikko wrote: >> >> Ok, but how do I do that? >> Is there a standard scriptname that contains these commands? >> >> Dave >> >> Op zaterdag 8 september 2012 14:30:48 UTC+2 schree

Re: [android-developers] upload photos on web server.

2012-09-07 Thread Vivek Dave
I worked on android, I am not newbie to it. actually, I got the idea but it was not impressive. but i need help for it. or any thing which can help me to sort out the problem. Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

Re: [android-developers] Messenger from Remote Service Causing Memory Leak

2012-08-30 Thread Dave Smith
in my application process. I will take a look at this and the workaround you proposed as well. Thanks again! Dave Smith @devunwired On Thursday, August 30, 2012 4:12:02 PM UTC-6, Dianne Hackborn wrote: > > It is true that sending a messenger across processes will require holding >

[android-developers] Messenger from Remote Service Causing Memory Leak

2012-08-30 Thread Dave Smith
I have an application that communicates with a Service in a remote process using the Messengerinterface. Here is the basic architecture of how things are set up: - The application generates several "Operation" objects that require access to the service. - Each "Operation" contains a

Re: [android-developers] Re: ViewPager and setClipChildren(false)

2012-08-29 Thread Dave Smith
Which is why we will all be eagerly watching the bug that Mark filed in anticipation :) Cheers, Dave Smith @devunwired On Wednesday, August 29, 2012 3:24:50 AM UTC-6, Romain Guy (Google) wrote: > > Note that using software layers comes at a performance and memory cost. > > >

[android-developers] Re: ViewPager and setClipChildren(false)

2012-08-28 Thread Dave Smith
code will still work as expected. I will update the gist example when I have a spare moment with some discussion, and I have starred the issue Mark created (you should do the same). Cheers, Dave Smith @devunwired On Monday, August 27, 2012 2:29:20 AM UTC-6, Thesalan wrote: > > Hi! &g

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-27 Thread Dave Smith
It's too early to tell at this point, but the 10.8.1 update seems to have helped quite a bit. I'm not longer needing to play USB Port roulette in order to get the device to pick up. At least for now. -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-10 Thread Dave Smith
Macbook Pro, and it definitely does. Symptoms are the same regardless of device. On Friday, August 10, 2012 4:02:33 PM UTC-6, bob wrote: > > I have the Galaxy Tab 10.1, and it doesn't give me any trouble. Are you > sure it gives you trouble? > > Also, are you on Macbook Air or Pro? I'm on Pro

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-09 Thread Dave Smith
Galaxy Tab 10.1, Nexus 7, Droid 2, Droid Intercept; I'm fairly confident it's not device/manufacturer specific. Wondering if there's a USB cache I can clear... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-09 Thread Dave Smith
This definitely does help, but only for 1-2 times; then I have to move the port again. This is definitely faster than rebooting the devices, though, so this will be my new go-to workaround. It just feels like there's a bug somewhere in how it picks up connected devices, or how it reads the enu

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-08 Thread Dave Smith
As an addition to this, I have noticed that I can almost always get the devices to detect if I power them down and then back up while still connected to USB. The problem arises trying to get ADB to pick them up if they are connected while alive. -- You received this message because you are su

[android-developers] ADB and Mountain Lion Issues

2012-08-08 Thread Dave Smith
I noticed that, as soon as I upgraded to Mac OS Mountain Lion (10.8) I have been unable to reliably get any of my devices to connect with ADB (Galaxy Nexus, Nexus S, HTC EVO 4G, just to name a few). It can take upwards of 10-15 cable re-plugs, re-starts of the ADB server, and toggling USB Debu

[android-developers] backend for app?

2012-07-14 Thread dave
is there a better backend for apps? i know php and mysql. should i just go with what i know? -- 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 g

Re: [android-developers] Re: Renderscript Deprecated

2012-06-30 Thread Dave Burke
developing Renderscript further especially for applications such as image processing. Dave On Saturday, June 30, 2012 2:45:17 PM UTC-7, Mark Murphy (a Commons Guy) wrote: > > On Sat, Jun 30, 2012 at 5:18 PM, Romain Guy > wrote: > > - Renderscript Graphics has always been hard

[android-developers] Using searchview in ActionBar can't save state between rotation because onCreateOptionsMenu called twice

2012-06-14 Thread Dave Staab
Has anyone seen this behavior in ICS? What's happening is if a fragment is participating in the options menu for an activity both the activity's and fragments onCreateOptionsMenu is being called twice when the phone is rotated but only once when the activity is initially started. (See my linke

[android-developers] Installing PFX file in Andriod device through Phonegap

2012-05-06 Thread rajeev dave
should autometically install PFX file from perticular url by providing password . If it is alreay there then it should continue to login screen screen. Regards Rajeev Dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Re: GridLayout Text Clipping using Support Library

2012-04-12 Thread Dave Rozsnyai
Same here. GridLayout library hasn't been user friendly. The documentation doesn't make any note of the fact that you need to use your own namespace for columnCount if you are targeting 4.0 and now this... I would advise people to use something else unless then really need the grid. On Apr 10, 9:5

[android-developers] Reading files in a background thread

2012-02-05 Thread Dave D
I have a class that reads from an input file fine but when I add it to an Async thread it errors on openFileInput with the method being undefined even though I have imported exactly the same classes Am I not allowed to use this method in the background? code snippet is: public class buildcustomer

[android-developers] AdapterView and Selector functionality

2012-02-01 Thread Dave
How do I get the Selector highlighting functionality in an AdapterView? I cannot do: android:listSelector="@drawable/myadapterview_background" like in a gridview, because android:listSelector is not there. -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Re: Is there a way to change GridView zigzag direction and enforce column or row move?

2012-01-17 Thread Dave
Okay thanks On 17 jan, 13:41, Mark Murphy wrote: > On Tue, Jan 17, 2012 at 7:31 AM, Dave wrote: > >http://developer.android.com/reference/android/widget/GridView.html > > > The default way the elements of the array is put in a GridView is > > zigzagging left-righ

[android-developers] Is there a way to change GridView zigzag direction and enforce column or row move?

2012-01-17 Thread Dave
http://developer.android.com/reference/android/widget/GridView.html The default way the elements of the array is put in a GridView is zigzagging left-right-down. e.g. array {1,2,3,4,5,6,7,8,9,10} becomes by default (with columns fixed to 3) 1,2,3 4,5,6 7,8,9 10 Is there a way to get to zigzag u

[android-developers] Re: How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
I made an enhancement request: http://code.google.com/p/android/issues/detail?id=24178 On 10 jan, 14:42, Dave wrote: > For the apk file the locations are fixed, yes, but technically Eclipse > could freely choose the file and folder locations in the eclipse > project and compile and p

[android-developers] Re: How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
For the apk file the locations are fixed, yes, but technically Eclipse could freely choose the file and folder locations in the eclipse project and compile and package to the right location in the apk file if only the eclipse-adt plugin would support that. It would make the eclipse-adt plugin's edi

[android-developers] Re: [eclipse-adt plugin] How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
So in short my question is: I like to be able to freely choose the location of res and assets folders and AndroidManifest.xml file while the eclipse-adt plugin must still work with that. On 9 jan, 16:07, Dave wrote: > Hello, > it seems that the graphical layout editor of eclipse-adt only r

[android-developers][eclipse-adt plugin] How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
Hello, it seems that the graphical layout editor of eclipse-adt only renders properly if the xml layout file is in the folder \res\layout I am using: Eclipse 3.7.1 maintenance build M20111214-1406 JDK6_30 eclipse-adt plugin ADT 16.0.1 How can I make it work independent of the location of the fold

[android-developers] Re: Access denied error while trying to install new API

2012-01-03 Thread Uday (Dave)
Right click on the sdkmanager.exe file & select the option 'Run as Administrator'. Your problem is solved. -Dave On Dec 30 2011, 11:09 pm, assefa wrote: > Hi, > >  Not sure if this thread is still relevant but if it is, I had the > same issue on windows and I was able

[android-developers] Access denied error while trying to install new API

2011-12-15 Thread Uday (Dave)
droid API 10, revision 2'; it depends on 'SDK Platform Android 2.3.3, API 10, revision 2' which was not installed. Done. Nothing was installed Thanks, Dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] ViewRoot and the repaint process

2011-10-26 Thread Dave Bryson
ropriate spot in the rendering processes where I can grab pixels from the Bitmap for the current View Tree? Thank you, Dave -- 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@googlegroup

[android-developers] What topics to learn in android to accomplish making a voice recorder &image capture app?

2011-08-29 Thread dave
I am starting to learn android framework.But the purpose of learning it is so i can make a mobile app to record voice and capture pictures.The mobile app will be intergrated with a web application,where those captured images and audio files will be uploaded.Question is What topics i need to concetr

[android-developers] problem of using intent to start activity of an add-on package

2011-08-01 Thread dave
ut on this issue. Thanks a lot. dave -- 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: Problem Loading multiple markers on same location

2011-05-30 Thread Akshay Dave
rker place names in one TD where the text hyperlinks to the marker and > opens its infowindow. > > Just like Google Maps does with you use it manually. > > > > On May 30, 2011, at 10:06 PM, Akshay Dave wrote: > >I have found the discussion on the same problem I had... &

[android-developers] Re: Problem Loading multiple markers on same location

2011-05-30 Thread Akshay Dave
share? > > I have the same problem. Multiple people with same lat/lng, only the > "last" person in the Array gets in the InfoWindow for the marker at > that point. > > > > On Feb 22, 4:23 am, Akshay Dave wrote: > > I figured it out...thanks anyways..! > &g

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
Aye, I'm going to try enabling/disabling certain optimisation passes and see if I can isolate the one causing this issue. -dave On May 26, 8:10 am, Zsolt Vasvari wrote: > I've seen problems like this.  There appears to be no discernable > rhyme and reason as to when a VerifyErro

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
Aha, appears to be the optimisation step of ProGuard! -dave On May 26, 8:05 am, Dave Johnston wrote: > I managed to extract a crash log. This crash also happens on the > emulator: > > 05-26 06:57:08.516: ERROR/dalvikvm(339): Could not find method > android.app.Activity.invali

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
): Shutting down VM 05-26 06:57:08.526: WARN/dalvikvm(339): threadid=3: thread exiting with uncaught exception (group=0x4001aa28) Only appears to occur in release builds. Any ideas? -dave On May 17, 7:44 am, Dave Johnston wrote: > A user of mine is encountering a crash every time they start

[android-developers] Re: Fragments duplicated on config change

2011-05-22 Thread Dave Johnston
re be only a single call to onStart()? -dave On May 22, 5:43 pm, Dave Johnston wrote: > I'm encountering a peculiar issue with the user of FragmentActivity. > > In my test app, my FragmentActivity's onCreate method calls > setContentView, which inflates a simple layout c

[android-developers] Fragments duplicated on config change

2011-05-22 Thread Dave Johnston
I'm encountering a peculiar issue with the user of FragmentActivity. In my test app, my FragmentActivity's onCreate method calls setContentView, which inflates a simple layout consisting of a single Fragment. However, I'm finding that when the device is rotated, this process causes additional Fra

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-18 Thread Dave Johnston
On May 18, 11:56 am, Mark Murphy wrote: > On Wed, May 18, 2011 at 5:03 AM, Dave Johnston wrote: > > Unfortunately, all automated crash reports are anonymous so that's all > > I've got! > Hmmm... you might see if a third-party crash logger like ACRA has more > sm

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-18 Thread Dave Johnston
On May 17, 10:02 pm, fadden wrote: > On May 16, 11:44 pm, Dave Johnston wrote: > > java.lang.VerifyError: android.support.v4.app.FragmentManagerImpl > > at android.support.v4.app.FragmentActivity.(SourceFile:87) > > (...) > > The exception message is a bit lacking.

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-17 Thread Dave Johnston
Aye I couldn't see anything odd either, glad I was on the right track! I'm trying to contact the user involved in the hoping of extracting more information and determine the root cause. Hopefully there's at least a simple workaround. -dave On May 17, 11:31 am, Mark Murphy wrot

[android-developers] v4 Fragments library VerifyError crash

2011-05-16 Thread Dave Johnston
understand the Fragments compatibility library supports Android 1.6, and that VerifyError exceptions typically occur on outdated or unsupported systems, so would this error suggest the U20i isn't entirely compatible? Regards, Dave -- You received this message because you are subscribed to the G

[android-developers] Re: Using setArguments() after inflation

2011-04-27 Thread Dave Johnston
Cheers Mark and Dianne. Sounds like setArguments is analogous to XML attributes, whereas I had been using them similarly to Intent data, which now seems so very wrong... -dave On Apr 27, 2:56 pm, Dianne Hackborn wrote: > You use arguments when you are creating it in code, and XML attribu

[android-developers] Using setArguments() after inflation

2011-04-27 Thread Dave Johnston
te and add Fragments via code, rather than use fragment inflation from an XML layout? -dave -- 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 th

[android-developers] Re: DialogFragment vs showDialog()

2011-04-25 Thread Dave Johnston
Cheers Dianne, exactly what I wanted to hear! On Apr 25, 5:52 pm, Dianne Hackborn wrote: > Consider showDialog() / managed dialogs to be deprecated. > On Apr 25, 2011 12:30 PM, "Dave Johnston" wrote: > > > > > > > > > Honeycomb introduced the DialogFr

[android-developers] DialogFragment vs showDialog()

2011-04-25 Thread Dave Johnston
they simply be treated as an alternative? -dave -- 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] getting gps status events

2011-04-21 Thread Dave Cramer
Thanks guys Dave On Thu, Apr 21, 2011 at 4:10 PM, Igor Prilepov wrote: > You can request status update without location updates but the GPS status > will be changed only if some other application did it. > Therefore listening for the status updates without location notifications >

[android-developers] getting gps status events

2011-04-21 Thread Dave Cramer
Do you have to request location updates before gps status events will be sent? I added a listener for gps status events, but it never gets called. Dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, sen

[android-developers] Re: Using v4 Fragments with v11 ActionBar tabs

2011-04-19 Thread Dave Johnston
ark! Looks like exactly what I need to do. -dave -- 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 an

[android-developers] Re: Using v4 Fragments with v11 ActionBar tabs

2011-04-19 Thread Dave Johnston
On Apr 19, 4:19 pm, Chris Stewart wrote: > As far as I know, you can't use the ActionBar pre-Honeycomb anyway.  So you > wouldn't have a scenario in which you'd be able to use the ActionBar unless > you're targeting Honeycomb. I'm targeting Honeycomb but retaining backwards compatibility with old

[android-developers] Using v4 Fragments with v11 ActionBar tabs

2011-04-19 Thread Dave Johnston
can't use my Fragments with the ActionBar on 3.0-and-later devices. Anyone have any ideas how I can solve or work around this? (besides just not using tabs) -dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Implementing SOAP request in Android

2011-04-10 Thread Akshay Dave
Hello, I was wondering on how to implement SOAP call in Android without using KSOAP2. Apperantly the webservice I need to call requires custom XML SOAP request that KSOAP2 is not able to make. I would appreciate if any one can suggest any link or details related to it. Thanks Akshay -- You

[android-developers] Re: Update app inside system space (/system/app/) via Market Place

2011-04-06 Thread Dave
We are seeing the same problem.Is there a way for OEM's to preload 3rd party applications and have the Android Market Application list these applications in "My Apps" and automatically notify the user when there are updates to those apps? Does the Market Application have special handling for G

Re: [android-developers] Important: XmlPullParserException while accessing SOAP webservice

2011-04-04 Thread Akshay Dave
it on this group to see anyone has come across same behavior Hope that helps . Let me know if you need further info. Akshay On Sat, Apr 2, 2011 at 1:44 AM, TreKing wrote: > On Thu, Mar 31, 2011 at 10:02 PM, Akshay Dave wrote: > >> I am trying to access webservice using KSOA

[android-developers] Important: XmlPullParserException while accessing SOAP webservice

2011-04-01 Thread Akshay Dave
Hello, I am trying to access webservice using KSOAP 2 ... I am having problem with accessing webservice...Below are my parameters private static final String SOAP_ACTION = " http://schemas.kickapps.com/services/soap/signInRegisterUser";; private static final String METHOD_NAME= "signInRegister

[android-developers] Important: XmlPullParserException while accessing SOAP webservice in Android

2011-04-01 Thread Akshay Dave
Hello, I am trying to access webservice using KSOAP 2 ... I am having problem with accessing webservice...Below are my parameters private static final String SOAP_ACTION = " http://schemas.kickapps.com/services/soap/signInRegisterUser";; private static final String METHOD_NAME= "signInRegister

[android-developers] More DropDown Menu Image

2011-03-19 Thread Dave
o replace that image? - dave -- 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: ADT 10 lost "clipping" toggle in the visual layout editor?

2011-03-18 Thread Dave
Same here, the "clipping" function is essential for showing any hidden portion of the scrollView, but now everything is hidden behind the clipped scrollView and it impossible to edit the widgets in the layout editor in graphical layout tab. Any alternative for this? beside using the xml editor. Th

[android-developers] Need help with tabbed layout

2011-02-24 Thread Dave Williams
I'm new to Android development so please bear with me. I have created an app in WebOS and I'm keen to try and re-create for the Android platform. I have tried to follow the tutorial for creating a tabbed view and to some extent I have succeeded. However, the problem that I am having is that when

[android-developers] Tabbed View

2011-02-23 Thread Dave Williams
I'm new to Android development so please bear with me. I have created an app in WebOS and I'm keen to try and re-create for the Android platform. I have tried to follow the tutorial for creating a tabbed view and to some extent I have succeeded. However, the problem that I am having is that when

[android-developers] Re: 3.0 Preview SDK won't install

2011-01-29 Thread dave
Hi Darren, I had the same issue when I tried to download it with SDK/AVD Manager. Did you solve it ? dave On Jan 29, 2:54 pm, Darren Hinderer wrote: > When I try to install the Honeycomb preview using the SDK & AVD > Manager, I get this error: > > File not > found:https:

[android-developers] Re: Handling touch events for dragging content when changing the orientation of the screen

2011-01-26 Thread Dave Bryson
Thanks for the response! No, my code is not rotating the drag direction. I'm primary rotating the canvas the map is drawn on. I'm not sure *how* to rotate the axes used by the touch event. Any pointers on how to do this would be greatly appreciated! Thanks again, Dave On Jan 2

[android-developers] Handling touch events for dragging content when changing the orientation of the screen

2011-01-25 Thread Dave Bryson
I have a map application using an in-house map engine on Android. I'm working on a rotating Map view that rotates the map based on the phone's orientation using the Sensor Service. All works fine with the exception of dragging the map when the phone is pointing other than North. For example, if the

[android-developers] Question of using ksoap for android to call webservices

2011-01-06 Thread Dave Shen
I am trying to develop an android application using our webservice. Here is the code: private String SOAP_ACTION= "http://.../TestFunction";; private String METHOD_NAME = "TestFunction"; private String NAMESPACE = "http://.../";; private String URL = "http://.../we

Re: [android-developers] Automatically fetch another app from market

2010-12-28 Thread Dave
Is it complicated to add this "market intent". I had the app made with a wysiwyg editor so I haven't developed the code myself. I'd like to add the code to fetch my other app from the market - if they have to physically accept the installation then I'll have to live with that. Any guidance on the c

[android-developers] Re: guitar tuner

2010-11-17 Thread Dave
o but are you aware > there is an app that does guitar tuning already on the market? > > On Oct 18, 2:30 am, Dave wrote: > > > > > > > > > I am looking for some help.  I'm new to android, and java > > developement.  I've got a pretty good handle

[android-developers] guitar tuner

2010-10-21 Thread Dave
is alot to write, I'm aware, but my first step is to try to figure out HOW to get the frequency, and display it in the UI. any help would be wonderful. Thanks. Dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] ioctl shell command in system bin

2010-09-16 Thread Dave
Has anyone had any success in using the ioctl that is included in system/bin ? I would like to query some device drivers and any example would be appreciated. $ ioctl -h ioctl -h ioctl [-l ] [-a ] [-rdh] -lLength of io buffer -a Size of each argument (1-8) -rOpen device

[android-developers] Touchscreen Events

2010-09-16 Thread Dave
I am working on an application to provide automated tested of Android devices. On the HTC Incredible following the update from 2.1 to 2.2. I have noticed a change in the events of the touchscreen. When you monitor the events during a touch you no longer see the normal MT type events This is the re

[android-developers] AlertDialog with customized ListView

2010-09-09 Thread dave
not want to show it. Thanks a lot. dave -- 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-developer

[android-developers] suspend layout method in Android

2010-08-31 Thread dave
, or other ways to do it ? Thank you very much. Dave -- 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] Is there any way to resizing the icon in option menu item ?

2010-08-23 Thread dave
Hello everyone, I would like to resize the icon for the option menu item. Is there any way to do it ? Thanks a lot. dave -- 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] vertical scrollbar comes cross other items in the layout

2010-08-20 Thread dave
solve this issue ? Thanks a lot. dave -- 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-developer

[android-developers] Re: How to check if vertical scroll bar is shown ?

2010-08-20 Thread dave
Got it. Actually the api call of getVerticalScrollbarWidth() would be telling if there is vertical scrollbar or not: if the returned value is 0: no vertical scrollbar; otherwise, there is vertical scrollbar, the returned value is its width. Cheers. On Aug 20, 4:14 pm, dave wrote: > Hi

[android-developers] How to check if vertical scroll bar is shown ?

2010-08-20 Thread dave
Hi all, I want to check if the vertical scrollbar is shown or not. I read the document and could not figure it out. Is there anyway to do it ? Thank you very much. Dave -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Re: page up and page down of TextView inside of ScrollView

2010-08-20 Thread dave
Issue is solved. First: get the view from the flipperPanel, Then: get the scrollerView For page down button event: scrollView.pageScroll(ScrollView.FOCUS_DOWN) scrollView.computeScroll(); Similar for page up button event. dave On Aug 17, 7:18 pm, dave wrote: > Hi, > > I have a S

[android-developers] Re: Simple question on saving to a file on sd card (android-beginners isn't working)

2010-08-18 Thread Dave Germiquet
Hi, Is there not a easy function that I can use to open a File Browser window? So the steps would be: 1. Open a file browser window to select location/file to save? 2. Inside use java code to save the file. Is it not that easy? On Tue, Aug 17, 2010 at 7:32 PM, Dave Germiquet wrote: > So

[android-developers] Simple question on saving to a file on sd card (android-beginners isn't working)

2010-08-18 Thread Dave Germiquet
ing of the file structure 2. the user can then choose where to save the file 3. then i want to save the file there Can anyone offer me simple code for step 1,2,3 that I can use? Thanks in advance. Dave Germiquet -- You received this message because you are subscribed to the Google Groups "Andro

[android-developers] Best Android Game Engine?

2010-08-18 Thread Dave Hulihan
Hi guys, I'm just starting into Android game development, and I'm looking into using an open-source game engine as the foundation of some of my ideas. Does anyone have any favorites? So far, AndEngine looks the most promising...I've also looked at Rokon. Any other notable engines I should be lookin

[android-developers] page up and page down of TextView inside of ScrollView

2010-08-17 Thread dave
Hi, I have a ScrollView, inside of it there is a TextView, and there are two buttons for PageUp and PageDown in the other part of the layout. When I click on PageDown, I want to see the text in the TextView to scroll down one page. How could I do it ? Thanks. dave -- You received this message

[android-developers] getApplication().openOrCreateDatabase causes method undefined error

2010-08-16 Thread dave
ok so heres what i got in there try { SQLiteDatabase db4 = getApplication().openOrCreateDatabase("psalmsdb",0,null); db4.execSQL("CREATE TABLE IF NOT EXISTS psalms " + "(_id INTEGER PRIMARY KEY, ps INTEGER, body TEXT, istitle TEXT)");

[android-developers] Re: adding audio to a game - triggerClip for SFX

2010-07-30 Thread Dave Sparks
triggerClip() was designed to play synchronized sound effects for musical games like JetBoy. If you just want to play random sound effects, I would use SoundPool instead. On Jul 30, 5:53 am, kk wrote: > Hi all, > > I'm using JetPlayer in order to add some audio to a game I'm > developing. > Usin

[android-developers] Re: RTSP Example

2010-07-30 Thread Dave Sparks
That sounds like a problem with Hero. The compositor is supposed to scale the video to fit the surface view. On Jul 18, 6:41 am, Anthoni wrote: > Hi Dave, > > Thanks, found that it partially works, but for some reason I think the > videos are scaled wrong. On my hero I can only see

[android-developers] How AJAX requests work on Android 2.0/2.1 vs. Android 2.2

2010-07-26 Thread Dave Morris
request, recieves the 401 challenge, and then does not make the second request with the proper auth header. Has anyone experienced this behavior before? It is basically causing my app to not work at all in version 2.0. Version 2.1 seems to act the same as 2.0. Let me know if you have any ideas, thanks for

  1   2   3   4   5   6   >