[android-developers] Re: How to extract the .properties files in a third party jar file to apk file

2009-12-02 Thread nowingfly
BTW, my Android.mk is: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := user development LOCAL_STATIC_JAVA_LIBRARIES := servletlib LOCAL_SRC_FILES := $(call all-subdir-java-files) LOCAL_PACKAGE_NAME := MyApp

[android-developers] Re: Android Market Anti-Piracy

2009-12-02 Thread AlexK
On Dec 1, 12:23 am, strazzere str...@gmail.com wrote: Alex, can you please clarify something for us? Today we did check of our sales. And found interesting aspects: 1) 4% of people that install pirated copy after black list discussions and news over internet decide to buy application;

[android-developers] animation between two activities

2009-12-02 Thread tstanly
hi all, I design a rotate animation when activity 1 ends, and then start activity 2. so my code is: ===when activity 1 ends function=== rotate_animation(); //first call up the animation Intent i=new Intent(); i.setClass(activity1.this,activity2.class); startActivity(i);

[android-developers] Re: Android Market Anti-Piracy

2009-12-02 Thread AlexK
ANDROID_ID compromized http://strazzere.com/blog/?tag=android_id On Dec 1, 12:23 am, strazzere str...@gmail.com wrote: Alex, can you please clarify something for us? Today we did check of our sales. And found interesting aspects: 1) 4% of people that install pirated copy after black list

[android-developers] Phone still making sounds when it's silent?

2009-12-02 Thread Teo [GD API Guru]
Hi, i got reports from some users that after making the phone silent with my app, sometimes, text messages or emails still make sounds. I don't have a phone so this is why i'm asking... The app is making the phone silent this way: final AudioManager am = (AudioManager) context.getSystemService

Re: [android-developers] Importing in aidl file

2009-12-02 Thread sathya subbiah
Think you need to add the aidl path your make file and have to include in your file import com.xyz.fooPackage.aidlfilename Hope this helps you. On Wed, Dec 2, 2009 at 2:46 AM, yidongsoft long...@gmail.com wrote: I need a aidl file defining: ArrayListFoo getFoo(); I import ArrayList package

Re: [android-developers] Importing in aidl file

2009-12-02 Thread sathya subbiah
If running in eclipse then U needs to add the compiled code (.jar) of the package as resource to your application and then import the aidl. On Wed, Dec 2, 2009 at 3:50 AM, sathya subbiah sathya.subbia...@gmail.comwrote: Think you need to add the aidl path your make file and have to include in

[android-developers] Can not access internet with emulator

2009-12-02 Thread Billy Cui
After I build a new image for aosp eclair and run that image, my all emulator can not access internet any more. Anyone know why and how to fix it? I even create new avd and still not work. All emulator, 1.5/1.6/2.0 can not access internet. When I check the network, with ifconfig, it returns:

[android-developers] GK: How to achive handwriting recognition in Android.

2009-12-02 Thread Jack Ganesh
Hi All, I need a simple Example program on handwriting recognition and Gestures. Can any one provide me some info to achive this ? Whether its possible in Android ? Cheers, Ganesh -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: GLSurfaceView and Key Presses

2009-12-02 Thread Jeremiah Sellars
Sorry to double post... I swear what I described before (setting just an OnKeyListener) worked... but trying again today it did not. I tried to add an OnFocusChangedListener and just calling myViewName.requestFocus(); which quite oddly worked once... but then never again... I'm quite puzzled by

[android-developers] Line Breakdown

2009-12-02 Thread Mariano
Hi All, Im having a lot of trouble with what should be a very simple thing to accomplish. Im using canvas.drawText(...) I want to insert linebreaks on my Text Strings, for example \n. My problem is some Strings are quite long, so i would like to break the line instead of creating a substring

[android-developers] passing params from ksoap2 to .net web service, always passes nulls

2009-12-02 Thread Mike_Tek
i've searched and googled to no avail i can call my.net c# web service just fine without parameters, as soon as i add a param that param is null when it hits the service.. i've tried passing objects, classes. I've tried every single SoapSerializationEnvelope type.. everything i could read on

[android-developers] CDMA Wi-Fi Handover

