[android-developers] Re: password mode

2009-07-30 Thread Dianne Hackborn
The user can change it if they want. You should generally leave it up to them, since inputting passwords on these devices can be difficult, and harder on some devices than on others. On Wed, Jul 29, 2009 at 10:53 PM, Shang Hao sahilz...@gmail.com wrote: Hi, It is observed that while

[android-developers] files.length

2009-07-30 Thread dario
helo, in Java Se its tell me that files.length is 16 but when i run it in the android plathform tell me that there is 0 FTPClient f = new FTPClient(); f.connect(server, 21); f.login(username, password); FTPFile[] files = f.listFiles();

[android-developers] Re: password mode

2009-07-30 Thread Sahil Arora
HI Dianne, How can user change these settings?? Can u please elaborate a bit?? Thanks. On Wed, Jul 29, 2009 at 11:01 PM, Dianne Hackborn hack...@android.comwrote: The user can change it if they want. You should generally leave it up to them, since inputting passwords on these devices can be

[android-developers] Re: What is the difference between findFocus() and focusSearch()

2009-07-30 Thread Dato bera
helo, in Java Se its tell me that files.length is 16 but when i run it in the android plathform tell me that there is 0 FTPClient f = new FTPClient(); f.connect(server, 21); f.login(username, password); FTPFile[] files = f.listFiles();

[android-developers] Re: Strange Proxy setting and INTERNET problem Emulator

2009-07-30 Thread Dato bera
helo, in Java Se its tell me that files.length is 16 but when i run it in the android plathform tell me that there is 0 FTPClient f = new FTPClient(); f.connect(server, 21); f.login(username, password); FTPFile[] files = f.listFiles();

[android-developers] Re: password mode

2009-07-30 Thread Dianne Hackborn
Show visible passwords in the Security location settings. On Wed, Jul 29, 2009 at 11:12 PM, Sahil Arora sahilz...@gmail.com wrote: HI Dianne, How can user change these settings?? Can u please elaborate a bit?? Thanks. On Wed, Jul 29, 2009 at 11:01 PM, Dianne Hackborn

[android-developers] Re: password mode

2009-07-30 Thread Sahil Arora
Hi Dianne, I found it...change the visible password checkbox in settings menu. Thanks again. On Wed, Jul 29, 2009 at 11:01 PM, Dianne Hackborn hack...@android.comwrote: The user can change it if they want. You should generally leave it up to them, since inputting passwords on these devices

[android-developers] Re: Calling all Sydney/Australia Android Developers

2009-07-30 Thread Al Sutton
Have you looked at the android developer map at http://bit.ly/nJxkc ? The map is primarily there to help you find you local developers, and there are a few devs marked on it who may be interested. (and everyone is welcome to edit the map and add more :) ). Al. On Jul 29, 2:32 am, Nick

[android-developers] Re: Handling a layout ...

2009-07-30 Thread Emre A. Yavuz
Sorry about the late response. Here's what I meant by the potential casting problem; In order to add the ImageView variable, which was created to handle the Drawable resource, you need to cast the parent layout, which is of type ImageView, to ViewGroup type if you're planning to use the

[android-developers] Re: maps api and 1.5

2009-07-30 Thread jagtap.jj
Refer this http://www.anddev.org/viewtopic.php?p=24902#24902 On Jul 21, 10:12 pm, Spiral jmri...@gmail.com wrote: Same here. On Jul 6, 8:45 pm, Georgy georgearna...@gmail.com wrote: Hello Brian, I am having your same issue. Were you able to solve it? thanks On May 25, 8:48 am,

[android-developers] Re: Garbage Collector - best practice

2009-07-30 Thread f_heft
float is a primitive type, not an object.  It sits in a register, not on the heap. Float is an object that can be used to box a float.  Hopefully you're not using Float for values used in calculations. I'm using float not Float. I'll try out the allocation tracker, thanks!

[android-developers] how to add a progressbar or other widget to some row of the listview??

2009-07-30 Thread frog
hi,all I had this questions a few days ago.but no one give the answer,perhaps that is because my mail didn't include the [android-developers]. have someone try to add some widget to listview here? I want to add a progress bar to the bottom of some row of list view.But now, I only know the way to

