[android-developers] Re: Developer Challenge 2

2009-03-09 Thread Sheenmue
Yeah, it would be appreciated even it there isn't a date, just to know if it has been cancelled or not. On 2 mar, 18:20, Federico C fdxx...@gmail.com wrote: hi, some news from ADC 2? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: com.google.wireless.gdata

2009-03-09 Thread ifuller1
Hi James, do you have the source for your modified gdatarequest and abstract entity. I'd like to go a tried and tested route or just parse the RSS manually. Am I right in thinking you've successfully connected to a google service? I'm pretty new to Java (c and as3 background) so I hope the

[android-developers] emulator on linux in offline mode !!

2009-03-09 Thread dan raaka
The android emulator on Linux doesn't seem to get launched after Runs as-Android Application. The adb is still still running s...@android-desktop:~/cupcake$ ps -A | grep adb 5647 pts/000:01:02 adb s...@android-desktop:~/cupcake$ adb devices List of devices attached emulator-5554offline

[android-developers] toolchain to build kernel

2009-03-09 Thread Abhijeet
Hello All, I am trying to build a kernel image to run in the emulator and I am following http://honeypod.blogspot.com/2007/12/compile-android-kernel-from-source.html I have downloaded the android source (http://source.android.com/ download) and it has 2 toolchains arm-eabi-4.3.1 and

[android-developers] Scroller widget in a WebView

2009-03-09 Thread oyobyaw
Hello, I am trying to implement a custom WebView and override OnTouchEvent() so that a tap near the bottom of the screen would result in the view smoothly scrolling down one ‘page’ (and a tap at the top would result in a smooth upward scroll). I’ve been looking at the Scroller Widget to do the

[android-developers] Ubuntu Compile/Run Error - Netbeans

2009-03-09 Thread deewiles
I am using Netbeans 6.5 on 8.04. $JAVA_HOME = /usr/lib/jvm/java-1.5.0- sun. When I run the HelloWorld Android application I get the following error: init: deps-jar: Compiling 1 source file to /home/cwiles/NetBeansProjects/ AndroidApplication1/build/classes compile: Created dir:

[android-developers] maps probelm

2009-03-09 Thread karthik
Hi, I followed the procedure for signing up for Map api key as given in the google documentation and i got the api key.Then i put the api key in Mapview , i put the uses library tag in manifest file and INTERNET and ACCESS.COARSE.LCATION permission also in the manifest file but my map

[android-developers] open gl es2.0

2009-03-09 Thread meghal shah
Is Android going to support openGL ES 2.0 soon ? The support of openGL ES 1.0 is really good , but when can we expect it support 2.0 version ? As far as i know its not supported on any other platform at the moment. Thanks, Meghal Shah --~--~-~--~~~---~--~~ You

[android-developers] Application developer wanted for contract work

2009-03-09 Thread AndroidDev
We am looking for a expert Android developer for Android application development. You must have documented experience in following areas: - UI development - file handling - multimedia decoding - authentication We already have our application running on other devices and can provide you with

[android-developers] accessing information from browser, in an application

2009-03-09 Thread Shani
I am editing the pre-existing zxing Barcode Reader code so it can voice itself for blind users. I know how to use Text to speech in the app. Right now I am at the step where after the barcode is read, it then opens a webpage in the android browser - it sends the product number to google. What i

[android-developers] Re: Make a button from an image (PNG)

2009-03-09 Thread xspotlivin
Ok, thanks for the replies. I'm going to describe what I'm trying to do better, because I'm still unsure of the solution, and I could really use some help. I have a clock application (how can you attache an image). For each shaded region I want to place a button on top of it (a different button

[android-developers] Re: Audio Volume

2009-03-09 Thread LukeH
I ended up handling the volume button presses myself. The solution I used is documented here: http://stackoverflow.com/questions/628659/how-can-i-manage-audio-volumes-sanely-in-my-android-app On Mar 9, 7:39 pm, strazzere str...@gmail.com wrote: Then I'd recommend looking

[android-developers] Re: Help using autocomplete in my database.....