2009-12-02 Thread Hemant
Hi, I am new to Android and I am planning to work on an application to use WiFi for data application when available, else use CDMA. I wanted to explore this part in Android. Can someone help me find APIs in Android for - Using WiFi - Doing handoff from WiFi to CDMA (when RSSI falls below

[android-developers] J2EE client on Android

2009-12-02 Thread Bruce Xia
is there a way to port or implement a J2EE client on android? Does anybody have example code please? -- 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

[android-developers] Re: Getting an asset outside of main Activity

2009-12-02 Thread Jeremiah Sellars
Thanks... I'm learning more and more and realize that handing the context over will give more broad access if it were needed. There's so many classes and methods to learn to use, it's just bound to take some time. I hadn't used getApplicationContext yet and am glad to know it exists now as well.

Re: [android-developers] Re: Android 2.0 emulator (Droid skin) crawls

2009-12-02 Thread Magic.Xie
Me too. 2009/12/1 kanatacrude garnet.ulr...@gmail.com I have the same issue. Eclipse 3.4.2 with the 2.0 SDK, ADT 0.9.4 . Android 2.0 emulation slow as molasses, 1.6 is fine. Hmm. Guess not too many people have this problem given the lack of replies... garnet On Nov 12, 11:07 pm,

[android-developers] Re: SecurityException on startActivity

2009-12-02 Thread Fabio
Hi, the code I have paste is an example, I am the developer of Apps Organizer show all installed apps and allow to launch each application. Some apps cannot be launched, often (but not always) the missing Permission is internet permission but I don't want to add this permission to my app. I have

[android-developers] Re: Info required on call to onLocationChanged() functionality.

2009-12-02 Thread Ruppin
Hi, To give a gist of my below question. I just need to know whether I will be able to get the LocationListener's onLocationChanged() functionality getting called within a travelled distance of 10/100m. Generally it seems that the onLocationChanged() functionality will be called only after a

[android-developers] Re: Pls help required ! : setPreviewCallBack - Bitmap

2009-12-02 Thread Garfield
On 1.5 and 1.6, there is no way to know supported preview sizes so apps should not call setPreviewSize. Apps should call getPreviewSize to know the current preview size. On 2.0, Apps should call getSupportedPreviewSizes before setPreviewSize. It's the same for setPictureFormat. On 1.5 and 1.6,

RE: [android-developers] Re: Multiple add-ons for multiple apps in one apk

2009-12-02 Thread Ryan Beesley
I would think so. An APK is basically a zip file with a manifest that has been signed. Seems like you should be able to pin a manifest that installs those additional apps in your pack. The biggest issue that I see is that the APK won't have been installed through Market and may have trouble

[android-developers] Push technique in android

2009-12-02 Thread veradis
Hi, I want to implement push technology from my tomcat server to my android app. Can this be implemented. I can contact server by using web service from app and retrieve data, but can data be send from server to all installed running apps without apps requesting it. Thanks in advance Veradis

[android-developers] Re: Rfcomm (2.0 1.6)

2009-12-02 Thread Patrick
Thanks a lot for your reply! Your understanding is not right here, UUID is used to lookup the port, not for encryption. The javadoc explains this. The only Javadoc i can find (

[android-developers] Re: Architectural design question

2009-12-02 Thread rastyrori
Thanks Dan. I guess I'll have the user download the files to the SDCard. I'm new to phone development. Will most users have an SDCard? If not, I suppose streaming is the only answer. Rusty On Dec 1, 12:46 pm, Dan Sherman impact...@gmail.com wrote: You don't really have an option to have them

[android-developers] Cell Broadcast service in android

2009-12-02 Thread S
Hi Is Cell Broadcast service supported in android? Thanks in advance -- 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

Re: [android-developers] How to get phone usage statics

2009-12-02 Thread Zhang Cheng
On Tue, Dec 01, 2009 at 02:41:21PM -0800, Dianne Hackborn wrote: Sorry, there is no API for this. Thanks! BTW, have the android team released any Android/Linux-level references? On Tue, Dec 1, 2009 at 1:11 AM, Zhang Cheng stephen...@googlemail.comwrote: Hi! I recently want to write

RE: [android-developers] Repo Init for Eclair

2009-12-02 Thread Ryan Beesley
-b elcair is more stable for me. Not sure what the differences are between builds. There is certainly some difference, but I think trying to pair it to the specific branch is the correct way to go as master might get other incompatible things thrown in from time to time as it continues to

Re: [android-developers] Re: Accessing contact's phone numbers

2009-12-02 Thread Dmitri Plotnikov
Just to clarify the Facebook question: the FB contact data is not visible to any applications except a handful of built-in apps like Contacts. That's a policy decision by Facebook. At the same time, any application can read and write data from all other types of accounts, including Google and

[android-developers] About Android Garbage Collection

2009-12-02 Thread chuinhooi
Hi everyone, I am doing some researches on improving Android's GC performance in the past few months, May I ask that do anyone know when GC is performed, it is actually caused by fragmentation or memory insufficient or both? And can show me the code/function that it determine(fragmentation/memory

[android-developers] audiomanager setParameters and getParameters

2009-12-02 Thread mdd
Anybody know how to acquire the list of keys for these? -- 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

Re: [android-developers] Re: Iphone like tab view

2009-12-02 Thread Jarrod Overson
That is a horrible attitude though it does, maybe, explain why so many market applications are of such poor quality. There is no doubting that the iphone UI and usability standards are leagues above the barely existent android guidelines. Why turn your back on something that is so undeniably

[android-developers] notification which will be shown in place other than status

2009-12-02 Thread lk
hi all i am developing a shopping cart application. i wants to show a cart icon with the number of items on it. the number will increase when user will add an order to cart. i want to use something like notification -- (in notification on status bar it is possible to show an icon with number on

[android-developers] Re: How to extract the .properties files in a third party jar file to apk file

2009-12-02 Thread nowingfly
Can anyone help? On Dec 2, 4:04 pm, nowingfly nowing...@gmail.com wrote: BTW, my Android.mk is: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := user development LOCAL_STATIC_JAVA_LIBRARIES := servletlib

[android-developers] Can't receive broadcast PACKAGE_ADDED

2009-12-02 Thread feng tian
Hi, All: I want to receive the broadcast intent PACKAGE_ADDED, but it seems I cant get it. Here are my codes, can someone check for me? Thanks very much. //TestReceiver.java, this is the class for receiving the intent. I just display package com.android.receiver; import

[android-developers] Re: start activity without mention in androidmanifestfile

2009-12-02 Thread Dexter#39;s Brain
Hi Dianne, I was asking Why would anyone have a requirement of having and Activity without putting it in the manifest file. Sorry. :) -- 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] Hi

2009-12-02 Thread Ram
I am trying to work the android development in UBUNTU 8.0 OS. I installed Eclipse 3.5 IDE Linux 32 bit version. When i try to add ADT 0.9. plugin it is reporting me the following error and it aborts the adding ANdroid plugin installation process. Error details

[android-developers] How can i record only incoming call audio stream

2009-12-02 Thread Mr Pinguin
Using MediaRecorder i can record incoming and outgoing audio during gsm call(VOICE_CALL). But i want only record incomging audio stream. VOICE_DOWNLINK is not working on HTC dream and android 1.6. any idea ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] setting ANDROID ENVIRONMENT IN UBUNTU8.0 operating system