[android-developers] Re: About the NeighboringCellInfo information

2009-07-30 Thread 冰咖啡不加糖
why the cll id from TelephonyManager.getNeighboringCellInfo, is different TelephonyManager.getCellLocation. It's more larger. eg. 8321 //cid from TelephonyManager.getCellLocation. getCid() 415506483 //fromo TelephonyManager.getNeighboringCellInfo.getCid() On Jul 11, 5:44 pm, mikewuth

[android-developers] How can you prevent somebody from calling in Android ?

2009-07-30 Thread e-satis
I want to write a software to allow the parents to set a limit to their children phone calls. I need to lock some phone capabilities with a password after the limits are reached. I'd like to know how I can block phone calls from being made, and receive. And if it's possible to set a white list

[android-developers] animated gif over all other elements on the desktop screen.

2009-07-30 Thread android.vinny
HI Is it possible, i want to set an animated gif over all other elements on the desktop screen. If it possible how can i do this this .. thanks a lot in advance... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Folder issues

2009-07-30 Thread loctarar
Hello! I have the following piece of code: File recordDir = currentContext.getDir(recordPath, Context.MODE_PRIVATE); ... String[] fileList = recordDir.list(); I surrounded the getDir call with try/catch blocks and seems to succede. However, fileList is null. Also, recordDir.exists() returns

[android-developers] How to configure the web browser cache size?

2009-07-30 Thread UJ
Dear all, Does anyone help me to configure the web browser cache size? In HTC's new product HERO, they limit the cache size from 100KB to 6MB, and user can configure it manually. It can prevent browser sucking up memory space too much. I have searched many web pages and studied the CacheManager

[android-developers] Re: Button into a Tab error of xml

2009-07-30 Thread Dany BREARD
Hi murphy Thank you so much, I add my new acctivity class Tab1 in the AndroidManifest.xml file. And now my code can launch in android; I blocked since monday about that. you are my hero lol. I think is a novice error. But if I you don't find this error you can't go ahead. Thanks murphy

[android-developers] Disactive animation on activity start

2009-07-30 Thread arnouf
Hi all, Is it possible to disactive the animation between activities provided to user with cupcake 1.5? User can set a preference with 1.5 to set animation on activity launch. I would like disactive these animations inside my app containing different activities. Is it possible? Regards

[android-developers] Re: Folder issues

2009-07-30 Thread loctarar
UPDATE: IT works on the emulator, but not on the device. The OS is up to date. I can't figure out why it's not functioning properly.on the physical device (T-Mobile G1). On Jul 30, 10:41 am, loctarar andrei.bu...@gmail.com wrote: Hello! I have the following piece of code: File recordDir =

[android-developers] Re: Folder issues

2009-07-30 Thread Andrei Bucur
UPDATE2: I manually uninstalled the package on the phone and then launched again the debugger in eclipse. Now it works :|. If someone has a possible explanation for this please feel free to share. My guess is that sometime in the development process I used the path to create a file (not a folder)

[android-developers] Re: Speech Recognition

2009-07-30 Thread moa
A couple of questions; 1. How does it work with numbers. Is it possible to limit the text returned? If I wanted VR to listen for numbers can I get it to return 115 instead of one hundered and fifteen? 2. Is it possible to define/limit the dictionary of words which it tries to match against? For

[android-developers] Re: maps api and 1.5

2009-07-30 Thread brian.schimmel
Well, in the end I couldn't get Google Maps to run on 1.5 no matter how hard I tried. Now I'm happily using OpenStreetMap, which was up and running in 15 minutes, but needed one or two days of tweeking until it met my needs. See http://www.anddev.org/openstreetmap_mapview_for_android-t2967.html

[android-developers] Why does setTextFilterEnabled(true) not work?

2009-07-30 Thread guishenl...@gmail.com
Hi all, I want to design a ListView with auto filter fuction, that is, when the user press a key all the items who matches this key will be filtered and form a new list. I selected the method setTextFilterEnabled(true) to implement my function, but it didn't work in fact. Could anyone tell me

[android-developers] Re: Intent broadcasting not working

