[android-developers] Re: SDK 1.1_r1 javadoc issue is fixed.

2009-02-19 Thread Evgeny V
Is it same link? http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.1_r1.zip Thanks, Evgeny On Thu, Feb 19, 2009 at 9:25 AM, Xavier Ducrohet x...@android.com wrote: Hello everyone, The 1.1 SDK we released last week includes a new design for the documentation.

[android-developers] Re: Connect G1 to Vista via Ad Hoc Wifi

2009-02-19 Thread BaoZhong Zheng
Per my understanding, ad hoc mode is not supported by current android, also for G1. BRs 2009/2/19 Android Development saturnandr...@googlemail.com An Android Dev Phone G1 has attempted to be set up to access the internet by connecting to an ad hoc wireless network. The ad hoc Wifi network

[android-developers] Re: How to tame CPU usage?

2009-02-19 Thread Mariano Kamp
I can see that. I just don't know how to proceed from here. I don't wont to water down the problem description with lots of details of my app, but as it is not a problem I know how to describe on an abstract level I will still try do that in the briefest form I see fit. Maybe my measurement is

[android-developers] Re: How to detect the state change of Bluetooth?

2009-02-19 Thread Stanley.lei
Hi Nick, Thanks for your reply. To turn on and off bluetooth, I use the following code from Android source code, if (!System.putInt(etContentResolver(), System.BLUETOOTH_ON, state)) { Log.d(LOG_TAG, String.format(set bluetooth state to %d failed, state));

[android-developers] Taking OFF the Missed call/s notification

2009-02-19 Thread shimo...@gmail.com
Hi, I need to take off the missed calls notification issued by the built- in PHONE application. Since there is no setting in it to NOT display the notification, I have to do it in my code (unless I missed somthing... ?) I thought about launching the built-in call log (thus it will remove the

[android-developers] Re: WebView loadData and XML Parsing Question

2009-02-19 Thread forandroid
I have to display html content which i get from am xml(RSS feed).I am using the loadDataWithBaseURL . But if the the html content contains an image,how do i render the image in the webview as in the html content. webView.loadDataWithBaseURL(www.company.com,descHtmlString, text/ html, utf-8,

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-02-19 Thread Stoyan Damov
Here's a hint - override public boolean dispatchTouchEvent(MotionEvent ev) instead of onTouchEvent - this *does* save quite a few cycles. You sleep using whatever you find more appropriate - Thread.sleep for interruptible sleep or SystemClock.sleep for non-interruptible one. HTH, Stoyan On Thu,

[android-developers] Re: How could I know the detailed capability of one content provider?

2009-02-19 Thread Wang He
Thanks, by reading the source code, I got what I want ~~ On Feb 19, 12:17 pm, Dianne Hackborn hack...@android.com wrote: The calendar provider is not currently part of the SDK, so unfortunately there aren't any capabilities you can use.  If you are working on platform code, you can look at

[android-developers] Paid Apps - Repeat refunders

2009-02-19 Thread AusR
Will there be any mechanism in the Android Market to stop/warn of repeat refunders? Those who purchase an app, use it, request refund. Then again on another day purchase the same app again, use it, then request a refund again? --~--~-~--~~~---~--~~ You received

[android-developers] How to get a region which is not a standard rect area

2009-02-19 Thread vistodavid
I want to judge whether the touch point(x, y) is in a region or not, the region is from a stardard rect by rotating specified degrees, from example, rotate 30 degrees. There is a class named Region in Android, but as I researched, it just supports standard rect, is there any other way to judge

[android-developers] can not visit maps on emulator because of Couldn't get connection factory client

2009-02-19 Thread shine
guys: I guess it is a old issue, and I have googled the related message in the group, and I think I do not miss anything: 1. I made the MD5 fingerprint of the SDK debug dertificate by keytool, and I applied the maps api key, refer to //code.google.com/android/ toolbox/apis/mapkey.htm 2. I

[android-developers] Re: How to add a calendar entry?

2009-02-19 Thread Georgios Galyfos
Did anyone find a solution to this? Markus, did you find out how to set the event name?? cheers On Thu, Feb 5, 2009 at 8:37 PM, Markus Junginger mar...@junginger.bizwrote: For my purpose, I resolved it partly using a different approach. There seems to be an undocumented Intent to bring up

[android-developers] Re: How to add a calendar entry?

2009-02-19 Thread Markus Junginger
Did anyone find a solution to this? Markus, did you find out how to set the event name?? No, no progress here. Is the source code of the calendar app available git? It might be worth a look. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] add files to data/data folder of android phone

2009-02-19 Thread Munish
Hi I tried to access the data from data/data folder from emulator memory and it worked fine but when i created the same structure in android phone then 1). it didn't gave me permissions to create the directory files in phone memory ( data/data/package name/) 2) any how i created the

[android-developers] getAssets().open(file.txt)

2009-02-19 Thread zeeshan
i am trying to access a resource file by try { InputStream is = getAssets().open(read_asset.txt); int size = is.available(); byte[] buffer = new byte[size]; is.read(buffer); is.close(); // Convert the buffer into a

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread Alistair.
Based more or less line for line from EULA.java in apps-for-android Google Code project. http://code.google.com/p/apps-for-android/source/browse/trunk/Photostream/src/com/google/android/photostream/Eula.java public static CharSequence readAsset(String asset, Activity activity) {

[android-developers] Finding package name from PID

2009-02-19 Thread Nauman ...
Hi all, I want to find out if it is possible to get the package name for a given PID. For example, if I want to output a list of currently running processes, I can get the PIDs but how do I get the names of the PIDs? Thanks. --~--~-~--~~~---~--~~ You received

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread zeeshan
Thanks for the reply! i am using the same API sample code (content-ReadAsset.java) /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a

[android-developers] Starting an Activity by sending an Intent with Extra Data

2009-02-19 Thread Graeme
Hi I have a newbie question which is puzzling me regarding using Intents to start a new Activity but passing some data with the Intent for the new Activity to use. My app has (say) MainActivity from which I want to launch a second activity, SecondActivity, within the same app, whilst I pass

[android-developers] Socket timeout exception

2009-02-19 Thread Dilli
Hi all, I am developing an application which download data from web while running on the emulator it works fine but on device after some time (3-5 min) it gives exception D/WifiStateTracker( 51): Deconfiguring interface and stopping DHCP W/System.err( 1079): java.net.SocketException: The

[android-developers] Re: reduce height of a button

2009-02-19 Thread schtieF
the label can be centered with android:gravity=center_horizontal but i dont know how to reduce the height, anyone else can help? On 15 Jan., 22:54, info.sktechnol...@gmail.com info.sktechnol...@gmail.com wrote: What is the preferred way to reduce theheightof abuttonand maintain the label in

[android-developers] Re: Starting an Activity by sending an Intent with Extra Data

2009-02-19 Thread dillirao malipeddi
Hi in second secondActivity's onCreate() try Bundle extras = getIntent().getExtras(); int value = extras.getInt(com.foo.bar.android.app.rowid); you can get value of first intent in variable value On Thu, Feb 19, 2009 at 4:52 PM, Graeme graeme.br...@btinternet.com wrote: Hi I

[android-developers] Re: reduce height of a button

2009-02-19 Thread schtieF
sorry its so easy android:layout_height=35px but it does not look good, because the button gets cut off on top and you dont see any round edges anymore schtieF On 19 Feb., 12:41, schtieF lisc...@googlemail.com wrote: the label can be centered with android:gravity=center_horizontal but i

[android-developers] get orientation via SensorListener

2009-02-19 Thread Christian Wiesbauer
Hi, I have a view which is always displayed in landscape. So I use the “ file:///L:\FoodScan\trunk\Handy\Android_SDKs\android-sdk-windows-1.1_r1\doc s\reference\android\hardware\SensorListener.html#onSensorChanged%28int,%20fl oat%5B%5D%29 onSensorChanged (int sensor, float[] values)” method from

[android-developers] Having multiple versions of the same app in the market

2009-02-19 Thread fry
Hello, I am planning to have two versions of the same app available in the market - let's say App-Lite and App-Advanced. They both almost the same core functionality, but App-Advanced has a bit more specific features, than the App-Lite has. Now I am thinking what would be the strategy of

[android-developers] ListView :: How to automatically scrool to see a element ?

2009-02-19 Thread CG
Dear all, I am facing a strange an issue that should simple to solve I suppose. I wonder how can I automatically scroll to see an element in a list view. Let's say I know that I want to see the element view number 6 in my list view, how do I scroll my list to see this element ? I look at the

[android-developers] Re: ListView :: How to automatically scrool to see a element ?

2009-02-19 Thread for android
listView.setSelection(position); On Thu, Feb 19, 2009 at 5:55 PM, CG veloid.cont...@gmail.com wrote: Dear all, I am facing a strange an issue that should simple to solve I suppose. I wonder how can I automatically scroll to see an element in a list view. Let's say I know that I want to see

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread david liu
Can you paste the log here? On Thu, Feb 19, 2009 at 6:31 PM, zeeshan genx...@gmail.com wrote: i am trying to access a resource file by try { InputStream is = getAssets().open(read_asset.txt); int size = is.available(); byte[] buffer = new byte[size];

[android-developers] Re: reduce height of a button

2009-02-19 Thread for android
style=?android:attr/buttonStyleSmall On Thu, Feb 19, 2009 at 5:18 PM, schtieF lisc...@googlemail.com wrote: sorry its so easy android:layout_height=35px but it does not look good, because the button gets cut off on top and you dont see any round edges anymore schtieF On 19 Feb.,

[android-developers] Re: add files to data/data folder of android phone

2009-02-19 Thread david liu
I can create it, there is no permission for this one. On Thu, Feb 19, 2009 at 6:26 PM, Munish munish.sha...@lntinfotech.comwrote: Hi I tried to access the data from data/data folder from emulator memory and it worked fine but when i created the same structure in android phone then 1). it

[android-developers] Re: get orientation via SensorListener

2009-02-19 Thread dillirao malipeddi
Hi if you want to display your Activity in only one mode (landscape / portrait) in your androidmanifest.xml file set android:screenOrientation=portrait or android:screenOrientation=landscape like example activity android:name=List14 android:screenOrientation=portrait

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

2009-02-19 Thread david liu
I just saw one email about this, there is one fix you can download from http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.1_r1.zip I cannot download it, since the problem with my network, hope you can get it. On Thu, Feb 19, 2009 at 5:27 AM, E. Litwin elit...@rocketmail.com

[android-developers] Re: How to tame CPU usage?

2009-02-19 Thread Jon Colverson
On Feb 19, 8:21 am, Mariano Kamp mariano.k...@gmail.com wrote: Ok, now the guesstimeasurement I do is that I look at the time the background is yellow. This time is very brief, when the background thread is not running and went to 4 seconds when the background thread is running and half of

[android-developers] Re: felix OSGi Container and Android

2009-02-19 Thread ff
Thx for your Help I try to start an Activity in my OSGi Bundle... So i need to customize my bootclasspath... And now, i have an error because i have no Looper.prepare, no looper.loop, no message handler... I try to find a standard (default) handler but for instance I fail... Does anybody

[android-developers] get orientation via SensorListener

2009-02-19 Thread Christian Wiesbauer
Thanks for your response, I use this attribute in the AndroidManifest.xml but I want to know if there is any possibility to get the orientation how the phone is held when I the view is always in landscape mode? Von: android-developers@googlegroups.com

[android-developers] Re: Remove time field of notification shown in the expanded status bar

2009-02-19 Thread Jon Colverson
On Feb 19, 4:13 am, elvisw elvise...@gmail.com wrote:     The notification in the expanded status bar has time field.     How can I set the time invisible or remove it?? If you use a RemoteView then you can put whatever you want in the notification:

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread Naina K
Hi zeeshan , As you said you have changed only the text file. I assume that you have added your new file in assets folder. I am not sure if you have added Ur_file_name.xml in res/layout folder. I mean you should also add a .xml file in layout folder with the same name as your file. You can also

[android-developers] Re: felix OSGi Container and Android

2009-02-19 Thread Karl Pauls
yeah, well, it might be easier for you to embed felix inside an apk. That way, you have everything set-up already. Have a look at: http://ipojo-dark-side.blogspot.com/search/label/android regards, Karl On Thu, Feb 19, 2009 at 2:05 PM, ff franck.rou...@gmail.com wrote: Thx for your Help I

[android-developers] backgroung setting in OpenGLES

2009-02-19 Thread and.pradeep
hi, I am writting opengl app using GLSurgfaceView given in API demos. I create a rectangle and added texture but then drawframe in renderer is called in a loop i,e it is redrawing it even if there is no changes. so what should i do to? how to set background

[android-developers] How many projects are being canned because of Market TCs

2009-02-19 Thread Al Sutton
Well, after a meeting of the directors, my company has just decided to shelve a project that was in development due to the short commings of Market and it's TCs. The project was going to offer a subscription service and would have met the all the criteria for being listed on Market, but

[android-developers] How Delete SMS from inbox programmatically

2009-02-19 Thread Gulfam
Hi, I want to Delete SMS how i can delete it programmatically? I am receiving sms in my application in this format string. 12345 username password * public void onReceive(Context context, Intent

[android-developers] Re: How to tame CPU usage?

2009-02-19 Thread Mariano Kamp
Jon, that sounds very plausible. Yes the background process is updating the same stuff that is displayed, although it is mostly inserts. That wouldn't explain the problem with finger gesture detection, but this problem is so fuzzy it could be anything. Anyway, how to proceed from here? Do you

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-02-19 Thread Jon Colverson
On Feb 19, 7:00 am, Zombies and Robots caecus...@gmail.com wrote: I've been trying to follow everything you guys have been talking about, but I must admit that after trying several ways of implementing what you suggest, I still haven't been able to achieve any positive results.  Could one of

[android-developers] Re: Having multiple versions of the same app in the market

2009-02-19 Thread jarkman
I'd love to get a definitive answer to the same question. I was askign something similar yesterday: http://groups.google.com/group/android-developers/browse_thread/thread/283ee27e57b269f2/7895bccd96f352a9#7895bccd96f352a9 Experiment suggests that the Market won't let you upload two different

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

2009-02-19 Thread Guillaume Perrot
You're right all MD5 checksums have changed, so I gave it a try. Javadoc is now working! 2009/2/19 david liu wanqing.da...@gmail.com: I just saw one email about this, there is one fix you can download from http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.1_r1.zip I

[android-developers] Re: Problem with SDK 1.1 - can not see javadoc

2009-02-19 Thread Guillaume Perrot
SDK have been reuploaded with javadoc, you can redownload it ! 2009/2/18 E. Litwin elit...@rocketmail.com: Can anybody from Google comment on the status of supplying an updated SDK with JavaDoc enabled? On Feb 17, 12:48 am, Guillaume Perrot guillaume.p...@gmail.com wrote: I have the same

[android-developers] Re: Using android 1.5 emulator, the sdcard can't be mounted

2009-02-19 Thread david liu
I have another issue about I cannot see the pictures in the Gallery immediately after I push some pictures to sdcard. Is anyone have fix for this? Thanks, David On Wed, Feb 18, 2009 at 3:59 PM, PYJ peiyuji...@gmail.com wrote: You can try 'adb remount' command before push and pull some files.

[android-developers] Re: Remove time field of notification shown in the expanded status bar

2009-02-19 Thread elvisw
I found that the sequence of code does matter. 1) TextView of time would be shown, if the sequence: notification.setLatestEventInfo(context, title, message, pendingIntent); notification.when = 0; 2) TextView of time would not be shown, if the sequence: notification.when = 0;

[android-developers] Is there one way to access http://developer.android.com from China MainLand

2009-02-19 Thread david liu
Hi All, I want to access this web site and download the latest SDK for my development. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Has any one tried to change the existing apps code of G1, i mean calender and Camera code

2009-02-19 Thread Android
Hi, I wanna to add some code in Camera Apps code , so that it will invoke my Application and do the thing as per my desier. Is it possible to change the Application code? If any one already tried this then plz let me know, how to proceed and build if i change some code. How to integrate my

[android-developers] Has any one tried to change the existing apps code of G1, i mean calender and Camera code

2009-02-19 Thread Android
Hi, I just cross check the existing code, but couldn't find and .apk for any application. Can someone plz let me know, how it was builded and how the apps were instaled. Is there any required of .apk file or not. -Sunil --~--~-~--~~~---~--~~ You received this

[android-developers] WebKit and JavaScript. PLEASE HELP.

2009-02-19 Thread Raj Kiran Talusani
Hello All, My application is integrated with the JavaScriptCore of webkit. It was compiled/linked and working properly for sometime Today i have updated the source base and saw that there were a lot of changes in JavaScriptCore. In earlier version it was generating a libkjs.a to which i was

[android-developers] Use Widgets (Clock Search Etc...) on Custom Home

2009-02-19 Thread nEx.Software
Is there any way to re-use the existing Widgets provided by the default Launcher in a custom Launcher application? At least without going into the main android source tree in order to use the internal classes? Thanks for any insight you can give.

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread zeeshan
well, i did a very stupid mistake. i put wrong file name;lol thanks for your time On Feb 19, 1:20 pm, Naina K kna...@gmail.com wrote: Hi zeeshan , As you said you have changed only the text file. I assume that you have added your new file in assets folder. I am not sure if you have added

[android-developers] Re: How to get a region which is not a standard rect area

2009-02-19 Thread Mike Reed
You could possibly un-rotate your touch-point by 30 degrees, and then just use the rectangle. However, you can make complex regions by first constructing a Path, and then calling region.setPath(...), which converts the path into a region. Below is pseudo sample code: Path p = new Path();

[android-developers] Re: Low ear-speaker volume

2009-02-19 Thread Brad Fuller
I'm surprised that there are no potential thoughts about this. I find it strange that none but the ear-speaker volume is affected. The volume raises ok, but it just doesn't get very loud. That is the range is small (say, 0 to 2) where it should be larger (say, 0 to 10) On Wed, Feb 18, 2009 at

[android-developers] Re: Drawables Galore - Optimization Question

2009-02-19 Thread Mike Reed
As part of a smart Sprite class, you may want to use Canvas.drawBitmapRect(...), which allows you to draw a subset (rect) of a larger bitmap. Thus a group of sprites could reference the same shared large image, each with their own rect which pulls out the part they want to draw. On Wed, Feb 18,

[android-developers] Re: backgroung setting in OpenGLES

2009-02-19 Thread Jon Colverson
On Feb 19, 1:29 pm, and.pradeep and.prad...@gmail.com wrote:     I am writting opengl app using GLSurgfaceView given in API demos. I create a rectangle and added texture but then drawframe in renderer is called in a loop i,e it is redrawing it even if there is no changes. so what should i do

[android-developers] Re: Using android 1.5 emulator, the sdcard can't be mounted

2009-02-19 Thread Jean-Baptiste Queru
This is not a discussion for android-developers. Please move this to android-platform. JBQ On Thu, Feb 19, 2009 at 6:12 AM, david liu wanqing.da...@gmail.com wrote: I have another issue about I cannot see the pictures in the Gallery immediately after I push some pictures to sdcard. Is anyone

[android-developers] Re: How many projects are being canned because of Market TCs

2009-02-19 Thread madcoder
Good luck with Google getting to your problem real quick-like. I was all on board with Android 110%. I've invested months of coding time to learn the OS. I've made several apps just waiting to be released. Now I can't even create a merchant account. I asked why and after several days, still

[android-developers] Conversion to Dalvik format failed with error 1

2009-02-19 Thread Alexey
Hi All, I've noticed that then i use clean from Eclipse project menu on my project i receive following error [2009-02-19 09:55:02 - MyListView] no classfiles specified [2009-02-19 09:55:02 - MyListView] Conversion to Dalvik format failed with error 1 Project doesn't use any external jars and

[android-developers] Re: Conversion to Dalvik format failed with error 1

2009-02-19 Thread Alexey
Eclipse is 3.4 --~--~-~--~~~---~--~~ 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] Re: Question about Loading Drivers on Android OS