2009-12-02 Thread Ram
I am trying to work the android development in UBUNTU 8.0 OS. I installed Eclipse 3.5 IDE Linux 32 bit version. When i try to add ADT 0.9. plugin it is reporting me the following error and it aborts the adding ANdroid plugin installation process. Error details

Re: [android-developers] setting ANDROID ENVIRONMENT IN UBUNTU8.0 operating system

2009-12-02 Thread sathya subbiah
Hi, I am also using UBUNTU. I am able to install ADT plugin to my eclipse.Kindly follow the steps provided in the link http://developer.android.com/sdk/1.1_r1/installing.html. Also please check your network proxy settings. On Wed, Dec 2, 2009 at 4:58 AM, Ram rama.mohan...@gmail.com wrote: I

[android-developers] Re: Importing in aidl file

2009-12-02 Thread yidongsoft
First of all, thank you for replying. My aidl file is like this: //IActions.aidl package com.xyz.a; //import java.util.ArrayList; interface IActions{ float getSpeed(); //ArrayListString getDataList(); int getDataState(); } I have to comment out ArrayListString getDataList(); because eclipse

Re: [android-developers] Re: Importing in aidl file

2009-12-02 Thread sathya subbiah
WelcomeI think parcellables can help with your issue. Pls find the link regarding the same http://panyam.wordpress.com/2008/03/07/android-hack-parcellable-in-eclipse/ On Wed, Dec 2, 2009 at 5:10 AM, yidongsoft long...@gmail.com wrote: First of all, thank you for replying. My aidl file is