2009-07-30 Thread Desu Vinod Kumar
Hi Only Toast widget will work for broadcast reciever is it possible to show the images or any other thing we can't place.. On Thu, Jul 30, 2009 at 11:29 AM, Sudeep Jha sudeep.neti...@gmail.comwrote: Still no broadcasting.Can anybody give me an example code on broadcasting an intent from an

[android-developers] Why does TextFilter not work?

2009-07-30 Thread guishenl...@gmail.com
Hi all, I want to design a ListView with auto filter fuction, that is, when the user press a key all the items who matches this key will be filtered and form a new list. I selected the method setTextFilterEnabled(true) to implement my function, but it didn't work in fact. Could anyone tell me

[android-developers] Re: Australian Android Developers - Drop me a line

2009-07-30 Thread Nicholas Albion
I googled for Sydney Android Developers User Group and it came up with nothing but this post. Do you have a link? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] creating a shared jar library

2009-07-30 Thread GiladH
hey, i have several apps (each in its own apk, process etc) running at the same time on user's device. these apps are all linked to a single common jar file (internally devloped) which contains a large portion of their overall code size. is there a way for me to force Andro to make this

[android-developers] Re: Disactive animation on activity start

2009-07-30 Thread Mark Murphy
arnouf wrote: Is it possible to disactive the animation between activities provided to user with cupcake 1.5? Not that I am aware of. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Need Android talent? Ask on HADO! http://wiki.andmob.org/hado

[android-developers] Re: Australian Android Developers - Drop me a line

2009-07-30 Thread Nick
Hey there Nicholas. Just head over to http://groups.google.com/group/sydney-android-developers-user-group Its pretty quiet at the moment, but early days.. On Jul 30, 8:59 pm, Nicholas Albion nalb...@gmail.com wrote: I googled for Sydney Android Developers User Group and it came up with

[android-developers] Re: how to add a progressbar or other widget to some row of the listview??

2009-07-30 Thread Mark Murphy
frog wrote: I had this questions a few days ago.but no one give the answer,perhaps that is because my mail didn't include the [android-developers]. have someone try to add some widget to listview here? I want to add a progress bar to the bottom of some row of list view.But now, I only know

[android-developers] How did they made those solve the math to dismiss the Alarm Clock type apps?

2009-07-30 Thread alucard20004
I saw few of them on the market. Actually I didn't download any of them yet.(I'm not in the country that can access paid app) But I'm just curious so allow me to ask those have access to these alarm clock apps. 1. User can just turn off the phone. How did the developer prevent user from

[android-developers] Re: Handling a layout ...

2009-07-30 Thread Mark Murphy
Emre A. Yavuz wrote: Sorry about the late response. Here's what I meant by the potential casting problem; In order to add the ImageView variable, which was created to handle the Drawable resource, you need to cast the parent layout, which is of type ImageView, to ViewGroup type if

[android-developers] Re: How did they made those solve the math to dismiss the Alarm Clock type apps?

2009-07-30 Thread Mark Murphy
alucard20004 wrote: 1. User can just turn off the phone. How did the developer prevent user from turning-off the device? They probably do not stop the user from turning off the device (i.e., holding down the end-call button and choosing Power Off). I would be rather disturbed if an application

[android-developers] ListView: invisible dividers still take up space. Is it a bug or a feature?

2009-07-30 Thread brian.schim...@googlemail.com
I'm using a ListView with a custom ListAdapter and a custom Drawable as divider. My list contains active elements and passive ones as well. By default, the ListView draws a divider only between two active items. This is exactly what I want it to do, expect that ListView leaves dividerHeight

[android-developers] Re: Australian Android Developers - Drop me a line

2009-07-30 Thread Eric Wong (hdmp4.com)
I wonder if there are enough Australian (or Sydney) Android developers aroundto warrant such a group. Eric --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Australian Android Developers - Drop me a line

2009-07-30 Thread Nick
I figure there's only one way to find out Eric! On Jul 30, 9:39 pm, Eric Wong (hdmp4.com) ericwon...@gmail.com wrote: I wonder if there are enough Australian (or Sydney) Android developers aroundto warrant such a group. Eric --~--~-~--~~~---~--~~ You

[android-developers] Re: Australian Android Developers - Drop me a line