2009-02-19 Thread Jean-Baptiste Queru
This isn't possible with the SDK (and probably wouldn't be portable across devices as you can't assume that every device can be hacked into a USB host), so you should probably have this discussion on the android-kernel mailing list, not on android-developers. Thanks, JBQ On Wed, Feb 18, 2009 at

[android-developers] Re: Determine scroll status of WebView?

2009-02-19 Thread Marc
No... Marc On Feb 16, 8:47 pm, Fred Grott(shareme) fred.gr...@gmail.com wrote: That means you will have to use a javscript technique to do it.. Are you using anything like mootools, yui, or etc? On Feb 16, 6:19 pm, Marc gram...@gmail.com wrote: That's a shame... :-( Marc p.s.

[android-developers] Re: How many projects are being canned because of Market TCs

2009-02-19 Thread Al Sutton
Part of the reason for the subscription model was to insulate us from the ridiculous If it's less than $10 it can be charged back automatically clause. The 24 hours is bad enough, but this auto-chargeback clause has no time limit on it, and carries the potential of an extra $3 charge, we'd be

[android-developers] Re: Use Widgets (Clock Search Etc...) on Custom Home

2009-02-19 Thread Romain Guy
You can't reuse them without duplicating the source code. On Thu, Feb 19, 2009 at 7:03 AM, nEx.Software justin.shapc...@gmail.com wrote: Is there any way to re-use the existing Widgets provided by the default Launcher in a custom Launcher application? At least without going into the main