Re: [android-developers] Can't receive broadcast PACKAGE_ADDED

2009-12-02 Thread mingkg21 mingkg21
You also need to add data android:scheme=package /. 2009/12/2 feng tian feng.of.t...@gmail.com Hi, All: I want to receive the broadcast intent PACKAGE_ADDED, but it seems I cant get it. Here are my codes, can someone check for me? Thanks very much. //TestReceiver.java, this is the class

[android-developers] How to use AUDIO_SERVICE ?

2009-12-02 Thread Mr Pinguin
While calling: AudioManager aManager = (AudioManager) ct.getSystemService (Context.AUDIO_SERVICE); i get this error : E/AndroidRuntime( 416): Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 416): java.lang.RuntimeException: Unable to start activity

[android-developers] Re: Push technique in android

2009-12-02 Thread Marc Reichelt
Hi Veradis, you may open a HTTP connection from your client. The server itself should not close the connection, but send data over it if available. Warning: This certainly will decrease battery power because the mobile phone will not activate power saving for WIFI etc. while the connection is

[android-developers] Re: JNI Call Bridge

2009-12-02 Thread bacchus
Hi Suchand, Somehow the table you wanted to present got deformated. Could you please provide me a web reference to it? Thanks in advance. Cheers On Dec 1, 5:15 am, Suchand Ghosh chand4andr...@gmail.com wrote: I think you r looking for: Mapping types The following table shows the mapping

[android-developers] splash screen through activity

2009-12-02 Thread Jags
I am trying to change my splash scren into Intent based as discussed here http://www.anddev.org/simple_splash_screen_-_alternative-t815.html I changed my manifest to ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android;

Re: [android-developers] Push technique in android

2009-12-02 Thread Ederson Marcos Ferreira
Hi Veradis, It might be possible to you implementing XMPP. Basically, it is an open protocol and it was originally aimed at near-real-time, extensible instant messaging and presence information, but now expanded into the broader realm of message oriented middleware. Good luck! Éderson On Wed,

[android-developers] Re: Iphone like tab view

2009-12-02 Thread String
I'm not opposed to using better ideas when I find them. And I'm also not advocating reinventing the wheel. Nice straw men you have there. If your UI requires tabs, the Android platform has an excellent set of classes for doing so. What I am opposed to is trying to turn Android into an iPhone

[android-developers] awakenScrollBars() not showing scrollBar in custom View

2009-12-02 Thread Nithin
Hi, I have a custom view. I am scrolling the view vertically using scrollTo (int, int). But the scrollbar is not showing when scrolling. I tried awakenScrollBars(). But its not drawing the scrollbar. I also put setVerticalScrollBarEnabled(true). Whether I am missing something here ? Thanks --

[android-developers] Re: JNI Call Bridge

2009-12-02 Thread bacchus
Hi fadden, Sorry for not being clearer on my first post. I'm trying to understand better (through code reading) the startup process of Android. By startup, I mean to understand how the Android Runtime is setup and Dalvik is started. Throughout the code reading process I've found VMRuntime.

[android-developers] Re: Importing in aidl file

2009-12-02 Thread yidongsoft
Damn it. That complex. use database instead. any way, Thank you! On Dec 2, 6:17 pm, sathya subbiah sathya.subbia...@gmail.com wrote: WelcomeI think parcellables can help with your issue. Pls find the link regarding the

[android-developers] Content Provider in separated project

2009-12-02 Thread Daber
Hi, I've following problem. I've created 2 projects. One with content provider. Second with client activity using this provider. I've set project references in eclipse. Compliation completes succesfuly. Problem is at runtime. Provider.CONTENT_URI as well as other static public fields are not

