[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-13 Thread sacoskun
It is something really awkward. The time period of shipping ADP to Florida is unknown. Can we say less than a week or are there any faster shipping option?! On Dec 13, 8:05 am, mmitchel mmitc...@gmail.com wrote: I received my developer phone following an order placed on the 8th. There was not

[android-developers] Re: Android Dev Phone 1™

2008-12-11 Thread sacoskun
Which country did you ship the phone to? Can't you see the tracking status from android market account? -sarp On Dec 11, 5:05 am, ko.bach...@gmail.com ko.bach...@gmail.com wrote: I ordered the phone on Dec. 6th but haven't received shipping notification from them yet. Sent them an e-mail

[android-developers] Re: Ksoap2 terminology

2008-09-24 Thread sacoskun
If you are planning to consume .NET web services on the server side, here is an article about it. http://java.codeproject.com/KB/mobile/CallWebServiceFromkSOAP.aspx Regards, sacoskun On Sep 24, 5:42 am, amishera [EMAIL PROTECTED] wrote: Hi, I finally figured out how to set the values

[android-developers] Re: Hide Emulator Keyboard

2008-09-03 Thread sacoskun
Hello Felix, You can easily change the default skin of the emulator to a skin which does not have a keyboard at all. This link will help you for this; http://sacoskun.blogspot.com/2008/09/android-emulator-skin-without-keyboard.html Regards, sacoskun On Sep 3, 10:05 am, Felix Geller [EMAIL

[android-developers] AutoCompleteTextView showing filtered results

2008-08-28 Thread sacoskun
Hello, I am using AutoCompleteTextView with my custom adapter which implements Filterable. On the getFilter() method, I am able create a new Filter instance and override performFiltering() method to find the matched results. Inside performFiltering all the matched results are added into

[android-developers] Re: ListView - If you have a item that can focus you can select the Item

2008-08-27 Thread sacoskun
Hello marielisacr, That means, for example, that if I want to have a list of songs, where if I select one I play it, and each one have a button to add to one playlist is not possible? If I were you, I would go for standard select handler in order to play the selected song and I would come up

[android-developers] Re: Socket exception-unknown error from HttpClient execute() method

2008-08-22 Thread sacoskun
Did you add uses-permission android:name=android.permission.INTERNET / tag to your AndroidManifest.xml? The new SDK requires that permission for network calls. sacoskun On Aug 21, 6:13 pm, Graeme [EMAIL PROTECTED] wrote: Hi everyone I'm trying to figure out how to use HttpClient 4.x to do

[android-developers] Re: org.apache.http.client.methods.multipart not in the beta SDK

2008-08-20 Thread sacoskun
from http://hc.apache.org/httpcomponents-client/httpclient/apidocs/index.html . Therefore it is not related to new Android SDK, it is directly related to new version of HttpClient API. Best wishes, sacoskun On Aug 20, 8:00 am, j [EMAIL PROTECTED] wrote: Why isn't

[android-developers] About com.google.android.gtalkservice

2008-08-20 Thread sacoskun
Hello there, API Differences Report says that com.google.android.gtalkservice package is removed. However, I can call the classes under that package except IGTalkSession binder interface from the new SDK. As far as I read from the Release Notes of new SDK, some internal packages may be visible

[android-developers] Re: How to access content of a package in the other packages?

2008-07-21 Thread sacoskun
static int max = -1; public static int min = -1; } } Nonetheless, I did not try it on layouts. Best wishes, sacoskun On Jul 11, 4:40 am, Nan.YE [EMAIL PROTECTED] wrote: Really thanks for your reply. I can export the packages(both codes and res

[android-developers] Re: date data type issue in Andriod

2008-07-17 Thread sacoskun
version not the Date type directly. SqlLite does not understand all types of date by default, for more information on date conversion for SqlLite please follow the link. http://sacoskun.blogspot.com/2008/05/sqlite-datetime-insertion.html Hope this helps, sacoskun On Jul 8, 8:09 pm, Billsen

[android-developers] Re: About textfile

2008-05-10 Thread sacoskun
Hello Analdin, When you open an emulator connect to it via adb shell command from a terminal. Then you can find your file in /data/data/com.IW.sample/files/ judy.txt. -sacoskun On May 10, 8:23 am, Analdin Judy [EMAIL PROTECTED] wrote: Hi, Can anybody please tell me,In the path (data

[android-developers] PowerManager goToSleep method time interval

2008-05-09 Thread sacoskun
it should wait 5 seconds and then sleep, or am I wrong? pm.goToSleep(SystemClock.uptimeMillis() + 5000L); Thanks, -sacoskun --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Re: Accessing different API.. (aside from android.jar)

2008-05-06 Thread sacoskun
Hello jacob, It is the same as you do it in normal Java applications. For eclipse, import the .jar file from Package Explorer as a Referenced Library and use the classes in .jar file via providing the right package names. Best wishes, -sacoskun On May 6, 9:41 am, jacob [EMAIL PROTECTED] wrote

[android-developers] Re: weird behavior in ContentResolver().insert()

2008-05-06 Thread sacoskun
(People.CONTENT_URI, mv); String newlyInsertedId = myUri.getLastPathSegment(); By the help of the newlyInsertedId, insert a phone tuple with the number into the phones table by the help of content provider. Best wishes, -sacoskun On May 6, 1:23 pm, scimitar [EMAIL PROTECTED] wrote: Hi, I'm trying

[android-developers] Re: null uri in getContentResolver().insert()

2008-05-06 Thread sacoskun
, personIdFromUri); getContentResolver().insert(Contacts.Phones.CONTENT_URI, mvPhones); Hope this helps, Best wishes, -sacoskun On May 6, 2:10 pm, scimitar [EMAIL PROTECTED] wrote: Hi, I'm always getting null as the return uri for getContentResolver().insert(). Why

[android-developers] Re: XMPP two way communication problem

2008-05-03 Thread sacoskun
Hello mickrobk and Hielko, I set the emulators in correct way mickrobk, no problem there. Thanks for informing me on asynchronous state of services, it started to work when I give enough time to the service to bound, Hielko. Best wishes, -sacoskun On May 2, 1:09 pm, Hielko [EMAIL PROTECTED

[android-developers] Re: XMPP two way communication problem

2008-05-01 Thread sacoskun
emulator that wants to respond to the first one. Is there anyway that I can grab the ongoing session rather than mXmppSession = xmppService.getDefaultSession()? I have also sent the codes to your e-mail address that you have specified here. Best wishes, -sacoskun On Apr 30, 11:50 pm, Hielko [EMAIL

[android-developers] XMPP two way communication problem

2008-04-30 Thread sacoskun
, -sacoskun --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED

[android-developers] Re: How to set SQLite's write permission In SQLiteDatabase class?

2008-04-24 Thread sacoskun
Hello Macro, In order to let other applications to use your database, you need to create content provider. By the help of content providers you can indicate/let which parts of the database can be used by others. Please take a look at the following link;