2009-07-30 Thread Nick
But, if you are just trans-tasman, feel free to join in! On Jul 30, 9:53 pm, Nick nick.may...@gmail.com wrote: I figure there's only one way to find out Eric! On Jul 30, 9:39 pm, Eric Wong (hdmp4.com) ericwon...@gmail.com wrote: I wonder if there are enough Australian (or Sydney)

[android-developers] Re: how to add a progressbar or other widget to some row of the listview??

2009-07-30 Thread frog
thanks Mark but ,I did try this method,I add the FootView to the listview,but it looks strang.Only two button(or other something ,and It's blinking all the way)apeared at the bottom of the list.I want to add bottom of some row just like this:--

[android-developers] Re: Disactive animation on activity start

2009-07-30 Thread arnouf
Thanks a lot Mark for this real bad news. I thought to another way to unactive the user preference when app is launching but I'm not sure that's possible and it's a wrong way to implement a good thing. Thx again Arnaud On 30 juil, 13:15, Mark Murphy mmur...@commonsware.com wrote: arnouf

[android-developers] Re: How to catch event from the virtual keyboard ?

2009-07-30 Thread Azhdar
No idea ? On Jul 28, 5:30 pm, Azhdar azh...@gmail.com wrote: Hi Everything is in the title : How tocatcheventfrom thevirtualkeyboard? In fact, I want to know if the screen is touch for instance. Thank you in advance ! --~--~-~--~~~---~--~~ You received this

[android-developers] how to disable the keygaurd and screen locking in android

2009-07-30 Thread Harishkumar V
Hi, i am porting android to our custom board. When android first time boots up, it is proper, i able to go into apps window and able to work. But, if i boot the android for next time, the andorid boots up and goes to main screen, where the screen gets locked displaying Press Menu to unlock. If

[android-developers] How to handle complex objects from webservice.

2009-07-30 Thread Ram
Hi All, can anybody tell me how to handle a complex type object from webservice. Presently I am able to handle simple String messages. But if I am extracting some array of objects or String, then how to handle this. Waiting for quick reply. -Ram

[android-developers] AndroidIntentPlayground sourcecode

2009-07-30 Thread Sudeep Jha
Does anybody have the source code for AndroidIntentPlayground example in Diego Torres Milano's blog http://dtmilano.blogspot.com/? -- Warm Regards, Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] How to dismiss Spinner's Dialog automatically

2009-07-30 Thread Gery
Hi group, I am sure that everybody can easily recur the problem I am facing. There is a Spinner in the view, which includes a few entries. When I cllick the Spinner, it pops up a dialog so user can choose an entry. All these are very normal and you can find such things in SDK's API demo. The

[android-developers] Service class

2009-07-30 Thread Sudeep Jha
How to create a service that will post messages to an activity periodically using timer? -- Warm Regards, Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Two SurfaceViews in a FrameLayout

2009-07-30 Thread Chris
I have looked through the docs again and find no explanation what the best way is where I can really have two seperate views overlay and update both at righ rates. Maybe someone can comment on the use-case that I have described below. Thanks! Chris On Jul 28, 11:18 am, Chris

[android-developers] Re: View Files on a remove server/PC

2009-07-30 Thread Yusuf T. Mobile
Are you trying to view remote files on a PC from another PC? In that case WinSCP is a good way. If you are using a non-Windows machine, then scp is the command-line version that ships with most unix distributions, include OSX. If by change you are trying to view remote files with your Android

[android-developers] Re: Zii Egg's Android OS

2009-07-30 Thread Yusuf T. Mobile
I think it would be tricky to use Android without a menu button. So either they: 1) changed Android (it is open-source, after all) 2) did something clever with the hardware buttons, like how they made the camera button also the back button 3) forgot Yusuf Saib Android ·T· · ·Mobile· stick

[android-developers] Re: how to disable the keygaurd and screen locking in android

2009-07-30 Thread Dianne Hackborn
Hi, please post these kinds of questions to android-porting, thanks. On Thu, Jul 30, 2009 at 5:46 AM, Harishkumar V harishpres...@gmail.comwrote: Hi, i am porting android to our custom board. When android first time boots up, it is proper, i able to go into apps window and able to work.

[android-developers] Re: How to handle complex objects from webservice.