Re: [android-developers] Content Provider in separated project

2009-12-02 Thread Ederson Marcos Ferreira
Project references do not work at runtime. Not sure why. Try to use a jar reference to the dependent project instead... Éderson On Wed, Dec 2, 2009 at 10:42 AM, Daber m.a.dabrow...@gmail.com wrote: Hi, I've following problem. I've created 2 projects. One with content provider. Second with

Re: [android-developers] Re: ADC 2 and Android Market Place Application Error

2009-12-02 Thread zeugame zeugame
Hello James, Thank you for the hint. I published World of Bombs 2 days ago in the Android Market by package renaming. My package name was not good. got lucky ;) But i keep this valuable information for my next app! Thank you. Croco -- http://www.zeugame.com/wob2 On Mon, Nov 30, 2009 at

[android-developers] About android 2.0 web browser

2009-12-02 Thread Dantu
Hi all, I am trying to enhance the functionalities of the web browser that is provided in android 2.0 , I want the source code of the web browser. I found it in http://android.git.kernel.org but it has a lot of errors, Can any one suggest me why these errors evolved and how to solve these

[android-developers] Re: setting ANDROID ENVIRONMENT IN UBUNTU8.0 operating system

2009-12-02 Thread sathya subbiah
Hi Ram, I tried the following steps in installing Eclipse in Ubuntu 1) Downloaded classic version of Eclipse 2) Then added the ADT plugin as given in the link http://developer.android.com/sdk/1.1_r1/installing.html. 3) Then downloaded Android Eclair package 4) Then ran the android tool in the

[android-developers] problem in aligning right column in the list

2009-12-02 Thread adag
Hello All, I am having multiple choice list where I have three column like below * Col1 Col2 Col3 * Col2 and Col3 should be right aligned with a gap of 10 px in between LinearLayout xmlns:android=http://schemas.android.com/apk/res/

[android-developers] Re: ADC 2 and Android Market Place Application Error

2009-12-02 Thread alex
Still, the question remains. Will the package names ever get released? Does anyone from google care to answer? -- 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] Nike dunk high shoes wholesale\retail

2009-12-02 Thread ssdgs we
Nike dunk high shoes wholesale\retail Our company mainly deal with the import and export of the brand sports shoes, clothes, jewelry, bags , glasses, etc . Products such as Nike Jordan sell well in America , Canada , as well as Europe and other countries. Our objective is to supply products of

[android-developers] Re: Checked List View am I missing something

2009-12-02 Thread Jose Gomez
Bump any ideas? please!!! Thanks! Sincerely Jose C Gomez http://www.josecgomez.com Sent from Jacksonville, Florida, United States On Tue, Dec 1, 2009 at 9:24 AM, Jose Gomez j...@josecgomez.com wrote: Hello, I am fairly new to android and I am trying to do a simple and very common grocery

[android-developers] Re: AutoCompleteTextView and setText()

2009-12-02 Thread Klaus Kartou
There must be a way to this? On Tue, Dec 1, 2009 at 11:35 PM, Klaus Kartou kar...@gmail.com wrote: Still stuck with this issue. Is it even correct behaviour of the AutoCompleteTextView to show the pop-up when setText() is being called? On Sun, Nov 29, 2009 at 1:23 PM, Klaus Kartou

[android-developers] android installer

2009-12-02 Thread george
Hi all How to tell the installer intent to install on memory card or on phone memory ? thnks much -- 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

[android-developers] Re: disabling button onclicklistener for certain time

2009-12-02 Thread Jags
setClickable(false) did the trick for me. thanks for all of your suggestions though ! On Nov 28, 9:18 am, Anirudh aithalanir...@gmail.com wrote: How about setting the onClickListener to null for that period of time and resetting it to a valid listener again? On Nov 26, 4:15 am, Mark Murphy

[android-developers] Re: android installer

2009-12-02 Thread george
here is my code to invoke the installer intent Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(appApkFile), application/ vnd.android.package-archive); startActivityForResult(intent, 0); so how to tell the actvity to install on sd card or phone memory

[android-developers] Re: setting ANDROID ENVIRONMENT IN UBUNTU8.0 operating system

