[android-developers] Re: Android "java.util.BitSet" in ICS vs "Ginger Bread"

2012-02-15 Thread Lew
I don't know why you needed to change the constructor, but I'm quite sure that you shouldn't use an instance method to set values in a static variable. -- Lew On Wednesday, February 15, 2012 10:27:05 PM UTC-8, Subba wrote: > > My application uses Java BitSet API, i never had problem with in >

Re: [android-developers] keyboard dismissing issue

2012-02-15 Thread Ratheesh Valamchuzhy
add android:windowSoftInputMode="stateHidden" to the activity tag in manifest file -- 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, sen

[android-developers] Re: OT: Comedy Gold

2012-02-15 Thread Dusk Jockeys Android Apps
I thought exactly the same! My mum used to make a wicked fish pie with cod. Takes me back.. On Feb 16, 1:32 am, Mark Phillips wrote: > +10 > On Feb 15, 2012 10:06 AM, "Ted Scott" wrote: > > > > > Please don't take this the wrong way, I'm not complaining, just observing. > > I have to say that be

Re: [android-developers] Re: Getting access to a UI Context safely from anywhere

2012-02-15 Thread Kristopher Micinski
It seems like what you should really be doing is using a system notification anyway, you don't want to randomly pop up a dialog box (actually, you can probably pop up a toast in your case, which you can do from the application context..), but a system bar notification probably makes the most sense.

[android-developers] Re: Getting access to a UI Context safely from anywhere

2012-02-15 Thread Weston Weems
Treking Basically this is what I've done... say I have MyAppActivity which has stuff that automatically registers itself into application... events come in, application gets last accessed and I use that to start dialogs etc. Seemed like there were cases where it was throwing exceptions about null

[android-developers] Android "java.util.BitSet" in ICS vs "Ginger Bread"