2009-07-30 Thread Lex
How exactly are you receiving the data from the webservice (HTTP POST method, TCP connection, UDP connection..)? If you are receiving your complex object in parts, write a method that will process the input and put the parts together to recreate your object. Lex On Jul 30, 2:52 pm, Ram

[android-developers] Re: How to catch event from the virtual keyboard ?

2009-07-30 Thread Dianne Hackborn
Either set the window flag to have your IME's window consume all touch events, or make it larger so the user hits it. Note that there is no way to be able to receive touch events there and selectively decide whether they go to the underlying application, it is either all or nothing. On Thu, Jul

[android-developers] Re: Disactive animation on activity start

2009-07-30 Thread Dianne Hackborn
Just set the animation style on your window to not have any animations. On Thu, Jul 30, 2009 at 1:01 AM, arnouf arnaud.far...@gmail.com wrote: Hi all, Is it possible to disactive the animation between activities provided to user with cupcake 1.5? User can set a preference with 1.5 to set

[android-developers] Re: Threads for networking and DatagramSocket

2009-07-30 Thread Lex
Thank You for your advice, Roman. There's a detailed post about my issue on the Java Sun Forum: http://forums.sun.com/thread.jspa?messageID=10779608#10779608 Lex On Jul 29, 5:06 pm, Roman roman.baumgaert...@t-mobile.com wrote: I recommend to keep your data communication separate from the UI.

[android-developers] Re: How did they made those solve the math to dismiss the Alarm Clock type apps?

2009-07-30 Thread Dianne Hackborn
I certainly hope they don't hold a wake lock. :) They should just schedule an alarm. On Thu, Jul 30, 2009 at 4:27 AM, Mark Murphy mmur...@commonsware.comwrote: alucard20004 wrote: 1. User can just turn off the phone. How did the developer prevent user from turning-off the device? They

[android-developers] Re: Speech Recognition

2009-07-30 Thread Dianne Hackborn
Sorry, I don't know. On Thu, Jul 30, 2009 at 1:54 AM, moa mich...@jixel.com wrote: A couple of questions; 1. How does it work with numbers. Is it possible to limit the text returned? If I wanted VR to listen for numbers can I get it to return 115 instead of one hundered and fifteen? 2.

[android-developers] Re: Zii Egg's Android OS

2009-07-30 Thread Dianne Hackborn
Anyone can take Android and put it on whatever hardware they want with whatever buttons they want. This doesn't mean it is going to be compatible with existing applications, and a device that isn't compatible won't be running things like market that cause third party developers to have to

[android-developers] Re: creating a shared jar library

2009-07-30 Thread Dianne Hackborn
Sorry, Android currently doesn't support third party shared libraries. On Thu, Jul 30, 2009 at 4:13 AM, GiladH gila...@gmail.com wrote: hey, i have several apps (each in its own apk, process etc) running at the same time on user's device. these apps are all linked to a single common jar

[android-developers] Re: files.length

2009-07-30 Thread Dianne Hackborn
FTPClient is not part of the Android platform, so you will need to look at whatever code you have built in to your application there to figure out why it isn't working. On Wed, Jul 29, 2009 at 11:02 PM, dario ber...@gmail.com wrote: helo, in Java Se its tell me that files.length is 16 but when

[android-developers] Re: Threads for networking and DatagramSocket

2009-07-30 Thread Dianne Hackborn
Um... it looks like the people there already answered your question: only the receive() call is synchronized, so you can freely send data while your reader thread is blocked waiting for new data to arrive. I don't understand at all why you are suggesting doing networking on the main thread,

[android-developers] DDMS Allocation Tracker - Start Tracking Disabled

2009-07-30 Thread shaun
I have not been able to use the Allocation Tracker in DDMS (stand alone from command line). I open DDMS and on the Allocation Tracker tab, the two buttons are disabled as if I do not have something configured correctly or I am not connected to the right process etc... Details: =I think I may

[android-developers] Re: LocationManager NullPointerException

2009-07-30 Thread Yusuf T. Mobile
Is there any more to the stack trace? The only thing I can think of is you providing a null criteria to getBestProvider(). Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not

[android-developers] Notification Like UI