2009-12-02 Thread bacchus
Hi, Have you tried to update eclipse through Help - Check For Updates, before installing ADT? Cheers, On Dec 2, 12:59 pm, sathya subbiah sathya.subbia...@gmail.com wrote: Hi Ram, I tried the following steps in installing Eclipse in Ubuntu 1) Downloaded classic version of Eclipse 2) Then

[android-developers] Accents in strings

2009-12-02 Thread Paul Burrowes
I have a text file (ASCII) which I am reading line by line through a Buffered Reader. There are some european accents in the file like è and they are not being read properly. I know this is a unicode problem but going further into my investigation led me to find that it is difficult to store

[android-developers] Re: animation between two activities

2009-12-02 Thread Streets Of Boston
You can attach listeners to your animation: Attach an animation-listener to your rotate-animation. In the 'on- animation-ended' callback of the listener, do the startActivity(...). When the animation ends, this callback is automatically called and will then start the activity. On Dec 2, 3:19 

[android-developers] Re: J2EE client on Android

2009-12-02 Thread Charlie Collins
Depends what you mean by J2EE client. A client could be just a web browser (Servlets and JSP are part of the JEE spec). You might mean more along the lines of a SOAP or JMS client or such though (which also can be done, not that they *should* be done, but can be). You need to clarify this quite a

[android-developers] Re: Is Android backwards compatible?

2009-12-02 Thread Dave Rowntree
On Dec 1, 6:46 pm, Dianne Hackborn hack...@android.com wrote: Just to reiterate -- there is really no reason not to build against the most recent (2.0) SDK, as long as you test against the older ones.  Use android:targetSdkVersion to tell the system that you have developed against the newer

[android-developers] Re: Android Market Anti-Piracy

2009-12-02 Thread nEx.Software
Alex, it also trivial to spoof the IMEI if you really wanted to. The general user is not going to be spoofing their ANDROID_ID. On Dec 2, 1:25 am, AlexK kucherenko.a...@gmail.com wrote: ANDROID_ID compromized http://strazzere.com/blog/?tag=android_id On Dec 1, 12:23 am, strazzere

Re: [android-developers] Re: Is Android backwards compatible?

2009-12-02 Thread TreKing
I think this has been brought up before and I've seen this as well. If you open the AVD manager that has the older platforms on it, you can manually start an emulator with one of them from there, then select the running emulator as your target when you do Debug or Run.

[android-developers] Re: Android Market Anti-Piracy

2009-12-02 Thread strazzere
As long as your quoting my blog, you might as well read it. If you do - you'll quickly find out that your whole protection scheme is moot. Yes, like I said, ANDROID_ID is spoofable - it is less so since it was moved into the secure.settings. Though IMEI is also spoofable, along with any other

[android-developers] Re: Whenever i move out from an activity, which is in a task of singleTask, activtiy is being cleared up to root of the stack

2009-12-02 Thread Mark Wyszomierski
I don't know if it's monkey or not - it looks like it's just this install (I'm sure it's the most recent SDK) - I can reproduce this odd behavior on there. On my other machine, and my test phone, looks like the default behavior is correct (with the same test apps and same SDK updates). Thanks for

[android-developers] Did Something Happen on Dec. 1st?

2009-12-02 Thread polyclefsoftware
Does anyone know if there were either issues with the Android Market, major carrier problems, or something else yesterday? I noticed a huge drop in sessions for all of my apps (using Flurry). I don't think the problem is reporting, since ad revenue and sales were also affected. Sessions for my

Re: [android-developers] Did Something Happen on Dec. 1st?

2009-12-02 Thread Wayne Wenthin
I got several Host not found and No route to host reports out of flurry but since this was my first day with it I can't say it isn't normal. But it would point to some network failure somewhere since the domain has been around for about 15 years. On Wed, Dec 2, 2009 at 7:49 AM, polyclefsoftware

[android-developers] Re: Did Something Happen on Dec. 1st?

2009-12-02 Thread polyclefsoftware
Maybe it was an issue with Flurry. My other metrics were down a little, but looking at them again, they're not in proportion to the numbers from Flurry. Thanks for the reply. On Dec 2, 9:59 am, Wayne Wenthin wa...@fuligin.com wrote: I got several Host not found and No route to host reports out

