[android-developers] Re: Animations in the list view

2013-01-15 Thread Spiral123
nge the child view height back as getView changed its > height back to original.Animation was not that smooth as its in the > youtube video. > > If i misunderstood your stpes ,and if possible ,could u please create a > demo project and send it to me to yourans...@gmail.com.I ll be grateful to

[android-developers] Re: Animations in the list view

2013-01-14 Thread Spiral123
I think this is not very different to a question we had a couple of weeks ago. This is what I would do: - I would not use 2 ListViews. I would leave the original ListView underneath and dynamically create a new View that was a single RowView and put that on top and slide it around. - I would

[android-developers] Re: Maps API v2 and WRITE_EXTERNAL_STORAGE permission

2013-01-08 Thread Spiral123
Personally I would not recommend leaving out the permission and hoping that things work now and in the future. If there is functionality that your client requires from the Maps V2 API then I would recommend to them that they suck it up and include the permission - or at least that they take the

[android-developers] Re: Order latitude/longitude list by distance to my current location

2012-12-31 Thread Spiral123
If you mean straight line distance and if the locations are reasonably close and/or reasonably well distributed then just do a straightforward trig calculation. If you want more accuracy use a great circle distance calculation (just Google it). Assuming you just need a ranking rather than acc

[android-developers] Re: android drag and drop gridview ordering using OnDragListener

2012-12-19 Thread Spiral123
Hi Frank I'm not sure I fully understand what effect you are trying to achieve withe drag and drop on a gridview (do you have an example to look at by any chance?). I may have done something similar with a custom listview though. To do drag and drop on my custom listview I don't make a spa

Re: [android-developers] Oauth2 'Signing In' screen

2012-12-17 Thread Spiral123
going forwards. I guess this also means they will get used to the black 'Signing in...' screen as well: it just looks odd when it suddenly pops up and then vanishes. Nick On Monday, December 17, 2012 12:36:47 AM UTC-5, Greg Donald wrote: > > On Sun, Dec 16, 2012 at 10:43 PM,

[android-developers] Oauth2 'Signing In' screen

2012-12-16 Thread Spiral123
Hi all I'm just in the process of upgrading my apps to use Oauth2 and Google Play services. All seems to be going well except that after authorizing my app Google Play services swaps from the nice white confirmation screen to a full black screen saying 'Signing in... This can take a few

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-04 Thread Spiral123
I don't think its as trivial as you suspect I'm afraid. The API is new, not just an upgrade of the old one. We now have markers, polylines and polygons and overlays have become TileOverlays. I'm sure there are going to be ways to minimize the migration effort from old to new but I don't thi

[android-developers] Re: Google Maps Api Sign Up

2012-12-01 Thread Spiral123
I'm guessing that you are trying to open the native Android Google Maps app with a web url and hoping that the native app is going to fetch down your custom map and display it locally. There is no intent that I am aware of that does that PREMIUM or not. I think you need to create an intent th

[android-developers] Re: Is it possible to add two master-details fragments in a Single Activity

2012-11-16 Thread Spiral123
you can have as many fragments as you want associated with an activity. They don't have to have a UI either. Just be careful how you add/remove/replace them or your back key navigation could get messed up pretty quick. I assume that you don't want the two master/detail fragment sets to be dis

[android-developers] Re: Most Efficient Way to Insert 5000+ Contacts

2012-11-15 Thread Spiral123
Don't do it in Android. Use your WebService to sync the desktop application contacts to a Google contact list using the Contacts API v3 (https://developers.google.com/google-apps/contacts/v3/). You can add a specific label to tag them to your application and even extend the tables if you wish

[android-developers] Geocoder and Geocode Web Service availability/performance issues

2012-10-27 Thread Spiral123
Hi there... I have a reasonably successful Android app that is heavily geo biased. Within the app I use both the Geocoder class (getFromLocationName()) and also Maps API v3 geocoding search and the Maps API Geocode web service. The reason I use both is because every couple of months the Androi

Re: [android-developers] Re: Menu icon contrast

2012-10-01 Thread Spiral123
ok but be careful. some manufacturers have skinned the same version of Android with opposite menu background colors. from memory i would compare Samsung and HTC on 2.3. On Monday, October 1, 2012 7:55:01 AM UTC-4, andrewg_oz wrote: > > OK. Thanks for the various suggestions. I'll think about th

Re: [android-developers] Re: Menu icon contrast