[android-developers] Re: Can't seem to get something as simple as a ListView to work

2009-02-19 Thread Robin
Hi buddy, Does anyone know a solution 4 this issue...uknown value for gettextarray(0) Could anyone please explain me what is it signifying and why am I facing the problem. The scenario over here is same as withe ecogeek. Best Regards Robin On Jan 15, 1:39 am, ecogeek ecog...@gmail.com wrote:

[android-developers] Paid applications - are they downloadable now?

2009-02-19 Thread ellipsoidmob...@googlemail.com
Hi I'm a UK-based developer. Is there any way for me to tell what paid applications are available in the US? Also, can US customers now download paid applications? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: After the ADT 0.9 update, Eclipse can not create R.java automatically

2009-02-19 Thread tom
vi /frameworks/base/include/utils/Asset.h change the following UNCOMPRESS_DATA_MAX = 1 * 1024 * 1024 to UNCOMPRESS_DATA_MAX = 2 * 1024 * 1024 and rebuild sdk that's ok Hi, I checked out cupcake branch yesterday and made the full build and sdk successfully, and I also built the ADT 0.9

[android-developers] Re: Starting an Activity by sending an Intent with Extra Data

2009-02-19 Thread reshma
Hi, The intent will be received in onCreate of SecondActivity To obtain the extra data u sent from firstActivity, use the following code: int rowid = getIntent().getIntExtra(com.foo.bar.android.app.rowid, 0); To obtain string values, there is a similar function called getStringExtra.