[android-developers] Re: Info required on call to onLocationChanged() functionality.

2009-12-02 Thread Lance Nanek
Pass 0 for the minTime and minDistance parameters on requestLocationUpdates to check the highest update frequency possible. Sometimes Location#hasSpeed returns true and Location#getSpeed has a speed value on my G1, although not always. On Dec 2, 1:04 am, Ruppin ruppina...@gmail.com wrote: Hi,  

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-12-02 Thread Jerry Brady
The droids run 2.0, but the published Eclair source is 2.1 and that was the fastest way to get an emulator that included the Accounts Sync settings that isn't in the 2.0 emulator. AFAIK you'll need that in order to affect any testing that will work on shipping 2.0 devices. I don't have time to

[android-developers] Re: Picking up a PhoneBook entry under Android 2.0 !!!

2009-12-02 Thread Dave Rowntree
On Nov 22, 11:40 am, GDroid baron...@gmail.com wrote: Using this solution, I need to set your API Target Level to 5 (Android2.0), and set the minimum (android:minSdkVersion) to 3 (Android1.5). This way I am able to compile code which reference API 5 methods and run on older devices.

[android-developers] Re: Did Something Happen on Dec. 1st?

2009-12-02 Thread Maps.Huge.Info (Maps API Guru)
Things seemed right on track with 9,509 uses of my app Radar Now! - about normal. -John Coryat Radar Now! What Zip Code? -- 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: Iphone like tab view

2009-12-02 Thread android-coder
I absolutely disagree with you. The implementation of tabs is terrible in Android. On the iPhone, you can have a complex interface, where each tab can the have a number of different sliding views. I am unaware of a possibility of doing this with Android, so you're limited to about 5 pages for

[android-developers] Re: ADC2 Results?

2009-12-02 Thread f_heft
I dont think it's fair to generally badmouth the judging process and with this the winners, too. Many of the winning apps are pretty well done , well polished or at least with unique ideas. Thats much more than the average of all apps in the market. And even there might be cases where an app

[android-developers] Re: ADC2 Results?

2009-12-02 Thread sai
Hearty Congrats!! To all winners. All said and done a winner is a winner. It would be interesting to know if these winners were preparing for ADC2 even before it was announced and how much time they took to develop these apps. I stated writing my app after ADC2 was announced and obviously time

[android-developers] Re: Iphone like tab view

2009-12-02 Thread nEx.Software
Umm... You can do all sorts of sliding views on your tabs in Android. It's not easy to do, but it is certainly possible. On Dec 2, 9:58 am, android-coder ahutchin...@gmail.com wrote: I absolutely disagree with you.  The implementation of tabs is terrible in Android.  On the iPhone, you can have

[android-developers] emulator sleep?

2009-12-02 Thread Jeffrey Blattman
i am writing a widget and trying to prove that it doesn't run when the phone is in deep sleep as i am setting an alarm with type ELAPSED_REALTIME. when i hit the end call on the emulator the device screen goes blank, but i still see my alarms being delivered. am i missing something? thanks.

[android-developers] Figuring out android.telephony.cdma

2009-12-02 Thread Ken H
Ok, I've built an app for doing ad-hoc drive testing on a GSM network and test it on my myTouch. Now I need to modify the code to work on a CDMA network (Verizon). I've been looking over the CdmaCellLocation class which seems to give me what I want. Question: does anyone know what

[android-developers] listen for / notify on widget removal?

2009-12-02 Thread Jeffrey Blattman
is there a way to listen for the removal of a widget? i have a widget that updates itself via setting alarms. when the widget is removed, the service behind the widget continues to run. that's not what the user expects i think. any ideas are appreciated. -- -- You received this message

[android-developers] access Java code from WebKit plugin

2009-12-02 Thread Digambar
Hi, I am adding Webkit plugin which needs to talk to Java/application interface. But as NPN_GetJavaEnv is not supported, its getting tough. I even tried creating separate lib which will be loaded by my JAVA service (android) and will provide JVM but as It is not working when I try to access that

[android-developers] ExpandableListView indicator over my text