2012-09-30 Thread Spiral123
there is no good solution pre 3.0you are at the mercy of whatever useless skinning the manufacturer did to any particular handset. I suspect it's the main reason Google introduced holo light and holo dark with the insistence that the basics of these themes are not messed with. whilst that

Re: [android-developers] How to READ the option menu text color

2012-08-06 Thread Spiral123
wrote: > > > > 2012/8/3 Spiral123 > >> OK...my second attempt to find the device value of >> textColorPrimaryDisableOnly: >> >> [snip] > > >> My attempt at reflection didn't seem to work either: >>> >>>

Re: [android-developers] How to READ the option menu text color

2012-08-03 Thread Spiral123
nd the approach is too wacky for comfort anyway. Anyone have any other ideas for reading the value of textColorPrimaryDisableOnly? On Thursday, August 2, 2012 7:29:59 PM UTC-4, Kostya Vasilyev wrote: > > > 03.08.2012 3:00 пользователь "Spiral123" написал: > > > > Thanks Kostya

Re: [android-developers] How to READ the option menu text color

2012-08-02 Thread Spiral123
wable/menu_background_fill_parent_width > > ... and so it makes sense that this attribute has the same value (as > above) in the legacy and both Holo themes (I've got 4.1.1 sources open > right now). > > -- K > > 2012/8/3 Spiral123 > >> Hi all... >>

[android-developers] How to READ the option menu text color

2012-08-02 Thread Spiral123
Hi all... Scratching my head here, need some help. I'm trying to read the option menu text color for the running device. I'm not interested in trying to override the system menu behavior or anything funky, my theory is that if I know what color the text is (or the menu item background) then I

[android-developers] Regarding Application is not installed alert

2012-07-27 Thread Spiral123
What is 'plz'? Is it some sort of insult? I'm thinking of doing something similar. I haven't researched it yet but my planned approach is to do something in the child app to check the calling intent rather than your approach. -- You received this message because you are subscribed to the G

[android-developers] Re: manage caching MapView. Is it violation of Terms?

2012-07-24 Thread Spiral123
as a rule of thumb: if you have to ask if it's legal, it probably isn't. I'd recommend you look into OSM. Here is a link to get you started: http://wiki.openstreetmap.org/wiki/Tile_usage_policy On Monday, July 23, 2012 7:58:12 AM UTC-4, Capitan wrote: > > Developing Android application with G

Re: [android-developers] Are my Apps now in the USA Google Play? I have my doubts.

2012-07-24 Thread Spiral123
yes Justin... All three of your apps are visible in the US. I wouldn't be surprised if they had been automatically downloaded so don't expect many support questions. On Monday, July 23, 2012 3:08:55 PM UTC-4, John Mollaghan wrote: > > > Hi Justin, > > Thanks for your reply. I take your points

Re: [android-developers] Upload files to Google Drive

2012-05-17 Thread Spiral123
Has anyone seen any evidence of an Android API for Google Drive yet? As I remember from reading the developer info when it first became available you can only use the SDK for apps registered in the Chrome store. Nick On Thursday, May 17, 2012 11:52:52 AM UTC-4, MagouyaWare wrote: > > https://d

Re: [android-developers] Re: ICS don't give you a real multitasking.

2012-05-16 Thread Spiral123
sblantipodi is either a troll, a terminal whiner or both. consider some of his finest threads from the last 12 months or so: - Google lost vs Oracle. - Android isn't able to manage a PDF, this is bad. - Image CoverFlow not working fine with Android 4.0 - Hardware accleration slow down

[android-developers] Re: Fragment problems (converting an app)

2012-04-28 Thread Spiral123
Hi Bas, I didn't debug your code, but just as an ideawhy not put your dialog in a separate activity themed as a dialog that just extends a regular activity or listactivity? I do that all the time in my app. just because you are working with fragments doesn't mean that everything needs to

[android-developers] Re: Android writing to file and Upload it to server

2012-04-26 Thread Spiral123
I think the correct spelling is plz. On Friday, April 27, 2012 1:02:18 AM UTC-4, android developer wrote: > > Hi Good morning all. > > Android writing to file and Upload it to server , pls help me on this > issue. > > Thanks and regards > > -- You received this message because you are subscribe

[android-developers] Re: getAuthToken not working is ICS

2012-03-20 Thread Spiral123
Works fine for me on 4.0.3. I'm using APi Level 13 (not because of problems with oAuth). On Mar 20, 11:12 pm, "he.cao" wrote: > hi all > >     My app use account manager to share auth token and it works fine in > early 4.0. >     But when i try the app in my Nexus S (4.0.3) , NPE occurs every ti

[android-developers] Re: Please can i have source codes for tictactoe game for android?

2012-03-19 Thread Spiral123
try doing a Google search for 'ContactsContract' examples and you should find more recent tutorials that will help you. On Mar 18, 3:07 am, akhil raval wrote: > dear friend > > i want to fetch ma contact inbox with name and number as simple as possible > it's urgent i m going threw below code bu

[android-developers] Re: Help me on selecting a name to a game..

2012-03-09 Thread Spiral123
Whale Wars On Mar 6, 9:01 pm, Fred wrote: > Hi Everybody, > > I'm developing a android game and i'm urgently needing to define a > name to this game.. can you help on choosing the name? > > If you have 1 minute to check it up, please just choose the wanted > names here: > > https://docs.google.c

[android-developers] Re: How many people are using ActionBarSherlock?

2012-03-06 Thread Spiral123
I use it. It's great - thanks Jake. Nick On Mar 6, 11:40 am, Jake Wharton wrote: > From my estimation there are *at least* 100-250 small applications > published to Market that are using it. Of course, I only know about the > ones people tell me about and can estimate from things like the activ

[android-developers] Re: Request for Ideas: how to handle a major upgrade to my App

2012-02-28 Thread Spiral123
Interesting, hadn't thought of in-app purchases. That may work as well because I currently have a Free version of the app and two separate Paid versions (all build from the same codebase though). Having an In-App purchase would be neat. There is a downside though: the paid version of my app is v

[android-developers] Re: Request for Ideas: how to handle a major upgrade to my App

2012-02-28 Thread Spiral123
> ...Wait a week or a month, or whatever, then drop the bomb. > They can't say you didn't warn them. The old 'tough love' approach. Not a bad idea, and if I'd only had the sense to build a decent customer communications method into my app like you did it could have been feasible. -- You receive

[android-developers] Request for Ideas: how to handle a major upgrade to my App

2012-02-27 Thread Spiral123
Hi All... I'm working on v2 of my app. Although the basic operation of the app is the same, it is very different in terms of appearance and UI interaction (much better - I think!). I've got a couple of thousand users who rely on the app on a daily basis as a key part of their jobs and I'd like t

[android-developers] Re: Waypoints with Google Maps API

2012-01-30 Thread Spiral123
study the MyTracks source. On Jan 29, 3:29 pm, alexslx wrote: > Hi folks, > > I'm searching in the web how to trace route with multiple waypoints, > but i just found how to do it using Google Maps API for web > (javascript). I also looked for gmaps android api, but didn't found > nothing. > > I w

[android-developers] Re: How to identify on which marker user had taped

2012-01-26 Thread Spiral123
Google 'Android MapView Balloons' On Jan 26, 2:37 am, ripal hiral wrote: > I want that on taping particular marker I want to show Balloon Like in > Google map we have > When User tap on Particular marker Balloon containing Info related to > that Geo point is display .. > > I am new in Android can

[android-developers] Re: ClassCastException Problem with custom ListView in a ListFragment

2012-01-17 Thread Spiral123
wow. creating the View in the OnCreateView() before using it - how smart is that? works great Mark, thanks! Nick On Jan 17, 12:42 pm, Mark Murphy wrote: > On Tue, Jan 17, 2012 at 12:31 PM, Spiral123 wrote: > > You can easily see the behavior with native fragments if yo

[android-developers] Re: ClassCastException Problem with custom ListView in a ListFragment

2012-01-17 Thread Spiral123
>> ClassCastException } @Override public void onListItemClick(ListView l, View v, int position, long id) { Log.i("FragmentList", "Item clicked: " + id); } } Nick On Jan 17, 12:10 pm, Mark Murphy wrote: > On Tue, Jan 17, 2012 at 12:03 PM, Spi