2009-07-30 Thread Sujay Krishna Suresh
Hi all, i need to implement a UI component similar to the Notification Area in the android os. That is on click i wanna fill the screen with my view, show certain options to the user it should always be on top of all Activities in my application. onFling up i'll minimize the view

[android-developers] ListView touch problem

2009-07-30 Thread legerb
Each list item in my ListView is a linkified TextView, and a regular TextView. The problem is that once there is a touchable item in the ListView, the touch works only for that item, that is - only links work, but the entire list item containing the link cannot be touch selected (only with the

[android-developers] startActivity Problem

2009-07-30 Thread kolby
Hi all, I'm trying to call a service directly, and I'm getting an ActivityNotFoundException thrown. My main class looks like this: --- @Override public void

[android-developers] Re: creating a shared jar library

2009-07-30 Thread GiladH
tnx Dianne. after my post i have learned about the ability to 'inject' my shared library into open source Andro, as described in: http://android.git.kernel.org/?p=platform/development.git;a=blob;f=samples/PlatformLibrary/README.txt;h=5ce9d2f7756a0708e9fc0aed7845f3d69d4a6ae0;hb=cupcake i take it

[android-developers] Re: Service class

2009-07-30 Thread Yusuf T. Mobile
To create a service: http://developer.android.com/reference/android/app/Service.html To post a message to an activity: http://developer.android.com/reference/android/content/ServiceConnection.html Timer: http://developer.android.com/reference/java/util/Timer.html Yusuf Saib Android ·T· ·

[android-developers] Re: Handling a layout ...

2009-07-30 Thread Emre A. Yavuz
What if you try to add (and by adding I mean placing on top of it) an ImageView to another one ? Say you've already set the image in your layout xml file and later on you'd like place a smaller image somewhere on it in order it to be used as a button to click on. Emre Date: Thu, 30 Jul

[android-developers] Re: ListView: invisible dividers still take up space. Is it a bug or a feature?

2009-07-30 Thread Yusuf T. Mobile
I can't speak for the original designers' and coders' intent, but it may be they intended to put a space there so that when an item is selected, they can put a yellow rectangle around it, which, they do. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in

[android-developers] Re: Garbage Collector - best practice

2009-07-30 Thread Yusuf T. Mobile
I recommend seeing this lecture from GoogleIO on the same subject: http://code.google.com/events/io/sessions/WritingRealTimeGamesAndroid.html To your question, GC can pause real-time games, unfortunately. Two ways to minimize this are: 1) reuse objects, rather than allocating new ones and

[android-developers] Re: startActivity Problem

2009-07-30 Thread Yusuf T. Mobile
Try using startService() to start your service instead of startActivity (). Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc.

[android-developers] Re: ListView: invisible dividers still take up space. Is it a bug or a feature?

2009-07-30 Thread Romain Guy
I'm rather sure this is a Bug, but maybe it's the intended behaviour. This is not a bug. Just set the dividerHeight to 0. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time to provide private support. All such

[android-developers] Re: Multicast receive broken in Android 1.5?

2009-07-30 Thread pierre
Same issue here too. When I retrieve my kernel config file from my Cupcake-upgraded G1 device (by using adb pull /proc/config.gz .) and when I look for CONFIG_IP_MULTICAST, then I find the following line: # CONFIG_IP_MULTICAST is not set Therefore I guess that multicast is disabled in the

[android-developers] Separating Widget from main Application

2009-07-30 Thread rycerz1411
Hello, I have a existing application and I added a Widget to it, so now I have app and widget in this same apk. When I launch the main app the widget onUpdate gets executes whitch is not what I want is there any way to separate this two. --~--~-~--~~~---~--~~ You

[android-developers] Re: creating a shared jar library

2009-07-30 Thread Dianne Hackborn
That only applies if you are making your own device. On Thu, Jul 30, 2009 at 8:20 AM, GiladH gila...@gmail.com wrote: tnx Dianne. after my post i have learned about the ability to 'inject' my shared library into open source Andro, as described in:

[android-developers] Re: ListView: invisible dividers still take up space. Is it a bug or a feature?

2009-07-30 Thread brian.schimmel
Hi Romain, I think you just got me wrong. If I wanted to have no dividers at all, I would set dividerHeight to 0, of course. Indeed, I want to have dividers between enabled items, but no dividers next to disabled ones. The code in ListView.dispatchDraw() already has code for this:

[android-developers] How to use Bluetooth with VoIP

2009-07-30 Thread Breno
Hi, i did a search in this forum, and found nothing related. I have a voip app working, and i need to implement conversation over bluetooh, when connected. I dont want to connect, but use it. When the handsfree is connected, the audio (i.e, media) is routed automatically to it, but the

[android-developers] Re: password mode

2009-07-30 Thread Marco Nelissen
Please don't hijack threads with unrelated questions. On Wed, Jul 29, 2009 at 11:16 PM, Dato bera ber...@gmail.com wrote: helo, in Java Se its tell me that files.length is 16 but when i run it in the android plathform tell me that there is 0 FTPClient f = new FTPClient();

[android-developers] Re: Is there Galaxy simulator?

2009-07-30 Thread dan raaka
simulator ? I guess you meant images for emulator .. but oems can provide their images for the emulator as addon for SDKr3 .. which app is this ? -Dan On Wed, Jul 29, 2009 at 10:09 PM, Anonymous Anonymous firewallbr...@googlemail.com wrote: No simulator as far as i know,what is the app?

[android-developers] Re: DDMS Allocation Tracker - Start Tracking Disabled

2009-07-30 Thread fadden
On Jul 30, 7:14 am, shaun shashepp...@gmail.com wrote: =The emulator is 1.5 avd with an SD card. =I have a G1 device also. [...] =The Info tab of DDMS has DDM-aware? no for each child entry in the left pane Is anything peculiar coming out of logcat, e.g. complaints of multiple connection

[android-developers] Enjoy internet with the Nokia 6700 Classic

2009-07-30 Thread Jackson
Enjoy the best of the internet with the Nokia 6700 Classic. High speed HSDPA allows rapid downloads of all your favorite content, from websites to email. Support for HSUPA allows you to upload data even faster, making sharing your images and movies with others..Read More at

[android-developers] Re: startActivity Problem

2009-07-30 Thread kolbysoft
Thanks Yusuf, that worked. Still curious though, when did the startActivity behavior change? It worked in an older project that was also 1.5. Michael On Jul 30, 11:52 am, Yusuf T. Mobile yusuf.s...@t-mobile.com wrote: Try using startService() to start your service instead of startActivity

[android-developers] Regarding tab Indicator

2009-07-30 Thread sameer
Hi, I want to change the tab indicator which is a label on the top after a request is sent. Is it possible to change it on runtime? Thanks, Sameer Joshi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: startActivity Problem

2009-07-30 Thread Dianne Hackborn
There was never a point at any stage in the development of the platform where startActivity() would start a Service. :) On Thu, Jul 30, 2009 at 10:21 AM, kolbysoft kolbys...@gmail.com wrote: Thanks Yusuf, that worked. Still curious though, when did the startActivity behavior change? It