[android-developers] IM, calendar Apps not launching

2009-02-19 Thread Nimit Manglick
Hi, On my emulator IM, calendar apps (that comes as a part of android open source platfrom) are not launching at all. Also there is NO Maps application visible in Menu. The logcat after launching IM is :- I/ActivityManager( 46): Starting activity: Intent { action=android.intent.action.MAIN

[android-developers] how to change the background color of the layout set in the main. xml file ,at runtime

2009-02-19 Thread gganesh
hi group, I'm newbie to Android I need to change the color of my screen alternatively ,how to do that can i use setBackground(int color) to access the layout color and change it at runtime ,can any one provide me a code snippet Thanks --~--~-~--~~~---~--~~ You

[android-developers] Official update for G1 Andriod developer phone (ADP) stock firmware

2009-02-19 Thread shimsim
This is my first post and i am new to Android so excuse my ignorance if this is well documented and common knowledge. I have a stock ADP, firmware 1.0, no updates no mods and of course i want to get the latest features such as voice control, latitude etc, and so begins the fun Why is there

[android-developers] Contacts number retriving problem

2009-02-19 Thread asolanki
hello i am new to android. i have some problems reading contact numbers. i want to search all the numbers of people stored in contacts. but by using following code am just getting default numbers. private static final String[] PEOPLE_PROJECTION = new String[] { Contacts.People._ID,

[android-developers] Accept self-signed certificate

2009-02-19 Thread thinair
Hi, I am trying to connect to a self-signed SSL web services. I found no post that could lend me to the solution on the mailing-list. Does anybody has a working code for that. These are the approach I try with no success : 1. Use a self made FakeX509TrustManager that implements

[android-developers] Re: Emulator crashing

2009-02-19 Thread torque
I'm running Windows Vista with Eclipse - and I'm getting the same thing. Very annoying. On Jan 5, 9:49 am, Sundog michael_...@tmail.com wrote: I am running it on Windows XP with Eclipse, and it does this every time I quit the Emulator while it's running my app. I don't know if it's always

[android-developers] Re: Android Developers Needed in Singapore

2009-02-19 Thread Anh.Takaji
Are you looking for developer share the same hobby, or employee :) ? On Feb 8, 1:35 am, Zi Yong Chua chu...@gmail.com wrote: Dear fellow developers, I am working on a mobile application that relates to media content delivery that I am building on the Android platform. Now I am trying to

[android-developers] I am facing problem in two android simulator communication

2009-02-19 Thread kotini
Hi , I want to develop two player game in android . For that i am using Tcp ip connection. I am opening two ports for sending,and receiving . i think this is not a proper way. Can any suggest what is the best way or proper way to develop two player game in android. Please give a quick

[android-developers] Routes and Driving Directions in Android application

2009-02-19 Thread Android_Learner
Hi, I am developing Maps application and want to give routes information and driving direction support in my Application. I saw the similar support in Android inbuilt maps application, But i could not find the similar APIs support in Android SDK Maps Package. But i read the there was one

[android-developers] how to switch between two views

2009-02-19 Thread guptha
hi friends, I 'm beginner in Android ,To start with i was asked to do a simple task ,i need to make blue and red screen appear on the screen alternatively , to achieve this i wrote two layout files 1. main.xml -- for to display red screen 2. sub1.xml -- for to display blue screen In oncreate()

[android-developers] Re: Problem with SDK 1.1 - can not see javadoc

2009-02-19 Thread getswa...@gmail.com
I am also facing the same problem.I am using WinXP Profess. If some one get the solution please send the solution. Swapon tranbinh.b...@gmail.com wrote: Dear all, I have just upgraded the SDK version to 1.1. But after that, I can not see the javadoc of the methods. Example: I can not see

[android-developers] Re: Android Developers Needed in Singapore

2009-02-19 Thread Android_Learner
Hi Zi Yong, I am working as a Senior Technical Architect in Mobile Application domain and having a strong expertis and skilled team of Android. Worked on the application suite like, Video, Music,Inbox,contacts and Maps on Android. But we are india based, can take on this project. Looking forward

[android-developers] Re: reduce height of a button

2009-02-19 Thread kotini tirumula
I think layout padding will help button height On Thu, Feb 19, 2009 at 5:11 PM, schtieF lisc...@googlemail.com wrote: the label can be centered with android:gravity=center_horizontal but i dont know how to reduce the height, anyone else can help? On 15 Jan., 22:54,

[android-developers] Gradient Questions

2009-02-19 Thread fouldsc
Hi, I am wanting to do a gradient fill on some buttons and have some questions on how to do some more advanced fills so far I have this : shape xmlns:android=http://schemas.android.com/apk/res/android; android:shape=rectangle gradient android:startColor=#FF44

[android-developers] cupcake codebase

2009-02-19 Thread Jd49490
I have heard a lot about this code base, but have seen nothing. The possabilities are amazing, why are we so limited. If the sceen is multitouch capable, why not use it? When will we see a fix for the issue with the talk button on the headset, or the ability to run apps from the sd card, or

[android-developers] help us to sell paid apps (we are NOT from UK/US)!

2009-02-19 Thread smartpixgames
Hi! We are software developers from Russia. Since market is opened only for UK and US developers (to sell their apps) we are unable to distribute our paid android applications. So we are looking for a person who can help us with it. We has market account, but not Goolge Checkout account. If you

[android-developers] Where would you store a secret?

2009-02-19 Thread Jose
Hello all, I have a little doubt, I have been reviewing the documentation and I have found there are several ways to store information in the device, but I would like to use one that is secure and is only accessed by my application. That's why I guess that I only have two options, which are

[android-developers] Gradient Questions

2009-02-19 Thread fouldsc
Hi, I am wanting to do a gradient fill on some buttons and have some questions on how to do some more advanced fills so far I have this : shape xmlns:android=http://schemas.android.com/apk/res/android; android:shape=rectangle gradient android:startColor=#FF44

[android-developers] Re: Official update for G1 Andriod developer phone (ADP) stock firmware

2009-02-19 Thread Disconnect
There are no answers. (Well, there is one answer. We're working on it. Occasionally followed by you have know idea how hard it is. This is basically the same answer they've given for 6 months for most anything, including why can't I delete email on my retail g1? its a 1 line fix!) I do object to

[android-developers] Re: How many projects are being canned because of Market TCs

2009-02-19 Thread dar
The http://www.android.com/market/terms/developer-content-policy.html states: Developers should only charge for applications and downloads from Android Market through the Market's Payment Processor. Developers may offer free applications as access points to paid services for which customers have

[android-developers] Re: cupcake codebase

2009-02-19 Thread Jean-Baptiste Queru
You are on the wrong mailing list. If you just want to discuss, please move to android-discuss. If you want to actively participate in improving the Android platform code, android-platform is waiting for you. For now there is no official SDK based on the cupcake development branch. JBQ On Wed,

[android-developers] Re: Paid applications - are they downloadable now?

2009-02-19 Thread nEx.Software
I've not seen any priced apps in the U.S. Market yet. On Feb 19, 3:31 am, ellipsoidmob...@googlemail.com ellipsoidmob...@googlemail.com wrote: Hi I'm a UK-based developer. Is there any way for me to tell what paid applications are available in the US? Also, can US customers now download

[android-developers] Re: Official update for G1 Andriod developer phone (ADP) stock firmware

2009-02-19 Thread Jean-Baptiste Queru
My gripe about your post is that you didn't search the archives or read the messages of the last few days. I've personally answered question #1 more times than I can remember, so I guess that one more time won't hurt: it's not available yet, we're working on it. I'm not allowed to answer

[android-developers] Re: Use Widgets (Clock Search Etc...) on Custom Home

2009-02-19 Thread nEx.Software
Thanks for the infor Romain... So, does that mean it is acceptable to do non-SDK based applications? I know there seems to be a lot of talk about not using internal classes. I see the built-in Launcher app uses a lot of internal classes. I'm assuming this is also true in the Widgets; however,

[android-developers] Re: How to compile G1 apps code

2009-02-19 Thread nEx.Software
I did an app based on the Calculator.. I just downloaded the source from http://android.git.kernel.org/ and made my changes, don't know if the Calendar or Camera use classes outside of the SDK but I'd give that a shot and see what happens. On Feb 19, 10:17 am, Android

[android-developers] SQLite rawQuery() '?' params

2009-02-19 Thread Ward Willats
Something like this: String[] FooParams = new String[1]; FooParams[0] = 123; Curosr csr = db.rawQuery( SELECT * FROM FooTable WHERE FooField = '?', FooParams ); Causes this: android.database.sqlite.SQLiteException: bind or column index out of range: handle 0x30f6b0 Everyone seems to use

[android-developers] Re: Paid applications - are they downloadable now?

2009-02-19 Thread nEx.Software
Haha, yeah I suppose you are right. On Feb 19, 10:09 am, Mark K mark.ka...@gmail.com wrote:    No paid apps yet on the market for users, 'mid week' means COB Friday in developer speak :)                                                Mark On Feb 19, 8:58 am, nEx.Software

[android-developers] How to compile G1 apps code

2009-02-19 Thread Android
Hi.. I wanna to compile the apps code, has any one tried it earlier, if so lemme know. How to compile the camera aur calender code. -Sunil --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Paid applications - are they downloadable now?

2009-02-19 Thread Jean-Baptiste Queru
Actually, it's really mid-week on the US west coast, it's thursday morning (before people start to work) on a 4-day week (monday was a holiday). JBQ On Thu, Feb 19, 2009 at 9:10 AM, nEx.Software justin.shapc...@gmail.com wrote: Haha, yeah I suppose you are right. On Feb 19, 10:09 am, Mark K

[android-developers] Re: Paid applications - are they downloadable now?

2009-02-19 Thread Mark K
No paid apps yet on the market for users, 'mid week' means COB Friday in developer speak :) Mark On Feb 19, 8:58 am, nEx.Software justin.shapc...@gmail.com wrote: I've not seen any priced apps in the U.S. Market yet. On Feb 19, 3:31 am,

  1   2   3   >