[android-developers] ClassCastException Problem with custom ListView in a ListFragment

2012-01-17 Thread Spiral123
Hi All... as part of updating my app I've decided to drag it into the 21st century and implement Drag and Drop on my ListView Fragment. Noodling around for an easy way to do it I came across Mark Murphy's super handy TouchListView library as adapted from TouchInterceptor from the stock Music app.

[android-developers] Re: Raster Image/Map and GPS location

2012-01-16 Thread Spiral123
Search for OSM. On Jan 14, 7:47 am, "Rustam K." wrote: > Hello, > > I am new to maps and geo apps, and need some guidance please. I need > to get a location and put the marker on the PNG image. I don't need > zoom or anything like that. Do I need to create a table/list like > "pixel on image->gp

[android-developers] Re: gps waiting problem.

2012-01-13 Thread Spiral123
t, > > onlocationchange should mot call.right? > > > bt it call. > > > inturn,getaddress is calling for few time. > > > I dnt want to call after having address from lat-long. > > > What to do? > > On Jan 13, 2012 10:17 PM, "Spiral123" wrote:

[android-developers] Re: gps waiting problem.

2012-01-13 Thread Spiral123
that is not a snippet. > > Problem is : > > 1. UpdateRemove doesn't work. > I can't see any reference to 'UpdateRemove' in your code. what is the error in the LogCat and what line of code does it happen at? > 2. I need to do following thing : >         -> Get Address Once (By calling getaddre

[android-developers] Re: gps waiting problem.

2012-01-13 Thread Spiral123
1. Appreciate that English is probably not your first language, but plz dnt mk it evn hrdr fr ppl to read you posts by contracting words. 2. Good that you have the whole code already. If you are having a problem with it can you post a section of the LogCat where it falls over or a (small) snippet

[android-developers] Re: How can i add pin google maps one more time?

2012-01-06 Thread Spiral123
put some breakpoints in your code and then run it in debug mode to ensure that: - your listener is getting called every time the map is touched (it probably is) - you are building the overlay correctly after each touch (possibly not) - you do an invalidate() or postInvalidate() on the mapView at t

[android-developers] Re: ICS and getAuthToken() problem - using Google APIs

2012-01-03 Thread Spiral123
othing unexpected happens (other > than a crap load of strictmode exceptions). > > HTH. > > On Jan 2, 8:09 pm, Spiral123 wrote: > > > > > > > > > it gets stranger. > > > In Honeycomb and earlier the app fires off the getAuthToken() request > > on

[android-developers] Re: ICS and getAuthToken() problem - using Google APIs

2012-01-02 Thread Spiral123
previous versions of Android...any comments or experiences from anyone else? Also, I suppose I now need to look at SingleThreadExecutor to block unwanted additional auth requests being generated from the activity. Does anyone have any better ideas? all the best, Nick On Jan 2, 11:16 am, Spiral123

[android-developers] ICS and getAuthToken() problem - using Google APIs

2012-01-02 Thread Spiral123
Hi all Just got my new Galaxy Nexus phone with ICS before New Years and have been playing around with the old and new (in development) versions of my app on it. Whilst doing so, I've come across a problem that has me stumped: if I call getAuthToken() in my app to authenticate a new account to

[android-developers] Re: How can i implement Feature Like “Precache Map Area” as like Google Map

2011-12-13 Thread Spiral123
13, 3:23 am, Saurabh Patel wrote: > Ya Sprial > > Thanks For Reply But Please Tell me Once Again i have to Report R&D On this > Part to ahead. so please Be Need Full here. > > On 13 December 2011 11:32, Spiral123 wrote: > > > > > > > > > we have alr

[android-developers] Re: How can i implement Feature Like “Precache Map Area” as like Google Map

2011-12-12 Thread Spiral123
we have already answered this question in your other thread. On Dec 13, 12:22 am, Saurabh Patel wrote: > Can I Implement Feature Like `"Cache Google Map Tile" or "Precache Map > Area"` which is in Google Maps? > > In Latest Google Maps Update, There is a option like `"Precache Map Area"` > So i w

[android-developers] Re: How can I cache Google Maps tiles using Android SDK?

2011-12-12 Thread Spiral123
actually no it wasn't the way I was thinking of. On Dec 13, 12:40 am, Kristopher Micinski wrote: > > Although it is technically possible you should not save google map > > tiles to cache and use for the future.  It is explicitly forbidden by > > Google - and they own/license the data. > > But if

[android-developers] Re: How can I cache Google Maps tiles using Android SDK?

2011-12-12 Thread Spiral123
offline mode, means i want to get Map from > Cache Map Tile when GPRS or Wifi is not there. > > So can i save this google map tile to cache and use in future.?? > > Please Suggest me the way so if possible than i will proceed for next. > > Thanks > > Saurabh Patel > >

[android-developers] Re: How can I cache Google Maps tiles using Android SDK?

2011-12-12 Thread Spiral123
map in Offline mode. > > Its Good Way? > > Thanks > > Saurabh Patel > > On 11 December 2011 10:54, Spiral123 wrote: > > > > > > > > > If you are talking about the offline storage of Google Map tiles in > > your own app then I can think of a p

[android-developers] Re: How can I cache Google Maps tiles using Android SDK?

2011-12-10 Thread Spiral123
If you are talking about the offline storage of Google Map tiles in your own app then I can think of a possible approach - but I wouldn't even bother. It's not a service that Google provide and their data is copyrighted. Just think about how many tiles you will have to pull down for all the zoom

[android-developers] Re: Using google map api key for production

2011-12-09 Thread Spiral123
If the company paid for a google maps key then just contact your account manager at google and ask them. On Dec 7, 3:39 am, sandy wrote: > Hi, > I have to develop an application which uses google maps. My company > wants to deploy that application in its device. Do i need to have > separate lice

[android-developers] Re: list actvity is scrolling

2011-12-03 Thread Spiral123
Scrolling is an integral feature of list activity. is there a specific reason why your list should not scroll? maybe we can suggest an alternative approach. On Dec 3, 5:03 am, jaggu wrote: > Hi > i used list actvity in my code but the list is scrolling . > in my list shouldnt be scroll can any

[android-developers] Re: How to find alternate routes for navigation and how to tell when user goes off path

2011-11-29 Thread Spiral123
well 2. is just geometry and math. Assuming that your http requests results in some kml that includes a polyline then personally I would build an array containing each line and then just work out the closest distance to each one from my current location every x seconds or y feet travelled. I

[android-developers] Reverse Geocode on the fritz (again)

2011-11-29 Thread Spiral123
Hi all It looks like issue 8816 "service not available" (http:// code.google.com/p/android/issues/detail?id=8816) has raised its ugly head again with the release of Google Maps 6 today. I'm running the same piece of Reverse Geocode code on Asus Transformer (3.2.1) and HTC Incredible (2.3.4) i

[android-developers] Re: Urgent Help required

2011-11-11 Thread Spiral123
use the Facebook android SDK instead plz. Thanks in advance. On Nov 11, 11:27 am, chowdary nani wrote: > Please how to integrate face book in android.I am trying to do it > using fbconnection/api.jar but i am facing problem in loading the jar -- You received this message because you are subscr

[android-developers] Re: Customize Android Source Code to run multiple Application on same Screen.

2011-11-07 Thread Spiral123
just to be sure that everyone is on the same page here when you say "run multiple Application on the same screen", what do you mean? can you give an example of what you are trying to achieve please. On Nov 7, 1:48 am, Pawan Singh Rathore wrote: > Hi All, > > I need to customize Android S

[android-developers] Re: plz help...!!!

2011-09-22 Thread Spiral123
Easy. sevice.stop(plz); On Sep 22, 1:24 pm, Divyata Panchal wrote: > Hie.. to al Android Developers... > > please tell me how to stop service in one class which is already > started in other class. > i need to start and stop service again n again according to my > conditions.. pl give p

[android-developers] Re: Block the upgrade

2011-09-21 Thread Spiral123
I suspect the OP is concerned that someone may obtain a pirated copy of his app and then subsequently upgrade it from the Android market without ever paying for it. On Sep 21, 3:42 pm, Michael Banzon wrote: > On Wed, Sep 21, 2011 at 9:34 PM, Chris wrote: > > > On Wednesday, September 21, 2011 1:

[android-developers] Re: listview: multipe actions per row dilemma

2011-09-17 Thread Spiral123
I think you want a context menu that responds to a long click on a list item. Have a look at the Android Notepad example: http://developer.android.com/resources/tutorials/notepad/notepad-ex2.html On Sep 17, 4:28 pm, John Goche wrote: > Hello, > > Hello, > > I have a ListView with several rows. I

[android-developers] Re: Convert map cordinates to the location name

2011-08-10 Thread Spiral123
more specifically, Google for 'reverse geocoding' On Aug 9, 3:05 am, Ratheesh Valamchuzhy wrote: > Hi All > >   i am developing an app related to location based services in android >   in my app  I get a cordiante value (Longitude, lattitude) as some double > numbers such as -132.535676464655 and

[android-developers] Re: Payout much smaller than expected

2011-08-10 Thread Spiral123
Thanks for pointing this out, I see the same thing, going back to at least May 25th (the earliest I have checked). I've filed a query with the checkout team. On Aug 10, 3:20 pm, Gregg Reno wrote: > Are there still problems with Google Checkout for app purchases?  It > seems that even now, thin

[android-developers] Re: Need help on adding overlays on Map View

2011-07-26 Thread Spiral123
no, you cannot get the overlay information from Google Maps, you will need to use the Google Places API: http://code.google.com/apis/maps/documentation/places/ Before you get too involved in development, I suggest you check your expected usage against the limits per the website. All requests req

[android-developers] Re: Role of the Compatibility Library?

2011-07-15 Thread Spiral123
per Dianne H on Google+: "...These are not part of the platform, they are helper classes in the support library, so they are not documented as part of the platform API documentation. The full source code is available as part of the package, and there are also full samples of using them in the new

[android-developers] Re: How long does it take after publishing an app before it appears in the Market?

2011-07-01 Thread Spiral123
minutes, if not seconds. On Jul 2, 1:10 am, Spooky wrote: > I just published (about 10 minutes ago, maybe a bit longer) my > first app, Point Lobos Gallery.  How long does it typically take > before I can actually see it in the Market (using search)? > > Thanks, >    --jim > > -- > 73 DE N5IAL (/

[android-developers] Re: google-api-java-client-samples

2011-07-01 Thread Spiral123
dencies are exported to the virtual > device? > > Regards, > Sérgio > > > > > > > > On Fri, Jul 1, 2011 at 2:30 AM, Spiral123 wrote: > > yes I got the picasa one working. > > > looking at your error I would check that you have the correct > > libra

[android-developers] Re: google-api-java-client-samples

2011-06-30 Thread Spiral123
yes I got the picasa one working. looking at your error I would check that you have the correct libraries included in your project and I'd also check your namespaces. On Jun 30, 5:05 pm, Sergio Michels wrote: > Hi, > > does anyone have the google-api-java-client-samples (for android) working? >

[android-developers] Re: Keyboard Show/Hide Notification

2011-06-23 Thread Spiral123
Hi Prasanna... That still doesn't answer the question. Why do you want to notify the app that the keyboard has been shown/hidden? What do you want the app to do with that information? If you can tell us the answer to these questions then I believe someone will be able to help you accomplish wha

[android-developers] Re: How to search & find the way between 2 point in google maps api?

2011-05-30 Thread Spiral123
use the directions API: http://code.google.com/apis/maps/documentation/directions/ On May 30, 4:07 am, danhpc wrote: > Hi all, > > I'm newbie in android programming. I'm doing a application call google > maps api. It worked. I can zoom in/out. Mark a position on map. But I > don't know how to na

[android-developers] Re: echo cancellation

2011-05-27 Thread Spiral123
wear headphones On May 27, 12:52 am, neha jain wrote: > thanx 4 rply... > but if i turn down volume control thn will not be able to hear playbackd > voice. > and how to seperate mic and speaker .. > > > > > > > > On Thu, May 26, 2011 at 3:19 PM, Ashwani Kumar wrote: > > When the mic can hear the

[android-developers] Re: if i want to add overlay item to appear in map & also the gps point

2011-04-22 Thread Spiral123
what error are you getting and where? On Apr 22, 6:35 pm, ingy abbas wrote: > package ntryn.n; > > import com.google.android.maps.MapActivity; > import com.google.android.maps.MapView; > import com.google.android.maps.MapController; > import com.google.android.maps.GeoPoint; > > import android.co

[android-developers] Re: Search dialog and searching within the same activity

2011-04-21 Thread Spiral123
hi danny. If you have a dialog where the user can search for an address, then show the results of that search within the dialog - then the back button will quit the dialog with the search results and return to the original map activity - which is what I think you want to achieve. It does make the

[android-developers] Re: Why my maps api didn't work?

2011-04-20 Thread Spiral123
you don't have to put in things to make it good, you have to take out the things that are making it bad. as TreKing suggests, run the app and pay attention to the Log Cat output. When the app crashes, search back to the last Error messages (in red) and you should find out which line is causing th

[android-developers] Re: Hello Everyone

2011-04-20 Thread Spiral123
"TBM"? Is that Male or Fem? One tip, I think Is to follow this link: https://market.android.com/details?id=com.poetry.android&feature=search_result On Apr 16, 3:43 pm, "^TBM^" wrote: > Hey I'm new to this group you can just call me TBM. I am looking forward to > learning as much as possible bec

[android-developers] Re: Use Google Spreadsheets API in Android

2011-04-19 Thread Spiral123
I'm afraid you are a very long way from achieving your objective. My recommendation would be to study the Picasa Android API example. Get it working on your device, understand it, and then adapt it for Spreadsheets. the link to the sample is here: http://code.google.com/p/google-api-java-client/s

[android-developers] Re: Use Google Spreadsheets API in Android

2011-04-19 Thread Spiral123
In fairness to the OP he did try posting in the correct group first. On Apr 18, 1:12 pm, TreKing wrote: > On Mon, Apr 18, 2011 at 11:59 AM, Reptil wrote: > > > Nobody can help > > This group is for the Android SDK. Try a group or forum dedicated to the > SpreadSheet API and library. > > -

[android-developers] Re: new to andriod

2011-04-14 Thread Spiral123
Just think about what sort of game you would like to develop and then post another question to the group asking for a code snippet or sample. I'm sure you will get lots of responses. p.s. make sure you include 'plz' somewhere in the post. On Apr 13, 6:52 am, shwet wrote: > I m new to andriod

[android-developers] Re: info incorrect on http://developer.android.com WHICH COULD PREVENT ECLIPSE FROM RECOGNIZING YOUR DEVICE

2011-04-09 Thread Spiral123
then we would be able to read his expression. On Apr 9, 3:07 pm, scott wrote: > let me tell you do not have to be a "troll" just have to Leira anddecide if I > wrote it will help.Maybe I can usemy keyboard to hit in the face > > On Apr 9, 6:48 am, lbendlin wrote: > > > > > > > > > Ah, the juven

[android-developers] Re: how do i devlope an android keybord

2011-04-08 Thread Spiral123
hi Ariel. can you rephrase your statement as a question please? When you say "it dont run like keybord" what do you mean? How did you try to run it? In what way did it not run like keybord? On Apr 8, 7:09 am, ariel wrote: > i try to dwonload SoftKeyboardLanguagePackTemplate but it dont run >

[android-developers] Re: Authorization via Google Account.

2011-04-06 Thread Spiral123
what do you mean "I am trying to provide User authorization for my Android application via google accounts" do you mean that you want to allow user access to your app if (s)he has a valid Google account? On Apr 5, 4:28 am, "Harihara Krishnan N." wrote: > I am trying to provide User authorizatio

[android-developers] Re: help

2011-04-05 Thread Spiral123
I can. Assuming its a paid app I'll give you 20% of any sales. If its free, you will need to pay me $1,000 USD upfront. On Apr 3, 10:14 am, "nainfanta" wrote: >  Can not account registration, who can help me upload an application?   > > From Robin 2011-04-03 22:13:01 -- You received this mess

[android-developers] Re: Help needed

2011-04-04 Thread Spiral123
I agree with TreKing: you have defined your problem so large that you will have to understand a huge amount of stuff just to get started. Decompose your problem into smaller steps, each with a meaningful goal. That way you can deliver something small, then improve on it and allow your understandi

[android-developers] Re: Mac phone

2011-04-02 Thread Spiral123
No driver is needed for a Mac. Check your cables. It's the #1 reason for Mac connection problems. Use the apple USB prober to make sure that the phone is recognized when plugged in. On Apr 2, 4:11 pm, bob wrote: > I got a Huawei Ascend, and I don't know how to get it working on Mac. > I don'

[android-developers] Amazon Market Reporting

2011-03-30 Thread Spiral123
Is it just me, or is anyone else getting the message: "Access to reports is temporarily unavailable at this time. Please try again later."? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

[android-developers] Re: Getting a Google Account token to use for Google Reader calls?

2011-03-27 Thread Spiral123
Sounds obvious, but in my experience the most common reason for a 401 from the server with Google APIs is getting the service name wrong. This is especially common when folks copy existing auth code fragments to get something working - at least it did with me! For reader I believe the service name

[android-developers] Re: Cloud Computing

2011-03-21 Thread Spiral123
This app is going to be the App of the Century. So far, it's got Video, Music, Religion: you can Edit and Saves documents, enjoy the neat icons, it is Honeycomb-compatible and fully integrated with the Cloud. Rishabh, please put us all out of our misery and tell us the name of the wondrous App.

[android-developers] Re: org.xmlpull.v1.XmlPullParserException: Map value without name attribute: boolean

2011-03-20 Thread Spiral123
i"m sure someone knows the answer to this off the top of their head, but I don't. My first suggestion would be to install your app on an Emulator instance then copy the created SharedPreferences XML file for the app to your local computer and inspect it manually to see if it looks like you expect.

[android-developers] Re: What more does my game need(space bike)

2011-03-14 Thread Spiral123
should rename it Crikey Bikey! On Mar 14, 12:55 am, brian purgert wrote: > I feel like im not getting the comments/ratings i want, my game(space bike) > is currently rated 3 and a half stars... what does my game need to make it > better/more fun -- You received this message because you are subs

[android-developers] Re: Xml Parser for Android Layout.

2011-03-09 Thread Spiral123
errrwell if you are fetching Xml information from the Internet thats a little bit different from reading it from the sdcard. if you really are fetching it from the internet then presumably it is from some datasource that you are managing. In that case the data does not actually need to be in

[android-developers] Re: Gettting data from web page

2011-03-09 Thread Spiral123
Wow. I actually planned to be nice when I browsed the group this evening. Here is the kindest response that comes to mind: your post makes no sense. 1. Just because you decide to use JSON to send your flight data request to a number of websites does not mean that they will accept it. 2. How Goo

[android-developers] Re: tabs and maps

2011-03-09 Thread Spiral123
have you actually read anything up about tabviews or looked through the many tabview tutorials on the web? I suggest you start here: http://developer.android.com/resources/tutorials/views/hello-tabwidget.html On Mar 8, 9:15 am, alok upadhyay wrote: > hi, > i am working from i week on map view

[android-developers] Re: GeoCoder Returning Different Results?

2011-03-09 Thread Spiral123
I haven't looked at that part of their code, but you could always check out the Google MyTracks project to see how they do it and how it is different from your version: http://code.google.com/p/mytracks/ On Mar 9, 6:20 pm, Jake Colman wrote: > I have two apps on my phone, the HTC close and Weathe

[android-developers] Re: Authenticate Non-AppEngine Webservice using Google Account

2011-03-03 Thread Spiral123
I suggest you use OAuth. http://code.google.com/p/oauth-signpost/ On Mar 3, 1:14 pm, Jesse wrote: > I feel it is Android specific because the main unknown is what type of > authtoken does the Android AccountManager API give us for google accounts > (ClientLogin, OAuth, something else?). But, I'l

[android-developers] Re: Beta Game Space Bike

2011-02-27 Thread Spiral123
I'll give it a go. I did think of a name for the game as well: Crikey Bikey! On Feb 27, 2:56 pm, brian purgert wrote: > here are some download links > check it out. > tell people about it, if you know any reviewers give them a link, > also post problems, bugs, questions, suggestions > > http:/

[android-developers] Re: adding search option

2011-02-24 Thread Spiral123
Just because you keep posting the same question, don't expect a different answer. There are many excellent articles on the web covering the topics you are interested in. Google for them. As a hint to get started though, check out the Geocoder, especially GetFromLocationName: http://developer.and

[android-developers] Re: Using google-api-java client

2011-02-21 Thread Spiral123
t either) . > > I tried using the the other > library,https://code.google.com/p/oauth-signpost/. It works smoothly with > this. > -- > Cuil > > > > > > > > On Mon, Feb 21, 2011 at 3:46 AM, Spiral123 wrote: > > well. > > > I don'

[android-developers] Re: Google Map Error

2011-02-21 Thread Spiral123
are you using the standard libraries and manually adding the Google Map jar? if so, change the properties of your app to point to the Google APIs instead. On Feb 21, 3:31 am, Nesim TUNÇ wrote: > Hi Awesome Developers! > > I'm trying to use Google Map in my Android App. My SDK version is 2.1 up

[android-developers] Re: How can i control room lights with my android phone :)

2011-02-20 Thread Spiral123
X10 On Feb 20, 5:07 pm, Abhishek Talwar wrote: > I know there are some i-phone apps for this. > So here goes my question how can i control my room lights or may be > for a start my lamp light with my android phone. I dont wanna buy an > application for that i wanna code it and may be do some wiri

[android-developers] Re: Using google-api-java client

2011-02-20 Thread Spiral123
well. I don't know how you are getting those vm errors, but I would guess you are doing something very wrong. Getting Android and OAuth playing nicely is not what I would think of as a good beginner exercise. If you really want to go that route I would start off with an example a little closer t

[android-developers] Re: a different list mechanism

2011-02-14 Thread Spiral123
With the supplied ListView you can also override a heap of stuff to make it look very different from a 'standard' list. Personally I think I would always start from the default. Some of the guys on the Sony Ericsson developer blog did a nice tutorial around 3d lists: http://blogs.sonyericsson.com

  1   2   >