2012-02-15 Thread Subba
My application uses Java BitSet API, i never had problem with in Android Ginger Bread and below version. All of sudden Android Ice Cream Sandwich, it giving wrong results. code: public class BitTracker { private static BitSet m_FileIds = new BitSet(65535); private void init()

Re: [android-developers] keyboard dismissing issue

2012-02-15 Thread tushar sahni
Hi Has anyone worked on push notifications in android Regards Tushar Sahni -- 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 ema

[android-developers] Re: Why canvas.translate() do not work well in ICS???

2012-02-15 Thread Kandy Guan
i need your help really. Android Groups. 2012/2/14 Kandyguan > Hi : > My app is used canvas.translate() to move a panel up and down, it > work well in other version, but not in ICS? > It can move up and down ,but when it move down, i touch the other > area ,but the other area did not get

[android-developers] keyboard dismissing issue

2012-02-15 Thread vani reddy
HI friends, i have an edittext below which is the listview. after searching in the edittext ,when i click on the listview item it switches to next activity but the keyboard is not dismissed. how to acheive this. In the getView() method i have given convertView.setOnClickListener(new OnClickList

Re: [android-developers] Re: adapter.notifyDataSetChanged not working

2012-02-15 Thread vani reddy
This listview is in the activiyt group of tabactivity. On Wed, Feb 15, 2012 at 6:41 PM, vani reddy wrote: > > public View getView(final int position, View convertView, ViewGroup >> parent) { >> try { >> final Show channelShowItem = (Show) >> myCurrentShowsList.getData() >>

[android-developers] Re: How to interconnect two Android emulators

2012-02-15 Thread moktarul anam
1. adb connect 2. adb devices list of devices 3. adb install- s < *.apk location> Enjoy Moktarul On Feb 15, 10:31 pm, Robokop wrote: > I have a question for you because I am new in Android programming I am > not quite sure how to interconnect two emulator instances.I found link > where

Re: [android-developers] APKs support: Warning, Error

2012-02-15 Thread nvlakshmi vakiti
Thanks TreKing. Regards Lakshmi.V On Thu, Feb 16, 2012 at 12:25 AM, TreKing wrote: > On Wed, Feb 15, 2012 at 3:39 AM, nvlakshmi vakiti < > lakshmi.vad...@gmail.com> wrote: > >> Warning: Active APKs support fewer devices than previously active APKs. >> Some users will not receive updates. >> >

[android-developers] Re: Question on Old Version of ADT

2012-02-15 Thread QD
Thank you very much. Where can I find the ADT version for Android 2.2? QD On Feb 14, 10:50 pm, nvlakshmi vakiti wrote: > Hi, > > http://wing-linux.sourceforge.net/sdk/adt_download.html > > Older versions of the ADT at the following URLs. > > http://dl.google.com/android/ADT-0.9.5.zip > > http:

[android-developers] Re: receive sms application. need help.

2012-02-15 Thread jitesh adnani
added the permission, still no luck. this is my logcat: 02-16 09:11:11.367: D/AndroidRuntime(8446): Shutting down VM 02-16 09:11:11.367: W/dalvikvm(8446): threadid=1: thread exiting with uncaught exception (group=0x40a251f8) 02-16 09:11:11.371: E/AndroidRuntime(8446): FATAL EXCEPTION: main 02-16

[android-developers] How to communicate with sim card on android?

2012-02-15 Thread john
Does android suuport PC/SC ? l want to get some information from sim card, on windows can use winscard.dll, but on android l can't find any usrful function. do l need read MF/DF files with file read functions? even so, l still don't know the path simcar mounted to android system. l am sure andro

[android-developers] Re: google maps and gps

2012-02-15 Thread lbendlin
http://code.google.com/android/add-ons/google-apis/maps-overview.html http://stackoverflow.com/questions/2023669/j2me-android-blackberry-driving-directions-route-between-two-locations/2023685#2023685 -- You received this message because you are subscribed to the Google Groups "Android Developers"

Re: [android-developers] Eclipse Code

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 6:49 PM, Mark McDonald wrote: > Can I please get help with the proper code needed in Eclipse to create > a button/widget that will be visible for an Android Phone Application? > What specific help do you need that you can't get from the documentation and samples?

Re: [android-developers] Is this the proper way to spawn a worker thread?

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 6:43 PM, Ab Caballero wrote: > I am attempting to spawn a worker thread in a service to do the service's > work. > http://developer.android.com/reference/android/app/IntentService.html --

[android-developers] Re: Enabling both normal wifi and wifi hotspot to get RSSI values of wi-fi hotspots

2012-02-15 Thread lbendlin
AFAIK only one mode is possible at a time. I think Wireless Hotspot is just a glorified version of Ad Hoc. -- 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 unsubscr

[android-developers] Re: creation des tables des classements

2012-02-15 Thread lbendlin
http://developer.android.com/reference/android/widget/ListAdapter.html -- 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] How change ViewPager animation's duration when setCurrentItem is called?

2012-02-15 Thread Bruno Bruggemann
Hi, I've a handler that before some seconds changes my views in the ViewPager. It works perfectly, the only thing that I want to do is change the speed of the slide animation when the setCurrentItem is called with the parameter smoothScroll true. It's too fast and in some devices it looks a little

[android-developers] Eclipse Code

2012-02-15 Thread Mark McDonald
Can I please get help with the proper code needed in Eclipse to create a button/widget that will be visible for an Android Phone Application? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] GoogleOAuthGetTemporaryToken - fails on HoneyComb, same code works with 2.1 api

2012-02-15 Thread NickL
The exact same code below results HTTP 400 (Bad request) on Honeycomb, but works great on 2.2. Any idea why? GoogleOAuthGetTemporaryToken temporaryToken = new GoogleOAuthGetTemporaryToken(); temporaryToken.signer = createOAuthSigner(); t

[android-developers] Is this the proper way to spawn a worker thread?

2012-02-15 Thread Ab Caballero
I am attempting to spawn a worker thread in a service to do the service's work. But when i run the debugger, the system does not appear to create the worker thread. however, the application is listening for updates private void startMainService() { startThread(); } privat

Re: [android-developers] Getting access to a UI Context safely from anywhere

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 5:49 PM, Weston Weems wrote: > it doesnt even seem there is a decent way to > test to see if context is > 1) a valid ui context from which I can pop dialogs, show dialog fragments > etc > Don't use a base Context, use an Activity, which itself is a Context, but one assoc

[android-developers] The web page contains error message in Android 3.0

2012-02-15 Thread ramya
I am using android 3.0 and phonegap for my development,when ever I pass the url with query string(parameters) ,I get error message "Application error-The webPage contains error".I tried to bypass it using local storage ; But for search form,I need to retrieve the search inout from the user .I am no

[android-developers] Getting access to a UI Context safely from anywhere

2012-02-15 Thread Weston Weems
Ok, I've encountered several cases where I'd like to instantiate classes that exist as a child of my application subclass, events fire say like a communications error, and we'd like to be able to popup a sort of general communication error anywhere in my app. Another example is say where applicab

[android-developers] How to interconnect two Android emulators

2012-02-15 Thread Robokop
I have a question for you because I am new in Android programming I am not quite sure how to interconnect two emulator instances.I found link where it's explained but it's not very comprehensible to me ( http://developer.android.com/guide/developing/devices/emulator.html#connecting ). I don't under

[android-developers] Re: How to compile/run JUnit 4 tests in Android?

2012-02-15 Thread dan droid
Hi Eric, you can use *JUnit4Android* (an *Android library* project) to build Android test runner applications for your *JUnit4 *tests and test suites. https://github.com/dthommes/JUnit4Android/wiki -- You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] AVD for Sony Ericsson

2012-02-15 Thread Edward Cerullo
Hello, I am using the Eclipse editor, for Android SDK API level 15, and I have loaded in the Sony Ericsson add-on from: http://developer.sonyericsson.com/edk/android/repository.xml According to the Eclipse log, the edk is found: Fetching URL: http://developer.sonyericsson.com/edk/android/reposi

[android-developers] Is Single Wire Protocol possible by default on Galaxy Nexus phone and OS4 now?

2012-02-15 Thread Paul
Hello I am finding the NFC SWP position a bit confusing with Android; On an NFC Galaxy Nexus phone with OS4 - and inserting a UICC chip with some data on it ... will I be able to read this from another phone or device making use of the Single Wire Protocol? (This scenario works between 2 BlackBer

[android-developers] Triumph or Exhibit II for testing?

2012-02-15 Thread Marcus
Hi guys, I'm totally new to Android and need a device for testing purposes (mostly games). I think I have narrowed it down to Motorola TRIUMPH or Samsung Exhibit II 4G, but can't decide between them. Motorola should be faster, but doesn't come with 2.3 (not sure if that's important or not). Could

[android-developers] drawables in android

2012-02-15 Thread nilash
How to embed drawables such as icon, layout etc to an sdk. -- 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-develo

[android-developers] Re: c2dn on simulator ?

2012-02-15 Thread Jags
ok, i replaced authentication code in authentication string in simpleclientactivity. did i do it right ? but still i get registration id as n/a ! regds jags On Feb 1, 9:34 am, TreKing wrote: > On Tue, Jan 31, 2012 at 4:48 AM, Jags wrote: > > is there any beginner tutorial for c2dm ? > > http

[android-developers] google maps and gps

2012-02-15 Thread enes
I am new android dev. I want to use googel maps api in my android project. I want to use my api as navigation and I give destination cordinate , it draw route. do you offer some article about it. thanks -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Is NFC card emulation possible on Galaxy Nexus and OS 4?

2012-02-15 Thread Paul
I know last year Google where not allowing NFC emulation mode with OS 2.3. But is NFC card emulation possible on Galaxy Nexus and OS 4? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

[android-developers] create table of ranking

2012-02-15 Thread zarrouk.ani...@yahoo.fr
I am creating an android application of football in which you can find information, the live matches and rankings championships .. but I'm stuck in the ranking. my teacher told me you can do Standings using jsoup, in fact I used jsoup and I posted values ​​from a website but I have not figured out

[android-developers] creation des tables des classements

2012-02-15 Thread zarrouk.ani...@yahoo.fr
je suis entrain de créer une application android du football dans la quelle on peut trouver les infos ,le direct des matches et les classement des championnats..mais je suis bloqué dans la partie du classement .mon prof m'a dit tu peut faire le classment en utilisant jsoup, en fait j'ai utilisé js

[android-developers] How to create database from the feed and populate the spinner?

2012-02-15 Thread $CVD$
Hi, I'm fresher to android. In my project I have to parse data from the server and to create database from the parsed data. and then i have to fetch the data from the database and to populate the spinner. I'm in a critical situation to complete this task. Kindly pls help me in step by step procedur

[android-developers] Re: c2dn on simulator ?

2012-02-15 Thread Jags
02-15 23:34:04.119: W/C2DM(599): start registration process 02-15 23:34:04.129: W/ActivityManager(74): Unable to start service Intent { act=com.google.android.c2dm.intent.REGISTER (has extras) }: not found 02-15 23:34:18.431: D/SntpClient(74): request time failed: java.net.SocketException:

[android-developers] Re: Android RSS Library

2012-02-15 Thread Daryl Gent
Will you be adding Serialisation into the project? -- 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+uns

[android-developers] i m trying to get the value of a multi choice listview but when when i click on checkbobx it gves me value like android.database.sqllite SQLlietCursor@43e48998 instead of actual s

2012-02-15 Thread Shoaib Ahmed
/here is my code/// package my.com; import my.com.R; import my.com.SpinnerDBHelper; import android.app.Activity; import android.app.LauncherActivity.ListItem; import android.app.ListActivity; import android.content.Context; import android.database.Cursor; import android.

[android-developers] Building for 2.2, Styling for 4.0

2012-02-15 Thread Andrew
Hey folks, I'm planning on writing an app and building against 2.2 Froyo (API Level 8). However, I want app users of 4.0 ICS to experience the app with the ICS user interface. Currently my approach is to have the default activity of my app sense the version of the Android device. If it is less t

Re: [android-developers] Serialization View

2012-02-15 Thread satahippy
thnx! it's works. But i use addViewInLayout -- 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..

Re: [android-developers] Serialization View

2012-02-15 Thread Harri Smått
On Feb 16, 2012, at 12:03 AM, satahippy wrote: > ok. not serialization, caching. i'm add about 80 views, which have a complex > structure (images and textview on other fonts) I think I had somewhat similar situation and the delay in my case, as far as I know, was caused by unnecessary layouts wh

Re: [android-developers] List of alarms

2012-02-15 Thread Kristopher Micinski
Those two aren't mutually exclusive. You use databases to store information, you use content providers to access information through an abstract interface. kris On Wed, Feb 15, 2012 at 4:58 PM, Pawel wrote: > Hi, > > I want to make an alarm clock application. I want to have the list of > few al

Re: [android-developers] Serialization View

2012-02-15 Thread satahippy
ok. not serialization, caching. i'm add about 80 views, which have a complex structure (images and textview on other fonts) -- 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] Re: What is wrong with Android Adapters?

2012-02-15 Thread alh
On Feb 15, 8:24 pm, Kostya Vasilyev wrote: > I took a break for over 10 minutes, leaving logcat running, and... > sorry, it just doesn't. Very interesting :) Thanks for trying it Cheers, Olof -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] List of alarms

2012-02-15 Thread Pawel
Hi, I want to make an alarm clock application. I want to have the list of few alarms. Should I make it with sql database or rather contentprovider? Pawel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

Re: [android-developers] Serialization View

2012-02-15 Thread Harri Smått
On Feb 15, 2012, at 11:38 PM, satahippy wrote: > i just add many views into one, and it's take a lot of time How many views (approximately) we are talking about if it takes up to 6 seconds to do a layout? -- H -- You received this message because you are subscribed to the Google Groups "Androi

Re: [android-developers] Serialization View

2012-02-15 Thread Kristopher Micinski
What does that have to do at all with serialization? kris On Wed, Feb 15, 2012 at 4:38 PM, satahippy wrote: > i just add many views into one, and it's take a lot of time > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to

Re: [android-developers] Serialization View

2012-02-15 Thread satahippy
i just add many views into one, and it's take a lot of time -- 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-devel

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread gropapa
because using the addHeaderView() forces the use of another type of adapter...stupid things in android On 15 fév, 12:35, Olof Hedman wrote: > I did not. I have no need for headers in my lists. > Why do you ask? > > Cheers, > Olof > > On Feb 14, 12:38 pm, gropapa wrote: > > > > > > > > > did yo

[android-developers] Re: Regarding copy right

2012-02-15 Thread John Coryat
Perhaps fork code? -- 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 For mo

Re: [android-developers] Serialization View

2012-02-15 Thread Kristopher Micinski
You seem to be quite misinformed about how views are constructed. Your code is likely slow because you're doing something very strange, and serialization has nothing to do with this.. kris On Wed, Feb 15, 2012 at 3:27 PM, satahippy wrote: > a smaller number of elements in the xml - it's help? >

Re: [android-developers] Handling a Checkbox Click Event

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 2:32 PM, davemeetsworld wrote: > This happens before the checkbox appears "ticked" i wondered if there > was a way to delay the onclick event from firing until after the > animation had...animated? > Use postDelayed() or something along those lines to do your onclick logi

Re: [android-developers] Serialization View

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 2:27 PM, satahippy wrote: > a smaller number of elements in the xml - it's help? What? - TreKing - Chicago transit tracki

[android-developers] Handling a Checkbox Click Event

2012-02-15 Thread davemeetsworld
I have a check box and a TextView Object in a list layout. I didn't run into the issues that a lot of people seem to run into it when doing this, I have managed to handle the onclick event. My problem is that when the checkbox is clicked, it causes an action to occur that moves the item into anothe

Re: [android-developers] Serialization View

2012-02-15 Thread satahippy
a smaller number of elements in the xml - it's help? -- 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+u

Re: [android-developers] TextView: How to make non-breaking string?

2012-02-15 Thread Kostya Vasilyev
Have you tried using non-breaking space? On 02/16/2012 12:11 AM, Karim Varela wrote: Is there a way to designate a substring within a string as non breakable? i.e. to designate a part of a string that won't word wrap, but the entire substring would be displayed on the next line? -- You receiv

[android-developers] TextView: How to make non-breaking string?

2012-02-15 Thread Karim Varela
Is there a way to designate a substring within a string as non breakable? i.e. to designate a part of a string that won't word wrap, but the entire substring would be displayed on the next line? -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Re: Regarding copy right

2012-02-15 Thread JackN
I am not sure what the OP is talking about at all. I don't think they do either. On Feb 15, 10:07 am, Lew wrote: > Are you sure the OP was asking about U.S. law? > > JackN wrote: > > > The procedure is document here > > >http://www.copyright.gov/ > > > Dhaval Varia wrote: > > > I m [sic] plannin

[android-developers] Re: AlarmManager cancel does not work

2012-02-15 Thread Rudolf Polzer
This is really strange: When shifting the alarm time for one minute, the old alarm is not cancelled and I get two alarms one minute apart. When shifting the alarm time for one day, the old alarm is cancelled. How can this happen? The cancel command doesn't know the alarm times. I use the intent w

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 2:51 PM, Kristopher Micinski wrote: >> Actually, I got it from the docs, where they added this somewhere >> along the line to requestLocationUpdates(): >> >> "This field is only used as a hint to conserve power, and actual time >> between location updates may be greater or

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Kristopher Micinski
On Wed, Feb 15, 2012 at 2:46 PM, Mark Murphy wrote: > On Wed, Feb 15, 2012 at 2:39 PM, Kristopher Micinski > wrote: >> I suspected this, but I didn't look at LocationManager's implementation :-( > > Actually, I got it from the docs, where they added this somewhere > along the line to requestLocat

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 2:39 PM, Kristopher Micinski wrote: > I suspected this, but I didn't look at LocationManager's implementation :-( Actually, I got it from the docs, where they added this somewhere along the line to requestLocationUpdates(): "This field is only used as a hint to conserve p

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Kristopher Micinski
On Wed, Feb 15, 2012 at 2:37 PM, Mark Murphy wrote: > On Wed, Feb 15, 2012 at 2:32 PM, Kristopher Micinski > wrote: >> The interval is not exact > > Moreover, the interval can be completely ignored. The minimum distance > is a filter; the minimum time is a hint. > I suspected this, but I didn't

Re: [android-developers] Upload Video using Soap Webservice

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 7:04 AM, suresh wrote: > Can any one help me how to upload video using Saop Web services. > This has nothing to do with Android specifically. > Currently am converting to base64 string format but am getting exception > as out of memory. > Try a group or forum related

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 2:32 PM, Kristopher Micinski wrote: > The interval is not exact Moreover, the interval can be completely ignored. The minimum distance is a filter; the minimum time is a hint. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://com

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread Kristopher Micinski
The interval is not exact: if they come too quickly then you can throw the unwanted ones away. Are they coming too late? kris On Wed, Feb 15, 2012 at 2:25 AM, santhosh b wrote: > Hi, > > I am using below code to send location updates for every 2 min > interval  or  100 meters displacement.  Thi

Re: [android-developers] How to generate multiple apk's for single project

2012-02-15 Thread TreKing
On Tue, Feb 14, 2012 at 10:17 PM, kumar varma wrote: > Can any one suggest me in android how to generate multiple apk's > for single project. > What is the purpose of "multiple apk's for single project"?

Re: [android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 1:25 AM, santhosh b wrote: > This is working fine in Droid2 > Motorola device but when it comes to Google Nexus S > not working as expected > What is it doing that is not "as expected"? --

Re: [android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Kostya Vasilyev
On 02/15/2012 11:09 PM, Olof Hedman wrote: Wait a while after the power turns off and check your logs, I'm pretty sure you will se a couple of "getView":s in your logs too. It doesn't come right away, but within a minute or so after the screen goes black. I took a break for over 10 minutes, leavi

[android-developers] Camera TextureView scaleX/scaleY problems

2012-02-15 Thread Jon Sutherland
Hi, When I create a TextureView for a android.hardware.Camera preview and set the scaleX and scaleY properties in my Activity onCreate method, everything looks great and as expected. However when I try calling setScaleX/setScaleY in the onClick listener of a button and invalidate/postInvalidate t

[android-developers] Enabling both normal wifi and wifi hotspot to get RSSI values of wi-fi hotspots

2012-02-15 Thread SyncMaster
I want an android phone to have both 'normal wi-fi' and 'portable hotspot' turned on at the same time, so that I will be able to get the RSSI values of wireless networks as well as involve in an hotspot connection. Scenario: 4 rooted android phones in CyanogenMod (2-Nexus One, 2-Galaxy S2;

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
Turns out my super-simple adapter never had the on init-problem. But it still has the on power down-problem. Its a 100% static list with the views created on startup and put into an array. Wait a while after the power turns off and check your logs, I'm pretty sure you will se a couple of "getView":

Re: [android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Kostya Vasilyev
On 02/15/2012 10:45 PM, Olof Hedman wrote: Thanks for the log! Which version of android did you run it on? 2.3.4 and 4.0.2 It made my try one more thing... I simplified my layout as much as I could, and this actually got rid of the extreme weirdness, and made my log look like yours. I don't

Re: [android-developers] APKs support: Warning, Error

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 3:39 AM, nvlakshmi vakiti wrote: > Warning: Active APKs support fewer devices than previously active APKs. > Some users will not receive updates. > The APK you set as active has new features / permissions that prevent it from running on some devices that you previously sup

Re: [android-developers] Re: Extended Application life time.

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 1:25 PM, A. Elk wrote: > A continuously-running Service is not always bad. Sometimes this type of > Service is necessary. For about one app in several hundred, perhaps. We have *way* too many cases of apps "leaking" services and *way* too many pissed off users as a result.

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
Hmm, hold that... Might have made a mistake in my tests... I'll revisit this tomorrow when my brain works better :) Cheers, Olof On Feb 15, 7:45 pm, Olof Hedman wrote: > Thanks for the log! > Which version of android did you run it on? > > It made my try one more thing... > I simplified my layou

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
Thanks for the log! Which version of android did you run it on? It made my try one more thing... I simplified my layout as much as I could, and this actually got rid of the extreme weirdness, and made my log look like yours. I don't get though why it would matter. The problem seem to be the relat

Re: [android-developers] Talk Back feature.

2012-02-15 Thread TreKing
Try explaining what specifically you mean by "Talk Back" feature and what specifically you hope to achieve. Also explain what you have tried on your own so far. Asking for a link to an Ebook, which you can search for yourself, makes it sound as if you've not done your own homework on the matter.

Re: [android-developers] group introductory text box

2012-02-15 Thread Harri Smått
On Feb 15, 2012, at 1:23 PM, BobF wrote: > See the attached png. > It has to do with using this group via a web browser ... I rarely use web interface but on Chrome and Safari (OSX); http://groups.google.com/group/android-developers/topics URL gives you a much more "simplified" view at least. --

Re: [android-developers] Widget

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 1:13 AM, Omollo Ateng wrote: > How to use a widget to start and stop an application. pliz help me, any > idea Read the documentation section on Widgets. - TreKing

[android-developers] Re: Extended Application life time.

2012-02-15 Thread A. Elk
A continuously-running Service is not always bad. Sometimes this type of Service is necessary. For example, sync adapters use a service that's always running, and they may also use an Application object to instantiate and return a singleton. This allows the SyncManager to start synchronizations

Re: [android-developers] Facebook Android Application

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 12:16 AM, Passion Android wrote: > I want to create an facebook android application where i want to > create a option ..by press it will show all the phone numbers of the > friends who are in my friend list.so how to do this please give the > idea. > Google "facebook andr

[android-developers] Re: whole file dose not load always

2012-02-15 Thread limelect
Ok daniel one small suggestion After playing with wireshark i added to the software Log.e("WindGraph","response "+response.getAllHeaders()[5]); and i see Content-Length: >>> LES then needed Am i to deduce that is the SERVER fault??? Thank On Feb 15, 6:53 pm, limelect wrote: > getContentLengt

Re: [android-developers] group introductory text box

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 11:51 AM, BobF wrote: > If only you were trying to help ... Now I'm curious why you think I wasted my time on this, if not to try to help. - TreKing

[android-developers] Re: Regarding copy right

2012-02-15 Thread Lew
Are you sure the OP was asking about U.S. law? JackN wrote: > > The procedure is document here > > http://www.copyright.gov/ > > Dhaval Varia wrote: > > I m [sic] planning to publisb my app on amazon [sic] store. > > So i [sic] need to take copy right [sic] for my app. > > What is its pro

Re: [android-developers] Plz help

2012-02-15 Thread Lew
TreKing wrote: > > Also, it's spelled "Please". I really don't understand why that particular > word is apparently left out of English language instruction in certain > foreign countries. > Such as the U.S. -- Lew -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] group introductory text box

2012-02-15 Thread BobF
If only you were trying to help ... If that's what ya' got for help, I respectfully decline. Thanks anyway -- 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 unsubsc

Re: [android-developers] Adding extraneous files to APK?

2012-02-15 Thread Peeyush Varshney
Is it Apps specific? if it is common then you can keep into prebuilt folder and do the changes in .mk file.. On Wed, Feb 15, 2012 at 9:52 PM, Mark Winchester wrote: > I've got some so files that I'm building from pre-existing code. I'm > trying to use it, as is, but I've run into a problem. The

Re: [android-developers] OT: Comedy Gold

2012-02-15 Thread Mark Phillips
+10 On Feb 15, 2012 10:06 AM, "Ted Scott" wrote: > Please don't take this the wrong way, I'm not complaining, just observing. > I have to say that between the ESL and txt speak this list has some really > funny moments. > > The mental image I got from "pies of cod" will have me smiling for the >

[android-developers] Re: Adding extraneous files to APK?

2012-02-15 Thread JackN
I put files into assetts folder. Are you referring to them correctly On Feb 15, 9:02 am, Mark Murphy wrote: > On Wed, Feb 15, 2012 at 11:22 AM, Mark Winchester > wrote: > > I've got some so files that I'm building from pre-existing code.  I'm > > trying to use it, as is, but I've run into a pro

Re: [android-developers] group introductory text box

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 10:50 AM, BobF wrote: > GFY - Apparently we have a difference of opinion on this topic. > Wow. OK. That seems unnecessary. I was just trying to help. I'm sorry if I caught you on your period. > The intro is specific to this group. > This has nothing to do with develo

[android-developers] OT: Comedy Gold

2012-02-15 Thread Ted Scott
Please don't take this the wrong way, I'm not complaining, just observing. I have to say that between the ESL and txt speak this list has some really funny moments. The mental image I got from "pies of cod" will have me smiling for the rest of the week. I'm wondering if it's some new way of pr

Re: [android-developers] Adding extraneous files to APK?

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 11:22 AM, Mark Winchester wrote: > I've got some so files that I'm building from pre-existing code.  I'm > trying to use it, as is, but I've run into a problem.  The source > relies on two extraneous files that are expected to exist in the same > directory as the so.  If I

[android-developers] Re: whole file dose not load always

2012-02-15 Thread limelect
getContentLength() returne less then needed size much less I know as a pro this one is of those ones Thanks in any case it will take all my effort P.S if i parse wrongly the page i reload it again so i do it 6 times So i see every time it get more from the page 130k 150k 200k (not round numbers) ra

Re: [android-developers] group introductory text box

2012-02-15 Thread BobF
GFY - Apparently we have a difference of opinion on this topic. The intro is specific to this group. I had already looked for options to turn it off myself. We also have an apparent difference of opinion WRT your personal importance. If you don't have an answer, don't post - ignore what I p

Re: [android-developers] Re: whole file dose not load always

2012-02-15 Thread Daniel Drozdzewski
What does getContentLength() return for the failing requests? Other idea is to look into HTTP response and all of its headers and the body. Run your code from within the emulator and use Wireshark to peep into the HTTP requests and responses. On 15 February 2012 16:28, limelect wrote: > Well

  1   2   3   >