[android-developers] Re: left scrollbar

2010-03-28 Thread skink
On Mar 28, 3:37 am, Dianne Hackborn hack...@android.com wrote: But why do you want to put a scroll bar on the left?  Scroll bars on Android are on the right.  Making that different just makes things gratuitously different for the user, for no reason I can see. Dianne , i don't, OP wants

Re: [android-developers] Re: left scrollbar

2010-03-28 Thread Romain Guy
You can override these methods to draw the scrollbar on the left if you want. On Sun, Mar 28, 2010 at 12:12 AM, skink psk...@gmail.com wrote: On Mar 28, 3:37 am, Dianne Hackborn hack...@android.com wrote: But why do you want to put a scroll bar on the left?  Scroll bars on Android are on the

[android-developers] Re: left scrollbar

2010-03-28 Thread skink
On Mar 28, 6:14 am, Romain Guy romain...@android.com wrote: You can override these methods to draw the scrollbar on the left if you want. thanks Romain a lot! speaking of scrollbars, i cannot make android:scrollbarSize to work. whatever i set it seems that size is always 6. also if i'm

Re: [android-developers] Re: Timer / threads / reliability

2010-03-28 Thread Dianne Hackborn
On Sat, Mar 27, 2010 at 4:00 AM, Mark Murphy mmur...@commonsware.comwrote: Neilz wrote: Is there a way, to have View elements (TextView, Button, whatever) that are not run on the main UI thread? No. Windows can run in their own threads, all views inside of a particular window must run in

[android-developers] Question for Admob users

2010-03-28 Thread Neilz
Hi all. I'm using Admob, and currently have android.permission.ACCESS_COARSE_LOCATION set in my manifest. Now, my app clearly doesn't require location, and a lot of users are asking why I need it. I've just discovered that Admob doesn't actually require that the location is set, the only

Re: [android-developers] create TextView

2010-03-28 Thread murali raju
try, TextView b = new TextView(getApplicationContext()); On Sat, Mar 27, 2010 at 7:58 PM, rubeN_vl rvanluch...@hotmail.com wrote: Hi, i'm trying to create a new TextView when a button is clicked. TextView b = new TextView(this); isnt working cause 'this' refers to new

[android-developers] Re: Question for Admob users

2010-03-28 Thread Yahel
Hi, This is more a admob oriented questions : http://groups.google.com/group/admob-publisher-discuss/topics The admob SDK states that it is optionnal : Optionally, you can add the ACCESS_COARSE_LOCATION and/or ACCESS_FINE_LOCATION permissions to allow AdMob the ability to show geo- targeted

[android-developers] Re: Question for Admob users

2010-03-28 Thread Neilz
Hi Yahel. Yes, I've read all that, and also asked on the group. But unfortunately, that group only seems to post once every few days, it's not moderated properly. I need to know quicker than that! Any other experiences with this? On Mar 28, 12:45 pm, Yahel kaye...@gmail.com wrote: Hi, This is

[android-developers] Re: Rotated map view - how to get the touches back to where they belong?

2010-03-28 Thread lbendlin
sorry to bump this. Anyone? On Feb 24, 11:30 pm, lbendlin lutz.bend...@gmail.com wrote: I am using the MapsDemo example for a mapping application where I rotate the map in direction of travel. This works well even without the canvas smoothing in the example. However, I haven't yet managed to

[android-developers] Re: MapView map elements size (e.g. street labels)

2010-03-28 Thread lbendlin
Have a look at which tiles the Google Maps app fetches versus what the API fetches. You will see that they will go to different servers. There is no rocket science here (vector based drawings etc) - all you get are prerendered PNG picture tiles (256x256 I think, or was it 128x128?). There's no

[android-developers] Re: onItemClick gives index/ po sition of item on visible page … not actual index of the i tem in list ..problem on enabling setTextFilterEnabled ..

2010-03-28 Thread lbendlin
shouldn't you be able to fetch the value of id from the returned item? On Mar 26, 6:44 pm, Abhinav abhinav@gmail.com wrote: hi, I am creating a list .. the elements of the list are drawn from sqlite database .. I populate the list using ArrayList and ArrayAdapter ...upon clicking the

[android-developers] ImageButton onClick or onKeyDown?

2010-03-28 Thread Paolo
is it possible to use onKeyDown() for an ImageButton instead of onClick() to capture the user's click on this imagebutton? what's the difference? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: cannot install radio update