[android-developers] Re: Maximum Number of Connections

2009-07-30 Thread fadden
On Jul 29, 6:31 pm, Rich miser...@gmail.com wrote: D/libc-abort( 1180): abort() called in pid 1180 I/DEBUG   (  551): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** I/DEBUG   (  551): Build fingerprint: 'generic/google_sdk/generic/:1.5/ CUPCAKE/148875:eng/test-keys' I/DEBUG

[android-developers] Re: DDMS Allocation Tracker - Start Tracking Disabled

2009-07-30 Thread shaun
I start with eclipse running, emulator not running, ddms not running. I then run my application on emulator (I don't know if the eclipse plugin will start some ddms process at that time or not). Just looking around logcat for errors or strange occurrences and I see quite a few errors and

[android-developers] Re: ListView: invisible dividers still take up space. Is it a bug or a feature?

2009-07-30 Thread Romain Guy
but the code related to the layout of the children seems to ignore the presence of disabled items. It's reserving space for dividers that will not be drawn by dispatchDraw. Maybe this is intended as well. But anyway, I wish it was intended (and implemented) the other way ;) This is the

[android-developers] Re: DDMS Allocation Tracker - Start Tracking Disabled

2009-07-30 Thread shaun
I just exited eclipse and ddms then the emulator from the command line, and ddms from the command line and it looks to work. eclipse must be running ddms also causing multiple instances to run when I ran ddms from command line like you mentioned. I guess I have to figure out how to use the one

[android-developers] Re: Separating Widget from main Application

2009-07-30 Thread Michael Elsdörfer
Make sure this doesn't just happen when you launch from Eclipse - this is actually a pretty useful feature for development. Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: MediaScannerConnectionClient which content provider?

2009-07-30 Thread Sonja_android
Sounds good. Is there a way to specify which database I'd like the MediaScannerConnectionClient to use? On Jul 29, 6:56 pm, Marco Nelissen marc...@android.com wrote: On Wed, Jul 29, 2009 at 8:26 AM, Sonja_android pubmoonm...@gmail.comwrote: I am using the MediaScannerConnection and

[android-developers] Modifying the built-in Alarm Clock. No way to return to the snooze/dismiss dialog.

2009-07-30 Thread alucard20004
(Please excuse my imperfect English) Hi. I'll get straight to the point. I downloaded the built-in Alarm Clock source and trying to modify it so that user need to play mini game in order to stop the alarm. What I did: 1. I removed the dismiss and snooze button. (so user will have no choice but

[android-developers] Re: what's wrong in this code

2009-07-30 Thread riz
it is causing a problem in Thread.sleep (2000); but why ? please if any body explain On Jul 30, 11:23 pm, riz rizcs...@gmail.com wrote: I m just trying to call drawScore method from another Thread . drawScore method just changes the text of textView but it's not working .any idea ? On Jul

[android-developers] OPHOne JIL widgets and Android

2009-07-30 Thread Fred Grott(shareme)
I have a question.. It appears that OPHOne has JIL web widgets.. Since OPHone is base don andorid OS has anyone started work on supporting JIL web widget sdk/api in Android ? Fred Grott http://mobilebytes.wordpress.com --~--~-~--~~~---~--~~ You received this

[android-developers] SoftKeyboard doesn't appear on AlertDialog

2009-07-30 Thread drjunior
Hi, I have one EditText inside one AlertDialog. When the EditText has focus the SoftKeyboard doesn't appear with vertical screen orientation. I have other EditTex in a common Layout and this works fine. Someone with same problem? --~--~-~--~~~---~--~~ You

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2009-07-30 Thread TaoK
Hi, I got this working in windows XP (french), but not following any of the suggestions I have seen so far exactly: 1) Set the device in debug mode, under applications (mentioned everywhere, clearly required) 2) Install Samsung New PC Studio (not sure this actually did anything useful...) 3)