2009-12-02 Thread jef
I'm using an ExpandableListView in one of my activity in a RelativeLayout ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent android:layout_height=fill_parent ... Button

[android-developers] Re: Android 2.0 Review

2009-12-02 Thread DarkWhoppy
I've been using Android since v1.0 and Dianne is right. I don't have v2.0 on my myTouch but there are options to turn on screen animations. Also, the dialer has always had big buttons... Do you USE an Android phone? Or have you just recently been using Android and feel you know enough to write an

[android-developers] How to load a file from assets directory in native code?

2009-12-02 Thread Tobias
Hello, I have placed a directory named Data in my assets directory and written in my Android.mk file the following line: LOCAL_ASSET_DIR += $(call find-subdir-assets) in my C code i want to load from this directory in the following way: char *file = Data/the_file; load_file(file) my full

[android-developers] Re: Push technique in android

2009-12-02 Thread veradis
Thanks Marc Reichelt, can u provide me some examples for HTTP connection. On Dec 2, 4:07 pm, Marc Reichelt mcreich...@googlemail.com wrote: Hi Veradis, you may open a HTTP connection from your client. The server itself should not close the connection, but send data over it if available.

[android-developers] UI Testing in Android Frameworks

2009-12-02 Thread Johnson
Now, we want to develop a tool to test the software under Android frameworks, mainly UI testing without software source, so we can't get the UI object. is there a method to get the handler of the UI object? thanks! -- You received this message because you are subscribed to the Google Groups

[android-developers] [Android Developers ] GK : Ho to Skip DroidDoc

2009-12-02 Thread Jack Ganesh
Hi all, Am compiling the Android Platform source code. It took around 4 hrs to compile the package. I Used $ make -j4 sdk Can any one suggess how to minimize the time and I dont want for compile the javadoc everytime How to skip this DroidDoc. ? Help me out. Thanks in Advance. -- You

[android-developers] open GL ES Games on Android

2009-12-02 Thread Ian Dunlop
I'm experienced with openGL but not Android. I just started. I have some spinning cubes running on a Droid and I'm barely getting 30FPS. Should I be using GLSurfaceView to get the best performance or is there a better way? Cheers, Ian Dunlop oeFun, Inc. -- You received this message

[android-developers] Capture key events while in background

2009-12-02 Thread pedramz
Hi, I am planning to port an application from Symbian to Android and I'm looking at the possibilities of the Android platform. My application runs in background and needs to detect when the user presses and holds a button (for 3-4 seconds) on the phone even when the phones key lock is on. I am

[android-developers] Question regarding Dev Phone 2

2009-12-02 Thread developm...@mobilaria.com
Hi all, I was wondering which Dev Phone I should buy ? On the Android Market I see two phones, the Dev 1 (Dream) and the Dev 2 (Magic)... If I understood correctly all the new Factory System Images on the HTC site are specifically for the Dream (devices that meet the following requirements: HTC

[android-developers] Accessing Remote Database using Android

2009-12-02 Thread Sanju
Hi.., Am new to mobile development environment as well as android... I m trying to store data in the remote database and retrieve back... Can anybody help me... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Broadcast Receiver From Widget

2009-12-02 Thread Henry S.
Hi, I am making a widget that needs a broadcast receiver, like the one in com.example.android.apis.appwidget.ExampleBroadcastReceiver. However, the example defines Intent.ACTION_TIMEZONE_CHANGED in the manifest, but there are some that do not allow this For example, Intent.ACTION_TIME_TICK says

Re: [android-developers] Re: ADC 2 and Android Market Place Application Error

2009-12-02 Thread James Yum
Hi Alex, The package names won't ever get released. I assure you there are valid reasons for this. Cheers, James On Wed, Dec 2, 2009 at 5:24 AM, alex gsm...@gmail.com wrote: Still, the question remains. Will the package names ever get released? Does anyone from google care to answer? --

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2009-12-02 Thread stunnahonsa
Have this problem. SDK under Win Vista tried to switch to http instead of https, dont work. also if i try get the xml manually (like in this forum described: http://www.anddev.org/problem_while_installing_android_sdk_20-t8681.html) from https://dl-ssl.google.com/android/repository/repository.xml

  1   2   3   >