2010-03-28 Thread Nate
*bump* Without 2G my phone is not very useful! On Mar 27, 2:59 am, Nate nathan.sw...@gmail.com wrote: Maybe there is somewhere else I can ask? On Mar 25, 12:57 am, Nate nathan.sw...@gmail.com wrote: No one can offer any suggestions? On Mar 24, 12:32 am, Nate nathan.sw...@gmail.com

Re: [android-developers] Re: stuck in OnTouchEvent OnClikc method. please help

2010-03-28 Thread murali raju
hi satish, i guess there is no need to use both the methods. click = touch down + touch up. so using just ontouch is enough On Sat, Mar 27, 2010 at 2:08 PM, satish bhoyar getsatonl...@gmail.comwrote: Guys pls help ... On Fri, Mar 26, 2010 at 5:02 PM, satish bhoyar

Re: [android-developers] Re: cannot install radio update

2010-03-28 Thread Mark Murphy
Nate wrote: *bump* Without 2G my phone is not very useful! The instructions (http://developer.htc.com/adp.html) tell you: For discussions and support about updating your Android Dev Phone, please head over to the Android-DevPhone-Updating group. with a link to:

[android-developers] Re: (To Google devs)Using the IM plugin class

2010-03-28 Thread Hugo Vincent
Have there been any updates to (the roadmap for) IM since this message? Hugo On Mar 28 2009, 12:13 am, Dianne Hackborn hack...@android.com wrote: This isn't currently supported in the SDK.  I don't know what plans there are to have it in the SDK, if any.  Certainly we aren't going to have

[android-developers] Re: Is there any changes in crop image activity

2010-03-28 Thread anton.slut...@gmail.com
I had the same problem. The CROP activity worked on 1.6 but not on 2.1. The fix turned out to be an easy one. In 1.6, I defined the activity as Intent intnt = new Intent(com.android.camera.action.CROP); intnt.setClassName(com.android.camera, com.android.camera.CropImage); Here, I'm specifying

Re: [android-developers] Re: create TextView

2010-03-28 Thread Adrian Vintu
You are right Bob, but it's a little bit more complex. You can explain this in two words or write a paragraph. I decided half the info is better than the complete one. You know, a simple question deserves a simple solution. For more info, refer to the documentation :) Anyway, the best solution

Re: [android-developers] How to send at command

2010-03-28 Thread Joaquim Azevedo
You already try use ADB, maybe exist commands you need. If not, you need to connect your phone in modem mode. Some phones can connect both at same time. On Sun, Mar 28, 2010 at 02:02, saru sarucs...@gmail.com wrote: Hey i need to send AT command to modem in android phone. But by searching

[android-developers] Google Maps icons

2010-03-28 Thread oriharel
I want to place markers on the map. I want to use the standard Google Maps icons for markers. how do I use them? I don't want to create my own icons. I'm developing for Android. in the documentation they tell me to create a class that overrides ItemizedOverlayOverlayItem but in the constructor

Re: [android-developers] Google Maps icons

2010-03-28 Thread Mark Murphy
oriharel wrote: I want to place markers on the map. I want to use the standard Google Maps icons for markers. how do I use them? I don't want to create my own icons. I'm developing for Android. Those icons are not available from the Google Maps add-on for Android -- or, at least, they are not

[android-developers] Re: Google Maps icons

2010-03-28 Thread oriharel
Thanks Mark. On Mar 28, 5:27 pm, Mark Murphy mmur...@commonsware.com wrote: oriharel wrote: I want to place markers on the map. I want to use the standard Google Maps icons for markers. how do I use them? I don't want to create my own icons. I'm developing for Android. Those icons are

[android-developers] Re: Google Maps icons

2010-03-28 Thread oriharel
However, isn't it weird that those are available outside of Android (regular use of Google API) but not from the Google-owned Android platform? On Mar 28, 5:33 pm, oriharel ori.ha...@gmail.com wrote: Thanks Mark. On Mar 28, 5:27 pm, Mark Murphy mmur...@commonsware.com wrote: oriharel

[android-developers] The best way to pick file

2010-03-28 Thread Tatyana Ulyanova
Hello, friends! I am developing an application which shows dialog to pick file and than processes it. I used standard way: Intent intentBrowseFiles = new Intent(Intent.ACTION_GET_CONTENT); intentBrowseFiles.setType(*/*);

[android-developers] ImageView: zoom proportionally to width=fill_parent ???

2010-03-28 Thread Marco Alexander Schmitz
hi, I've got a picture 300x98. I want to use an ImageView with width=fill_parent in order to let Android zoom it to 320x105 (portrait) or 480x157 (landscape). I tried every scaleType and adjustViewBounds combination, but didnt get it right :( documentation doesnt help me neither: CENTER

[android-developers] Re: ImageButton onClick or onKeyDown?

2010-03-28 Thread Holger
On Mar 28, 3:02 pm, Paolo brand...@gmail.com wrote: is it possible to use onKeyDown() for an ImageButton instead of onClick() to capture the user's click on this imagebutton? what's the difference? Difference #1: Press (-onKeyDown()), hold a while then release (-onClick()). Difference #2:

[android-developers] compatible screen sizes on droid G1

2010-03-28 Thread FrankD
I have read the documentation on supporting multiple screens but can't seem to figure it out. I mean, i understand that resolution effects it but it just doesn't make sense to me that the droid and the T-Mobile G1 both use the regular layout directory. I developed the app on a droid and got

[android-developers] Extend a button and implement Parcelable

2010-03-28 Thread Kritzli
Hi, I've got a problem with a parcelable ArrayList. I made a custom Button called MyButton and the ArrayList is a generic one. So it only takes MyButton objects. Passing the list from on Activity to another is not the problem. In the receiving Activity the Log says, it has some elements, but if i

[android-developers] Re: Roadmap and JSR's

2010-03-28 Thread Ian
Android supports some JSR's so I would still like to hear from Google if this will be supported. On Mar 26, 3:33 pm, Shane Isbell shane.isb...@gmail.com wrote: One issue with JSRs is they require licensing, which is not so great for the open-source side of things. They also hamper distribution

Re: [android-developers] compatible screen sizes on droid G1

2010-03-28 Thread Mark Murphy
FrankD wrote: I have read the documentation on supporting multiple screens but can't seem to figure it out. I mean, i understand that resolution effects it but it just doesn't make sense to me that the droid and the T-Mobile G1 both use the regular layout directory. All devices can use the

[android-developers] Re: ImageButton onClick or onKeyDown?

2010-03-28 Thread Paolo
ok. and... how to associate this event onKeyDown only to a specific ImageButton in a View? On 28 Mar, 17:28, Holger me-at-goo...@klawitter.de wrote: On Mar 28, 3:02 pm, Paolo brand...@gmail.com wrote: is it possible to use onKeyDown() for an ImageButton instead of onClick() to capture the

Re: [android-developers] Re: Is there any changes in crop image activity

2010-03-28 Thread Dianne Hackborn
Just to be extra super clear on this -- if you are doing stuff that is not in the SDK, you can expect that your app will break at some point on future versions, on different devices, etc. Any case where you are using magic string constants or such, that isn't a reference to a constant in the SDK,

Re: [android-developers] The best way to pick file

2010-03-28 Thread Dianne Hackborn
I just tried this on my nexus one and it works fine -- gallery is one of the options in the list of things to complete the action. Note that when doing this kind of intent, you should wrap it in a chooser as documented in ACTION_GET_CONTENT, so the user can not select a default item for the

Re: [android-developers] Re: stuck in OnTouchEvent OnClikc method. please help

2010-03-28 Thread satish bhoyar
ya u r right thanks for the reply i figured that out thanks again man ... thanks, sat On Sun, Mar 28, 2010 at 6:51 PM, murali raju manutd...@gmail.com wrote: hi satish, i guess there is no need to use both the methods. click = touch down + touch up. so using just ontouch is

[android-developers] Re: Maths behind the Android orientation calculation algorithm

2010-03-28 Thread Bob Kerns
Hardly any theory, and I can't see what you'd analyze with MATLAB. The first thing to realize is that the assumption is that you're not accelerating at the same time. Things get more complex if you include acceleration. Given that assumption, then the three acceleration sensors give you the X,

[android-developers] Re: left scrollbar

2010-03-28 Thread Bob Kerns
Dianne, the OP wants scrollbars on the left because Arabic is written right-to-left. So the reasons for having scrollbars on the right are reversed. I'm not sure that's a good idea, however. I think Arabic users will be encountering scrollbars on the right very often, either because they're

Re: [android-developers] Re: left scrollbar

2010-03-28 Thread Dianne Hackborn
On Sun, Mar 28, 2010 at 1:21 PM, Bob Kerns r...@acm.org wrote: Dianne, the OP wants scrollbars on the left because Arabic is written right-to-left. So the reasons for having scrollbars on the right are reversed. Ah... well, right to left text is not supported by Android, at all, so I think

[android-developers] Taking picture with Camera

2010-03-28 Thread Paolo
I have made an activity to take picture using Camera class and the SurfaceView, everything works good except one little thing. The main view is blocked in landscape to show the camera correctly. I have set the camera's pref, like setPictureSize, setPreviewSize etc... using those supported from

[android-developers] Re: left scrollbar

2010-03-28 Thread Streets Of Boston
Dianne, In the future, is there support planned for right-to-left locales on Android? On Mar 28, 12:37 am, Dianne Hackborn hack...@android.com wrote: But why do you want to put a scroll bar on the left?  Scroll bars on Android are on the right.  Making that different just makes things

[android-developers] Setting new default ringtone without using RingtonePicker?

2010-03-28 Thread HippoMan
I'd like to programmatically set a new default ringtone without using RingtonePicker. In other words, there is a certain ringtone that is already installed on my system, and I want to programmatically set it to be my default ringtone without any human interaction. The reason I want this is

[android-developers] Programmatically setting a new default ringtone without the ringtone picker

2010-03-28 Thread HippoMan
I'd like to set a new default ringtone without using the ringtone picker. In other words, there is a certain ringtone that is already installed on my system, and I want to programmatically set it to be my default ringtone without any human interaction. The reason I want this is because every time

[android-developers] Control a graphic with android buttons

2010-03-28 Thread Bevor
Hello, at the moment I'm not that much familiar with Android and I try to teach it myself. My target is it to control a graphic with android buttons, so at first I designed the layout: ?xml version=1.0 encoding=utf-8? FrameLayout android:id=@+id/FrameLayout01

[android-developers] Re: Can anyone hook me up with an Exchange email account that I could use for testing?

2010-03-28 Thread Flying Coder
Hi Marek, POP IMAP aren't a problem. Its just the proprietary Exchange stuff I'm worried about. Thanks for the suggestion to Google it -- it never occurred to me that companies would offer free Exchange accounts. As a matter of fact, I didn't find any free ones, but did find one that

[android-developers] Sending GPS location over socket

2010-03-28 Thread raqz
Hello, Could you please tell me how do I send the GPS location of the phone to a webserver through a socket. I am able to display the gps location on the screen with a toast widget in locationchanged() function. After that, I try to send the co-ordinates through a socket but the emulator crashes.

Re: [android-developers] Re: left scrollbar

2010-03-28 Thread Romain Guy
Yes. On Sun, Mar 28, 2010 at 2:21 PM, Streets Of Boston flyingdutc...@gmail.com wrote: Dianne, In the future, is there support planned for right-to-left locales on Android? On Mar 28, 12:37 am, Dianne Hackborn hack...@android.com wrote: But why do you want to put a scroll bar on the left?  

[android-developers] Re: Sending GPS location over socket

2010-03-28 Thread JP
Connecting to a web server... Unless something unusual is going on, that would be rather through HTTP requests, not through bare bones socket-based communications. On Mar 28, 3:36 pm, raqz abdulraqee...@gmail.com wrote: Hello, Could you please tell me how do I send the GPS location of the

[android-developers] Re: left scrollbar

2010-03-28 Thread Streets Of Boston
Good answer! :-) On Mar 28, 7:36 pm, Romain Guy romain...@android.com wrote: Yes. On Sun, Mar 28, 2010 at 2:21 PM, Streets Of Boston flyingdutc...@gmail.com wrote: Dianne, In the future, is there support planned for right-to-left locales on Android? On Mar 28, 12:37 am, Dianne

Re: [android-developers] Re: API for my map

2010-03-28 Thread monica
Google star is that user mark a place on google map by click the star behind of the name, and it will appear in your my map. You can have a try, then you will know what I mean it. Google map data API can create, edit, get my maps. 2010/3/28 janaki janakime...@gmail.com Hey monica were

[android-developers] Android view refresh rate (FPS)

2010-03-28 Thread Gabriel Simões
Hello, I´d like to get some information about Android´s maximum refresh rate when updating a view. In this specific case I´m trying to update the value displayed on a TextView on my main activity. The algorithm tries to syncronize the audio streams played using AudioTrack with updates on the

Re: [android-developers] Android view refresh rate (FPS)

2010-03-28 Thread Romain Guy
There's no refresh limit (except the one set by the display, which is usually 50 or 60 fps) in the Views system nor in AsyncTask. You are probably running into performance issues. 2010/3/28 Gabriel Simões gsim...@gmail.com: Hello, I´d like to get some information about Android´s maximum

[android-developers] Re: Sending GPS location over socket

2010-03-28 Thread raqz
could you please tell me why it aint possible through sockets? or is there any other way to do that? On Mar 28, 7:41 pm, JP joachim.pfeif...@gmail.com wrote: Connecting to a web server... Unless something unusual is going on, that would be rather through HTTP requests, not through bare bones

[android-developers] Re: cannot install radio update

2010-03-28 Thread Nate
Fantastic, thank you! It appears the behavior I see happens because the radio image for 1.5 is the same as 1.6: http://groups.google.com/group/Android-DevPhone-Updating/browse_thread/thread/38526696b1559b28/d8033d69f8374dbc Further digging finds that my phone lost its APN settings. Restored those

[android-developers] How to prevent long URL from breaking in generated email?

2010-03-28 Thread DonFrench
I am generating an email in my app in which I include a long URL. The entire URL appears in the email but the clickable link portion of it consists of only the first 90 characters. Why does this happen and how can I prevent it? -- You received this message because you are subscribed to the

[android-developers] Re: popup menu on gmail

2010-03-28 Thread patbenatar
AFAIK, there is no standard widget for this UI feature.. I imagine you could build one yourself rather easily, however. Hide the view element by default. Listen for selections on the checkboxes, when one is made increment a counter and setVisibility(View.VISIBLE) on your popup. When a box is

[android-developers] Re: Search Bar

2010-03-28 Thread Marco Alanen
Did you ever manage to solve this? I'm also interested in making a search bar which looks like QuickSearch. On 18 mar, 00:38, Paolo brand...@gmail.com wrote: I'd like to make asearchbaras in the youtube widget. It seems a layout with a edittext view and two imagebutton, but i'm not able to

[android-developers] Re: Android view refresh rate (FPS)

2010-03-28 Thread Gabriel Simões
Thanks Roman... Trying to optimize my code without using the ndk right now. If I don´t find a way out, then I get to this next step. On 28 mar, 23:19, Romain Guy romain...@android.com wrote: There's no refresh limit (except the one set by the display, which is usually 50 or 60 fps) in the

[android-developers] Re: Android view refresh rate (FPS)

2010-03-28 Thread Streets Of Boston
Maybe you can code your app differently. Instead of publishing your progress by your background thread (pushing progress info), your main gui-thread could instead query for the updates (pulling progress info). Save the progress of your AudioTrack's audio stream into a variable of the background

[android-developers] Re: DateFormat of android for AM/PM is not working properly with android 2.0

2010-03-28 Thread yidongsoft
I found it, too. I looked into android code and found it's a bug. There tagged: // FIXME On Mar 8, 6:44 pm, Ritesh Deshmukh mit2rit...@gmail.com wrote: Hi, I have worked on android 1.5 and 2.0. Currently iamdoing Migration of Applications available in 1.5 to android 2.0. During the

[android-developers] Re: Android view refresh rate (FPS)

2010-03-28 Thread Gabriel Simões
This would be a solution if I didn´t have to syncronize the UI updates with the audio playback. Unfortunately in this case I have to refresh the UI according to the audio processed and in some cases 7 times per second. Right now I barely can handle 5. On 29 mar, 00:47, Streets Of Boston

[android-developers] Re: How to send at command

2010-03-28 Thread saru
probably you misunderstood my question. I m interested to send AT command by programming in android. I m searching some API to do this in android. On Mar 28, 9:07 pm, Joaquim Azevedo joaxazev...@gmail.com wrote: You already try use ADB, maybe exist commands you need. If not, you need to

[android-developers] Re: Sending GPS location over socket

2010-03-28 Thread JP
Don't get me wrong, it is *possible* to implement this on the blank metal socket library. I've learned implementing parallel servers with the socket library before HTTP was even around... But you'd have to reinvent the wheel and implement the HTTP protocol that your web server in all likelihood

[android-developers] How to show adds at bottom of an activity(with custom view)?

2010-03-28 Thread vikas kumar
Hi all, I need show ads in my application. Ads in my custom view must move from bottom of screen with animation. How can I add my view in bottom of screen? Please help to find out the solution.. Thnx... -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Kernel Messages

2010-03-28 Thread perumal316
Hi biAji, How did you use Runtime.getRuntime().exec(dmesg) to read out the messages? I only want to read the latest messsages in dmesg and not from the boot time. Is it possible? How do you read from inputstream? Sorry I can't figure out how you used Runtime.getRuntime().exec(dmesg) and

[android-developers] Connecting to desktop application and access data

2010-03-28 Thread mrb
hi, I am a begginer to android n i want to know how to connect to a desktop application and store,accessand update data from my android app.. Wat should i use to build my desktop app? (jsp/grails/php) ? also how to connect via internet or wifi ..any sample programs in this regard would be

[android-developers] Beginning Development

2010-03-28 Thread Russell
Hi guys, I always wanted to be apart of the Open-Source community and I am...Sadly I havent contributed as much as id like. So id like to start by developing apps for the Android Mobile OS. What are the programming languages that need to be known to begin developing apps? I went to school for

[android-developers] Re: Image Editing

2010-03-28 Thread esmetaman
It is a nice option. Did you use? http://github.com/billmccord/OpenCV-Android On Mar 2, 11:57 am, ReyLith jesus...@gmail.com wrote: Hi! I'am starting with Android SDK. I want to develop a image editing software but I don't find any computer vision library to Android SDK. I see that I can

[android-developers] how to set ProgressBar in white background

2010-03-28 Thread NalrA
hi ,all my question is , how to make the ProgressBar with an inverse color so it looks clearly in a white background. my xml code is here: ProgressBar android:id=@+id/main_progressbar style=?android:attr/progressBarStyleLarge

[android-developers] Re: Get unique ID of phone - Settings.Secure.ANDROID_ID not working on N1?

2010-03-28 Thread Anna PS
Yes, I really wanted to avoid TelephonyManager because it has particularly scary-looking permissions. And indeed I don't need to know any identifying info about the phone or the user: I just need an easy way to distinguish one phone from another (so that I can ban problem users if necessary).

Re: [android-developers] Re: Nexus one

2010-03-28 Thread Kaustubh Padegaonkar
haha, nice one. i hope you are not serious. On Sat, Mar 27, 2010 at 12:22 AM, JP joachim.pfeif...@gmail.com wrote: Uhmm nope, that title actually goes to the Nokia 6310i. On Mar 26, 2:05 pm, Ken H hunt1...@gmail.com wrote: The greatest phone ever. On Mar 26, 11:20 am, ernie

[android-developers] this jerseys is replace or no

2010-03-28 Thread jerseysunion
hello i look this web www.jerseysunion.com is sell sport jerseys. accept paypal, free shipping cost 38 usd this web i think can truest it, but i don't know the product is good? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] this jerseys is replace or no

2010-03-28 Thread jerseysunion
hello i look this web www.jerseysunion.com is sell sport jerseys. accept paypal, free shipping cost 38 usd this web i think can truest it, but i don't know the product is good? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Where can I report UI bugs with android 2.1 (nexus)

2010-03-28 Thread Adolfo
Where do we get these updates if we purchased the nexus 1 last week? On Mar 26, 3:52 pm, Romain Guy romain...@android.com wrote: 1) Home screen/Navigation dots: While on the default home screen, It sometimes shows one dot on the left, and three dots on the right. (or vice versa). When the

[android-developers] Media Player bad behavior

2010-03-28 Thread Philip
My phone is Droid, version 2.01. I have a clip 1.mp4, 23456 bytes of data on my desktop. I transfer to SD card, woking fine. I UPLOAD to web server, then use PHP to download it to my phone. It's working fine and downloads exactly 23456 bytes, same filename. It's no longer playable. I then,

Re: [android-developers] Re: cannot install radio update

2010-03-28 Thread Kaustubh Padegaonkar
try xda forums. On Sat, Mar 27, 2010 at 2:59 AM, Nate nathan.sw...@gmail.com wrote: Maybe there is somewhere else I can ask? On Mar 25, 12:57 am, Nate nathan.sw...@gmail.com wrote: No one can offer any suggestions? On Mar 24, 12:32 am, Nate nathan.sw...@gmail.com wrote: I have a

[android-developers] Anyone has processed an image with opencv library?

2010-03-28 Thread esmetaman
Hi, I compiled the opencv library: http://github.com/billmccord/OpenCV-Android But I don't know how to process a simple image with it. Anyone has done something similar? Cheers -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Which version of Java is used in Android?

2010-03-28 Thread Poldie
I've read that Android apps use Java syntax, and not Java per se, presumably because of the Davlik VM. I'm a Java noob, so I may not be making sense here, but don't different versions of Java support different things - for example, generics in v5, and annotations in v6?If you're using

[android-developers] Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! ===== HTTP://loveshopping.us ====

2010-03-28 Thread vipshopper...@hotmail.com
Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! = HTTP://loveshopping.us Air jordan(1-24)shoes $33 UGG BOOT $50 Nike shox(R4,NZ,OZ,TL1,TL2,TL3) $35 Handbags(Coach lv fendi dg) $35 Tshirts (Polo ,ed hardy,lacoste) $16 Jean(True

Re: [android-developers] Adding iconified rows to existing ArrayAdapter

2010-03-28 Thread Bluee Del
*$$$ REVOLUTIONARY, UNIQUE AND REALISTIC PAY PLAN!$$$* * * [image: ForcedCashGifts - TURN $10 INTO $944350 THIS YEAR!]http://forcedcashgifts.com/?ref=blueedel * * * Turn $10 into $944350 This Year!* * PEOPLE HELPING PEOPLE!!* *

[android-developers] Background processes

2010-03-28 Thread tolemaC
Hi guys, I'm having several problems to run task in background that returns objects, I use separate threads that send messages to a Handler when tasks starts and finishes, I use a Static Class to run these tasks associating each task to an ID I can know if these tasks are running or not before

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-28 Thread Maps.Huge.Info (Maps API Guru)
Anyone noticed that nobody yet has received a Droid? I postulate that at this point, anyone who has not received a unit or at least confirmation from FedEx that they are in the delivery pipeline will receive a Droid as it's coming from some place other than Brighthouse. Of course, I could be

[android-developers] Error in the market: Upload a valid APK.

2010-03-28 Thread mzehrer
I constantly get the error Upload a valid APK. when I try to upload my application to the Android market. I followed http://developer.android.com/intl/de/guide/publishing/preparing.html and verified the signature of my apk with jarsigner. What does this error want tell me? Is there some kind of

[android-developers] LGPL on Android

2010-03-28 Thread Alex Cohn
Hi, I have a question regarding the licensing. LGPL, as I understand it, requires an Application to use at run time a copy of the Library already present on the user's computer system and to provide Installation instructions that enable the end user to choose a modified version of the Library.

[android-developers] Creating Proxy Server

2010-03-28 Thread Scott
Looking for help with creating an http proxy server via Android. It's a bit difficult to ask this question with examples, etc, because networking isn't familiar to me, which means I don't quite know how to get started, so I'll try to explain: I'm attempting to play an audio stream using Android's

[android-developers] onRelease for ListView-Adapter

2010-03-28 Thread lukas
Hello everyone, I'm programming my first Android application and I've stumbled over a little problem. I've created my own adapter (extends BaseAdapter) for my ListView and in my public View getView(...) I have the following code: view.setOnClickListener(new View.OnClickListener() {

[android-developers] Re: (TabActivity) How to switch tab from within a sub activity

2010-03-28 Thread m_cologne
i also tried your demo code... it works great... my aim was to navigate to an existing tab via a button with the Tab Layout demo from the sdk it doesn't work because of the subclasses (or new activities). with your code it works. but what about ColletJb's question. is it possible to have these

[android-developers] How can I return from BluetoothServerSocket.accept()?

2010-03-28 Thread Reason
Hi all, I have encountered a problem when I am doing Bluetooth programming on Android 2.1. I call BluetoothServerSocket.accept() in a Thread for accepting income connection and it works fine on accepting incoming connections, but the problem is that I have no way to stop the thread when I want to

[android-developers] adb shell command error

2010-03-28 Thread aBiNg
Hi, all. I have trouble with adb shell command. When I run 'adb shell install apkname.apk', my android phone show up a root prompt(#) character directly, and does nothing, as if 'adb shell' command executed. That's very strange. I just flashed my custom ROM on Tattoo, whick rocks without any

[android-developers] media player source code

2010-03-28 Thread jana janarthanan
Dear sir Good morning to all. please send the media player source code to me. ** -- 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

[android-developers] how to Log in to a website and retrieve messages and other information?

2010-03-28 Thread jProg
Hi, I am a new developer to the android platform and I want to know.. is there any way that I can build an app that log in to a particular website, and then retrieve the information of that account..such as messages,images...etc --if you have a useful link I will appreciate it..;) thank you in

[android-developers] Re: (TabActivity) How to switch tab from within a sub activity

2010-03-28 Thread m_cologne
i also tried your demo code... it works great... my aim was to navigate to an existing tab via a button with the Tab Layout demo from the sdk it doesn't work because of the subclasses (or new activities). with your code it works. but what about ColletJb's question. is it possible to have these

[android-developers] Maven Integration for Android Development Tools 0.2.3 Released

2010-03-28 Thread Ricardo Gladwell
Hi All I just released version 0.2.3 of Maven Integration for Android Development Tools (m2eclipse-android-integration): an Eclipse plug-in adding integration support for M2Eclipse with the Android Developer Tools (ADT) and the Maven Android Plugin. With the m2eclipse-android-integration plug-in

[android-developers] webservice

2010-03-28 Thread santhosh
how to call webservice -- 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

[android-developers] Re: Can an app upgrade itself?

2010-03-28 Thread Bob Kerns
Given that we can run ITS under SIMH on our phones, we should be able to run the original, pre-FSF, TECO-based Emacs, which should solve the problem. I'll just need to locate a snapshot of the TECO; and EMACS; directories. On Mar 27, 1:43 pm, Mark Murphy mmur...@commonsware.com wrote: Wayne

[android-developers] Re: (TabActivity) How to switch tab from within a sub activity

2010-03-28 Thread m_cologne
i also tried your demo code... it works great... my aim was to navigate to an existing tab via a button with the Tab Layout demo from the sdk it doesn't work because of the subclasses (or new activities). with your code it works. but what about ColletJb's question. is it possible to have these

Re: [android-developers] How to upgrade my Android dev Phone 1 to 2.x release?

2010-03-28 Thread russ . a . morgan
Yes I believe you can. Sent from my BlackBerry® device from Digicel -Original Message- From: Joe droidvi...@gmail.com Date: Sat, 27 Mar 2010 13:19:01 To: Android Developersandroid-developers@googlegroups.com Subject: [android-developers] How to upgrade my Android dev Phone 1 to 2.x

[android-developers] Re: (TabActivity) How to switch tab from within a sub activity

2010-03-28 Thread m_cologne
i also tried your demo code... it works great... my aim was to navigate to an existing tab via a button with the Tab Layout demo from the sdk it doesn't work because of the subclasses (or new activities). with your code it works. but what about ColletJb's question. is it possible to have these

[android-developers] Re: create TextView

2010-03-28 Thread Paul Turchenko
Even thought you are in onClickListener anonymous class, you can always get your context (instance of activity via your_activity_class_name.this) cb.setOnClickListener(new OnClickListener() { TableLayouttl; @Override public void onClick(View v)

[android-developers] Help In graduation Project

2010-03-28 Thread Ahmad Al-Masry
Hello Android Developers community; hope this find you well and I am pleased to be a member in such a group. I am a fourth year Computer systems engineering student, and I am interested to make my graduation project in Mobile OS field, and android has the best community support that will help us

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-28 Thread Jason
Was the shipper for the DROID someone other than brightpoint? On Mar 27, 12:23 pm, niko20 nikolatesl...@yahoo.com wrote: Damnit, got a DROID today in Madison WIum I already have a DROID. I doubt anyone is ever gonna wanna trade a Nexus one for this..lol - On Mar 27, 11:21 am, Greg

[android-developers] Re: (TabActivity) How to switch tab from within a sub activity

2010-03-28 Thread m_cologne
i also tried your demo code... it works great... my aim was to navigate to an existing tab via a button with the Tab Layout demo from the sdk it doesn't work because of the subclasses (or new activities). with your code it works. but what about ColletJb's question. is it possible to have these

  1   2   >