2009-03-09 Thread aljo
i already saw that thread but i still can't understand some of the codes... i don't know how to incorporate my database in that code... how can i import my db... public ContactListAdapter(Context context, Cursor c) { super(context, c); Log.d(exp,

[android-developers] error on MediaPlayer

2009-03-09 Thread bely
Hi all, I am writing a player for stream video, here is the player's code (just copy from apidemo): package com.android.playerdemo; import com.android.playerdemo.R; import android.app.Activity; import android.graphics.PixelFormat; import android.media.AudioManager; import

[android-developers] Re: Android Testing with TMobile G1

2009-03-09 Thread Justin Allen Jaynes
I have connected a G1 to my development laptop and used eclipse just as I would when using the emulator to automatically deploy apk's and run and test them, and have the logcat readout looks just as per with the emulator. There is at least one difference which I noticed. You do NOT have root

[android-developers] Re: Accessing the internet.

2009-03-09 Thread dillirao malipeddi
public String get_DAtaFromWeb(String url_toconnect)//throws Exception { int connection_Timeout = 1;// 10sec HttpParams my_httpParams = new BasicHttpParams();; HttpConnectionParams.setConnectionTimeout(my_httpParams,connection_Timeout);

[android-developers] How to make MotionEvent Stable

2009-03-09 Thread Nithin
Hi, I am using motionEvent by X and Y co-ordinates, but when the skin changes like from Landscape to Portrait, its not working. So is there any way to make it Stable, like it has to work in all skin ? Thanks Nithin --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: maps probelm

2009-03-09 Thread veer reef
On Mon, Mar 9, 2009 at 9:15 PM, karthik mknarayan1...@gmail.com wrote: Hi Karthik , Hi, I followed the procedure for signing up for Map api key as given in the google documentation and i got the api key.Then i put the api key in Mapview , i put the uses library tag in manifest

[android-developers] 24MB in RAW folder -- when running showing INSTALL_FAILED_INSUFFICIENT_STORAGE

2009-03-09 Thread Nithin
Hi, We have 10 mp4 files, total size is about 24MB. We put all in RAW folder and tried to run, but its showing insufficient storage. What is the solution for this, please guide me in this ?? Whether we can put these files in SDCard or anywhere else ?? Thanks Nithin

[android-developers] GregorianCalendar.getOffset() returning 0

2009-03-09 Thread Farhan
Hello, My timezone is C.S.T. in U.S., so it has a raw offset of -6 from GMT and as of today it should be -5 as DST has started. But both the getRawOffset() and getOffset() methods are returning 0. Can anyone tell me why this is happening and how it can be corrected? Thanks.

[android-developers] Re: how to implement scrolling text?

2009-03-09 Thread soniya
I am talking about this API Demo: API Demos - Text - Marquee I tried selecting the textbut it does not move...not even a millimeter :( Am I missing something?? On Mar 4, 9:28 pm, Romain Guy romain...@google.com wrote: The marquee starts when a TextView gets focused/selected. It is used

[android-developers] Re: change rild privilege

2009-03-09 Thread srinivas
Hi, id did change these options, the code in rild.c under hardware/ril/ rild/ has a fucntion switchuser(). The code in thie switches the uid of RILD to radio, but if i un comment this, ril is not working, its not even getting initialized. Thanks Srinivas On Mar 6, 5:55 pm, Mads Kristiansen

[android-developers] Re: Does this group need renaming?

2009-03-09 Thread Evil Mushroom Lord
A lot of android developers are from very small shops (1-5 people), no? For many Android developers handling the market is a big part of their process. Although having said that, I wouldn't be opposed to a separate group for market/business specific android topics. Until such is created I don't

[android-developers] Turning GPS ON/OFF

2009-03-09 Thread Rudi
Anybody nows a code/sample how to turn ON/OFF the GPS location provider *corretcly*. I have found the System.Settings provider and can set / change the corresponding setting, but it seems that the rest of the system does not recgnize the change. Is there a method to be called to notify the system

[android-developers] Accessing raw resource files with the filename as a String

2009-03-09 Thread Hayden
Is there a way to access a raw resource file by having its filename in a String? According Google's documentation, I need to use Resources.openRawResource (R.raw.myDataFile) This requires that I have the file name at compile time, but what if I have 20 or so files and want to do something to

[android-developers] how to config APN in android?

2009-03-09 Thread Gollum [www.aidiji.com]
I mean, which API can I turn to ?thank you. -- www.aidiji.com - Andoroid Developing Application Forum --~--~-~--~~~---~--~~ 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] AlertDialog Question

2009-03-09 Thread SimV01
Is there a way to change the textsize used in AlertDialog.Builder - setMultiChoiceItems(validRatesCursor, show, country, new DialogInterface.OnMultiChoiceClickListener()... Some of my country fields have rather long names and they are getting cut off (with a ... on the end). Can the textsize be

[android-developers] Help: ADT and Eclipse integration problem (I think)

2009-03-09 Thread neckar
Hello all, I've installed the android SDK, Eclipse and the ADT plugin (got all the latest versions from the official websites: eclipse 3.4.2 from which I installed the ADT plugin and SDK 1.1_r1 from google). I've set the SDK in eclipse and also added it to the PATH environment variable (I'm

[android-developers] Android and Epocrates

2009-03-09 Thread Alex Tsai
http://www.petitionspot.com/petitions/androidepocrates I started a petition to show the developers at epocrates that there is a demand for it on the Android platform. I dont know if this is an appropriate place to post this, but one of the reasons that I have yet to get a g1, is due to the fact

[android-developers] Performance of multiple threads.

2009-03-09 Thread kbeal10
I'm currently designing a game that will be displaying several dice. I would like to know the wisest course of action. The dice will extend View (or SurfaceView), so that each will be able to be touched, etc. My question is should I: A.) Spawn one child thread to draw all of the dice (up to 6).

[android-developers] Activating G1 without a SIM

2009-03-09 Thread Sierra Bravo
Hi Apologies if it's the wrong forum for this question. I'm in India, and have brought over an unlocked G1 phone from the US that I'd like to activate without a SIM card. I've added the necessary entries in the android rules file /etc/udev/rules.d/ (I'm using Ubuntu Hardy). Now the G1 is

[android-developers] Loading images from SDCard

2009-03-09 Thread NeoRiddle
Hi! I want to make a image gallery, I want to scan or have a way to get pics from the external storage (sdcard) and have them pointed with a Cursor object. I have read some examples that suggests to do this: Uri uri = MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI; String[] projection = {

[android-developers] Reconnecting to a service

2009-03-09 Thread csyperski
This may be a easy question but I have a application that runs a service using: startService() The service works great but my questions is how do I reconnect to this service if I close my front end app by clicking the home button, then re launch the app? Thanks to anyone that can help.

[android-developers] App Not being found in the Market

2009-03-09 Thread endo79...@gmail.com
I have a number of previous users and some new potential ones who are saying they can't find our app in the market place even though have provisioned it too all current and future locations and the app is also appearing on the android marketplace website. Feel like I am missing out on potential

[android-developers] Re: MenuItems and Typefaces

2009-03-09 Thread x2andr...@gmail.com
you can use setTypeface anywhere, inside the main class, please refer to my app: Arabic keyboard in the market, but how did you use Locale??? there is no Arabic Locale right now, did it make the letters connect? thanks x2android.blogspot.com On Feb 23, 2:29 am, Christian Martín Reinhold

[android-developers] G1 and Mac

2009-03-09 Thread radiro
My G1 is not visible to my MacBook, e.g. $ adb devices returns no device at all (USB-Debugging is enabled). The adb kill- server command doesn't help. Note that the G1 is visible when I plug it to my Windows Vista machine. Any Mac-User with a solution for this? Ralph

[android-developers] ADT Layout Editor

2009-03-09 Thread Susan
1. Can I call ADT Layout Editor in my java source file , not by XML file open with menu ? 2. When I click add button in the outline view of ADT Layout Editor , it will show such a list of UI components as AbsoluteLayout AnalogClock AutoCompleteTextView Button .

[android-developers] Doing a post url

2009-03-09 Thread vir
Hello people, I have a problem while doing a post to a url. here is my scenario : I have a login page e.g http://localhost/login.php and i need to login with the username and password from my android application. I am using org.apache to do a post. I am being able to post the variables to the

[android-developers] execption while loadling providers

2009-03-09 Thread Nio
hi all, When I try to start Location Manager, it throws exceptiones I post here: I/systemserver ( 44): starting Location Manager. D/LocationManagerService (44): constructed LocationManager Service E/LocationManagerService(44): Exception Loading Providers E/LocationManagerService(44):

[android-developers] how can I create a 'View' object from a xml file?

2009-03-09 Thread Lucius Fox
Hi, In the Tab2 of TabActivity in the APIDemo example, it has this method to create a View object for each tab: public View createTabContent(String tag) { final TextView tv = new TextView(this); tv.setText(Content for tab with tag + tag); return tv; } Can you please

[android-developers] Re: Performance of multiple threads.

2009-03-09 Thread Romain Guy
Views (except SurfaceView's surface) can NOT be used from background threads. Besides, it would not help at all. On Sun, Mar 8, 2009 at 8:38 PM, kbeal10 kbea...@gmail.com wrote: I'm currently designing a game that will be displaying several dice. I would like to know the wisest course of

[android-developers] MediaRecorder reset() runtime exception

2009-03-09 Thread aby
Hi, There are always runtime exceptions about reset() method when I tried to finish a audio record operation and start to record new one. The procedure in my code as follows: MediaRecorder mRecorder = new MediaRecorder(); //begin to record mRecorder.prepare(); mRecorder.start();

[android-developers] Re: Performance of multiple threads.

2009-03-09 Thread Stoyan Damov
U, I don't want to sound insulting in anyway but being a complete newbie in game programming I can *assure* you you're about to do something fundamentally wrong. Your game only needs 2 threads - the UI (main) thread, and a secondary which runs your game loop. If you are a newbie as well,

[android-developers] Webview and language support

2009-03-09 Thread sagar.indianic
I have a local html file encoded in utf 8. It has some fonts in urdu language. I want to display those character. But it seems that webview is not displaying them..it displays squares instead of text..ne idea? Thanks.. Sagar --~--~-~--~~~---~--~~ You

[android-developers] How to pass a class reference as a parameter to an activity?

2009-03-09 Thread Zhiping Zeng
HI, all, I want to pass a class reference to an activity, and then the activity will construct the view according to the content of the class. How could I implement this function? thanks. -- Zhiping --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: permission denied error

2009-03-09 Thread luodaliang
I try to open a port for my nmea data transfer, but it also tells me Permission denied. Anyone any suggestions? On 2月27日, 上午5时27分, bhavani.mat...@gmail.com bhavani.mat...@gmail.com wrote: Hi, While Android is booting, I am gettingpermissiondeniederror from an application. Here is a snip

[android-developers] Change CharSet

2009-03-09 Thread Mr.No
Hello, how i can change the charset for my app.? I wonna use ISO-8859-1 for all Input! rgds Mr.No --~--~-~--~~~---~--~~ 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: How to pass a class reference as a parameter to an activity?

2009-03-09 Thread Miguel Paraz
On Mar 9, 4:52 pm, Zhiping Zeng clipse.z...@gmail.com wrote: I want to pass a class reference to an activity, and then the activity will construct the view according to the content of the class. Hi, There's no way to store references in an Intent because it may be passed to other virtual

[android-developers] Re: Turning GPS ON/OFF

2009-03-09 Thread Kevin AN
to maxim yukin' site On Mar 9, 4:27 am, Rudi rudolf.hor...@gmail.com wrote: Anybody nows a code/sample how to turn ON/OFF the GPS location provider *corretcly*. I have found the System.Settings provider and can set / change the corresponding setting, but it seems that the rest of the system

[android-developers] Re: String to HTML String

2009-03-09 Thread Atxe
Sorry, when I wrote the post I was sleepy. The class is this: http://developer.android.com/reference/java/net/URLEncoder.html On Mar 9, 12:10 am, Atxe albert.hernan...@gmail.com wrote: Hi, I'm new in this newsgroup :) and I'm writing my thesis about Android. I'm developing an app that

[android-developers] Re: Reconnecting to a service

2009-03-09 Thread Kevin AN
you don't need to reconnect. service is always running, you can communicate with it through static variables, or you can Stop it via StopService() On Mar 8, 11:03 pm, csyperski csyper...@gmail.com wrote: This may be a easy question but I have a application that runs a service using:

[android-developers] https://dl-ssl.google.com/android/eclipse/ not reachable

2009-03-09 Thread Andreas Frey
Hello, I wanted to install the ADT, but using the provided URL for the Eclipse Update Site https://dl-ssl.google.com/android/eclipse/; did not work. Trying the URL in the browser resulted in a 404 message. Is there a new update-site location for the ADT Plugin? -- Not Found The requested URL

[android-developers] Re: Adding features to email client

2009-03-09 Thread Miguel Paraz
On Mar 6, 6:39 am, My3 maithri...@gmail.com wrote: I just wanted to know,whether is it possible to Add extra menu items to Standard email client? I know that we can use the email client to compose/forward mails, as well as we can access the content. Was just wondering if we can add extra

[android-developers] Re: Adding features to email client

2009-03-09 Thread Eric Chan
you can modified the source of android and rebuild system image, I had done to email. Best Regards Eric Chan On Mon, Mar 9, 2009 at 6:09 PM, Miguel Paraz mpa...@gmail.com wrote: On Mar 6, 6:39 am, My3 maithri...@gmail.com wrote: I just wanted to know,whether is it possible to Add extra

[android-developers] Re: https://dl-ssl.google.com/android/eclipse/ not reachable

2009-03-09 Thread Stoyan Damov
https://dl-ssl.google.com/android/eclipse/site.xml Search the lists before asking ;) On Mon, Mar 9, 2009 at 12:09 PM, Andreas Frey a-f...@gmx.de wrote: Hello, I wanted to install the ADT, but using the provided URL for the Eclipse Update Site https://dl-ssl.google.com/android/eclipse/; did

[android-developers] Re: Customers on metered data plans

2009-03-09 Thread Tote
Duh, I thought we (i.e. developers with several years of mobile sw development behind) could already get rid of this problem, sit back and rely on that 1: Android devices will all be sold with a binding contract with an operator (not as if it was always good) 2: that contract had an unlimited

[android-developers] Re: Customers on metered data plans

2009-03-09 Thread Al Sutton
The moment unlock codes started doing the rounds the idea of being bound to an unlimited data contract went out the window. I, for one, have periods of time when my Android phone isn't using my T-Mobile SIM mainly because of reception problems where I live. My other sim does have a data

[android-developers] CupCake download stats

2009-03-09 Thread Al Sutton
We've started breaking down the download stats at AndAppStore by android version and device and it looks like around 10% of downloads are going to devices running Cup Cake. I was wondering if there was any chance of a CupCake SDK being released as a beta to allow developers to do some testing

[android-developers] Android Programming courses

2009-03-09 Thread dushyEDU
Hi Everone, If you're interested in learning how to develop top class games and applications for the iPhone, HTC Touch (Android), Instinct, WinMobile, or any other mobile device or platforms - then you should definitely have a look at what they offer...http://EDUmobile.org Register today and

[android-developers] Why all mails were turned to unread?

2009-03-09 Thread yukinoba
Does anyone ever notice that the mail client (POP3) on Android will turn all the mails' status from read into unread after a Force Close event happened? I found this when I survey whether Android could open a meeting request message. When I opened the meeting.ics attachment which includes the

[android-developers] Re: Android Programming courses

2009-03-09 Thread Stoyan Damov
Who's Everone? :P On Mon, Mar 9, 2009 at 1:57 PM, dushyEDU dushyant.edumob...@gmail.com wrote: Hi Everone, If you're interested in learning how to develop top class games and applications for the iPhone, HTC Touch (Android), Instinct, WinMobile, or any other mobile device or platforms -

[android-developers] Re: How to have different types of view in ListActivity/BaseAdapter

2009-03-09 Thread hc
so that means if I wish to make a listview of conversation, with some chatbubbles on the right and some on the left, android does not provide support to optimize its display because it expects predictable types for each row? On Feb 23, 2:02 am, Mark Murphy mmur...@commonsware.com wrote: hc

[android-developers] Re: javax.mail.internet.InternetAddress cannot be found?

2009-03-09 Thread Noam
bump On Mar 8, 7:12 pm, Noam noam.ha...@gmail.com wrote: Hello everyone, I am using Eclipse to develop and application for the android platform. When I try to tell it import javax.mail.internet.InternetAddress, it does not recognize it. Does anyone know why? Thanks, Noam.

[android-developers] Re: Telephony API in Android

2009-03-09 Thread Arun
??? On Mar 6, 4:46 pm, Arunk arunk2...@gmail.com wrote: I am new to Android. I have developed application for blackberry. I want to develop the same application for Android also. Is there anything like phone listner in Android? How feasible its to implement an application which overrides

[android-developers] Re: javax.mail.internet.InternetAddress cannot be found?

2009-03-09 Thread Al Sutton
unbump. Now try reading the SDK documentation. Al. Noam wrote: bump On Mar 8, 7:12 pm, Noam noam.ha...@gmail.com wrote: Hello everyone, I am using Eclipse to develop and application for the android platform. When I try to tell it import javax.mail.internet.InternetAddress, it does

[android-developers] Re: SharedPreferences bug when writing strings with ampersands in them

2009-03-09 Thread Christoph Studer
This is a known issue and has a fix that will be part of a future release: http://code.google.com/p/android/issues/detail?id=1707can=1q=SharedPreferencescolspec=ID%20Type%20Version%20Security%20Status%20Owner%20Summary On Mon, Mar 9, 2009 at 11:36 AM, cmgreen...@googlemail.com

[android-developers] Re: Turning GPS ON/OFF

2009-03-09 Thread Neil
Use reflection to call LocationManager.updateProviders. On Mar 9, 11:00 am, Kevin AN any...@gmail.com wrote: to maxim yukin' site On Mar 9, 4:27 am, Rudi rudolf.hor...@gmail.com wrote: Anybody nows a code/sample how to turn ON/OFF the GPS location provider *corretcly*. I have found the

[android-developers] Re: How can host machine connect to emulator using socket

2009-03-09 Thread Arnauld NDEFO
hi, i am a student, and developp a application on android for my project in school.I use android release 1.1 and the android emulator.I would to use the socket in my application.I have use the package java.net.socket and java.io but i don't have a success.My code is below.Please help me.I

[android-developers] Can I initialize an Array list from data specified in xml resource file?

2009-03-09 Thread Videoguy
Is is possible to specify data in xml resource file and initialize ArrayList from it? I am looking for a way to use the ArrayList with a SimpleAdapter to bind to a ListView. I am wondering if there is a way to specify my data in xml resource file and init ArrayList from it. Videoguy

[android-developers] Re: Adding features to email client

2009-03-09 Thread My3
First of all thanks for the reply. According my knowledge we can download K9 mail as well as Android source and build it. But what i wnt to know is, if i change the code(say with extra menu on k9/email), will i be able to release myApp with the changes to email app? Or is it just for working with

[android-developers] Re: Performance of multiple threads.

2009-03-09 Thread Stoyan Damov
On Mon, Mar 9, 2009 at 4:51 PM, kbeal10 kbea...@gmail.com wrote: I agree, having more than 2 threads seems to break from the traditional paradigm, which is part of the reason it didn't seem like a good answer. Since I wouldn't be able to have a ViewGroup in it's own thread, I suppose the

[android-developers] Re: Accessing raw resource files with the filename as a String

2009-03-09 Thread Andrew Stadler
Have you looked at storing your files in the assets folder? You can then use getContext().getAssets().openFd(filename) to open them by name. On Sat, Mar 7, 2009 at 2:35 PM, Hayden hayden.stew...@gmail.com wrote: Is there  a way to access a raw resource file by having its filename in a

[android-developers] Re: Performance of multiple threads.

2009-03-09 Thread Streets Of Boston
I did the same with my app, The Gube, an OpenGL app. It took me a while to figure out how to translate swipes of finger into the rotation of the entire rubik's cube or to have a swipe initiate the rotation of just one layer. If your app is OpenGL (3D) as well, let me know if you need some help

[android-developers] Re: Accessing raw resource files with the filename as a String

2009-03-09 Thread Sergey Ten
One possible way of doing it would be to call AssetManager::open method, which takes a String (relative path in assets folder). On Sat, Mar 7, 2009 at 2:35 PM, Hayden hayden.stew...@gmail.com wrote: Is there a way to access a raw resource file by having its filename in a String? According

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-03-09 Thread Dan Morrill
Actually, in this case I'm going to go ahead and request that we move conversations of this type to android-discuss. Normally, for our other developer products we wouldn't make such a request: anything and everything related to the product is welcome. For instance, discussions about this sort of

[android-developers] How to test the earpiece

2009-03-09 Thread cht
for the OEM, on the product line,we need to test the earpiece whether it works well. so I want to write a application which will play sounds through the earpiece. i want to know how can i play a sound through the earpiece? or if there is a better way to test the earpiece?

[android-developers] Re: recreating webview display with capture picture

2009-03-09 Thread indra
Hi, any update on this, I am also looking for it. Thanks -Indra On Feb 12, 9:47 am, Bob bshumsk...@yahoo.com wrote: Hi, Does anyone have an example on how to recreate a webview display by using the capturepicture() method?  Can I save the resulting object in SQLLite and how do I put it on

[android-developers] How to hide signal icon and clock icon at status bar?

2009-03-09 Thread gavin
Hello, I want to hide the two icons but not the whole status bar when user enters my application. After exit my application, the two icons can be re-displayed. How should I do ? thanks. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] AlertDialog in Subactivity does not show...

2009-03-09 Thread Tommaso
Hi there, I am facing a problem I cannot solve. Somehow this is frustrating me. What I want to do is, show an AlertDialog when a user enters an invalid eMail address: Button saveButton = (Button) findViewById(R.id.save); saveButton.setOnClickListener(new OnClickListener() {

[android-developers] keyboard layout switching in Android

2009-03-09 Thread zergio
Hi, I like Android platform a lot. However, one the things, IHMO, Android lacks a lot, is an ability to dynamically switch keyboard layouts. It seem this was not even considered in Andonis design. Is the platform only suppose to serve Latin keyboard layout's users?... Right now, the switch can

[android-developers] Re: how can I create a 'View' object from a xml file?

2009-03-09 Thread Mark Smith
Use the static method View.inflate(Context, int, ViewGroup): http://developer.android.com/reference/android/view/View.html#inflate(android.content.Context,%20int,%20android.view.ViewGroup) You should be able to use null for the third parameter in this case. --Mark On Mar 9, 7:19 am, Lucius

[android-developers] Android programmers needed

2009-03-09 Thread cr...@firehead.net
Hi Folks, Our client is looking for Android developers willing to relocate to Sweden. Slightly above market salary. Start as contract with idea of becoming permanent Must have right to work in EU already. Please send CV and questions via email to : Craig (at) Firehead (dot) net Thanks

[android-developers] Layout of Settings app on G1

2009-03-09 Thread roreb1313
Hi I am trying to find out what type of layout and buttons are used on the Settings app of the G1 and on some apps like ShopSavvy where you have rows with gradient line breaks and each row is clickable/button. It seems to be some kind of Theme/Template but I could not find on the internet how to

[android-developers] Re: How to customize Android SDk kernel

2009-03-09 Thread baibai
1. Get a .config file into kernel directory Steps to get compile config from emulator a. start emulator b. adb pull /proc/config.gz config.gz c. gunzip config.gz d. mv this config as .config 2. Compile Command For kernel version 2.6.25 and later make ARCH=arm

[android-developers] Getting Mobile number from phone is not working. PLEASE HELP

2009-03-09 Thread c6bro
Hi, I am using the below to get the mobile number of the sim card which is inserted in the phone however it will not retrieve the number except running in the emulator. When I look in the settings of the phone it says number unavailable so is there a work around for this to get the users phone

[android-developers] storing apps in Sd card

2009-03-09 Thread Robert
Is there anyway to store the apps on the SD card? I just bought the G1 and if i can't find a way to store the apps on the SD within two day i'll definitely return it to the store. My memory is already running low! This is ridiculous! --~--~-~--~~~---~--~~ You

[android-developers] comments on market

2009-03-09 Thread daniel.benedykt
Hi Is there a way to see all the comments I have received for an application from the Market (without having to use the phone) ? Thanks Daniel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Can I initialize an Array list from data specified in xml resource file?

2009-03-09 Thread mafro
Taking an example from the Dev Guide - you can do it like this: http://d.android.com/guide/samples/ApiDemos/res/values/arrays.html In res/values/arrays.xml: resources !-- Used in View/Spinner1.java -- string-array name=colors itemred/item itemorange/item

[android-developers] Accessing the internet.

2009-03-09 Thread murphy
Hi all, Was just wondering if anyone had any code samples about writing and retrieving data from a website? I am currently creating an application which populates its textviews by accessing information from an online source. Thanks, Murphy. --~--~-~--~~~---~--~~

[android-developers] Is there no TCK (Technology Compatibility Kit) on Android????

2009-03-09 Thread rookiejava
Hi All!!! Is there any TCK (Technology Compatibility Kit) on Android such like Sun TCK?? How can i assure my android platform after changing it as own style. Can some one help me clarify this point? Thanks for your time. --~--~-~--~~~---~--~~ You received this

[android-developers] android session veriable

2009-03-09 Thread zeeshan
Hi, i need to store my usr and pass into user session so my activity at N level can access it for athentication. i tried PutExtra but dont think its a good idea to get values and then put again in every activity. any better solution ? --~--~-~--~~~---~--~~ You

[android-developers] Re: Help using Eclipse to attach to a process on the emulator...

2009-03-09 Thread Mike Collins
I have no idea what the Device panel in the DDMS pespective means. Maybe I'm completely missing something. In Eclipse I have a Debug tab in one of the windows of what I think is called the Debug perspective. When I run a process via the Run command it appears in that window, I can select

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-03-09 Thread JLMG
Is there still no word on when we can expect 1.1_r1 for ADP owners and developers? I spent good money to get a Android Dev Phone 1 because I thought that SDK upgrades would be available on ADP1s before they would be available on vendor locked platforms. I could have gotten my phone much cheaper

[android-developers] Re: comments on market

2009-03-09 Thread Stoyan Damov
cyrket.com On Mon, Mar 9, 2009 at 3:14 PM, daniel.benedykt daniel.bened...@gmail.com wrote: Hi Is there a way to see all the comments I have received for an application from the Market (without having to use the phone) ? Thanks Daniel

[android-developers] Re: storing apps in Sd card

2009-03-09 Thread Stoyan Damov
You can copy non-protected apps on your SD card, but you can't run them off the SD card. Running apps from the SD card is planned by Google but when it will happen is unknown. On Mon, Mar 9, 2009 at 5:35 PM, Robert centro.ga...@gmail.com wrote: Is there anyway to store the apps on the SD card?

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-03-09 Thread Stoyan Damov
Agreed Dan. We already started moving Market-related discussions to android-discuss. Cheers On Mon, Mar 9, 2009 at 6:38 PM, Dan Morrill morri...@google.com wrote: Actually, in this case I'm going to go ahead and request that we move conversations of this type to android-discuss. Normally,

[android-developers] Re: Is there no TCK (Technology Compatibility Kit) on Android????

2009-03-09 Thread Dan Morrill
Hello! We are indeed preparing the compatibility process and program for Android. We'll announce the details of that program when they are finalized; however, there are currently no resources for this. - Dan On Mon, Mar 9, 2009 at 4:42 AM, rookiejava rookiej...@gmail.com wrote: Hi All!!!

[android-developers] Re: When does the canvas' onDraw function get called?

2009-03-09 Thread mcmc
I think the problem is that the onCreate() is never called. I put a little error message in the onCreate(), and it does not show in the output. Is there a way to draw a canvas without using an onCreate() or an onDraw()? This would be a lot more useful for me... For example, can I do something

[android-developers] How to draw a piece of Bitmap

2009-03-09 Thread Nick
Hello! I'm creating a simple game for Android and faced with a problem: Idea is to have a huge map image file and re-draw only small part of it (320*480) depending on user actions. I didn't find a better solution than using public static Bitmap createBitmap (Bitmap source, int x, int y, int

[android-developers] Re: Power Vibration Wanted

2009-03-09 Thread Cian Masterson
This is indeed a developer-only forum, however someone may well be in the mood of writing an app to do what grantlairdjr wants. Is there a Google app ideas forum where (s)he could post, or if not does anyone think it would be a good idea to create one? On Mar 7, 3:17 am, Justin Allen Jaynes

  1   2   >