[android-developers] convertView with wrong type

2009-07-30 Thread Klaus Kartou
I hope someone can share some light on a issue I have with using the convertView that is supplied by the BaseAdapter. The problem is that I have a couple of different listviews in my app. When using the convertView with listviews that only shows one type everything works fine, and I experience a

[android-developers] Database problems...

2009-07-30 Thread Skeniver
Hi there I am trying to create a database with two tables. Employees and Computers. A spinner with employee names fill properly when I don't try create and do anything with the second table... The code to create is: private static class DBOpenHelper extends SQLiteOpenHelper {

[android-developers] simple twitter query

2009-07-30 Thread Andy Droid
Just trying to search for a user's latest public twitter post. I have not worked with http in java before, so I don't know how it all comes together with http gets and requests, and such. I just want to get the latest post from a user (say Fred1000), in the form of a json object. If there is a

[android-developers] Re: Custom tabs issue

2009-07-30 Thread Pushkar
I could not find a straightforward way to do that, I use reflection APIs to get rid of it. TabWidget tw = getTabWidget(); Field mBottomLeftStrip; Field mBottomRightStrip; try { mBottomLeftStrip = tw.getClass().getDeclaredField

[android-developers] cropping and changing images on a soft keyboard

2009-07-30 Thread Spektor Yaron
Hi, I am trying to crop an image on a key for a soft keyboard. i want to do the following: 1.create a key with an icon (from a Bitmap) 2.take that Bitmap and crop it 3.set the new Bitmap back on the key as an icon Optional: 4.do some or most of this from the XML using the parser (i could not get a

  1   2   >