[android-developers] PreferenceActivity Nullpoint Error

2009-11-19 Thread Radzell
I keep getting a nullpoint error from my preferenceactivity i have no idea whats wrong. I debug and the saveInstancestate is coming in null for some reason, but it may be something else. public class SettingsFrontEnd extends PreferenceActivity { public static final String NO_SELECTION =

[android-developers] How does one get their app 'Featured'?

2009-11-19 Thread SoftwareForMe.com SoftwareForMe.com
I'm sure this question has been around, but we've been too busy coding to see it pass. Does anybody know the criteria? Scott SoftwareForMe.com Makers of PhoneMyPC -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Market data loss

2009-11-19 Thread Rafael Sanches
here too. there's something official? On Nov 18, 9:35 pm, Shane shanemenchi...@gmail.com wrote: All our apps are showing wrong download numbers and wrong number of ratings.. Someone did a code push at Google that screwed things up.emergency rollback. On Nov 18, 9:11 pm, niko20

[android-developers] MMS ContentObserver and ContentProvider

2009-11-19 Thread Hendra Wijaya
I wonder if ContentObserver and ContentProvider for MMS are available? For SMS, they are available. Could anyone give a hint about MMS ContentProvider? -- 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: outgoing call data stream / channel

2009-11-19 Thread Hetal Patel
In Package android.media Classes MediaRecorder.MediaSource now after API Level 4 ( Android 1.6 ) Includes 4 VOICE_CALLVoice call uplink + downlink audio source 3 VOICE_DOWNLINKVoice call downlink (Rx) audio source 2 VOICE_UPLINK Voice call uplink (Tx) audio source See the

[android-developers] Re: outgoing call data stream / channel

2009-11-19 Thread Hetal Patel
I'm deseperately trying to use the VOICE_CALL parameter, in order to record both the in and out audio streams during a phone call. When using VOICE_UPLINK or VOICE_DOWNLINK or MIC, it works fine, however. At runtime, in the DDMS log, I get: 09-30 15:35:09.812: ERROR/AudioFlinger(51): invalid

[android-developers] Re: outgoing call data stream / channel

2009-11-19 Thread Hetal Patel
Understood, I thought that this was straightforward. When attempting to record a phone conversation on Android v1.6 (by using the MediaRecorder.AudioSource.VOICE_CALL audio source parameter), at runtime an exception is thrown unexpectedly. The test is performed on the HTC ADP with firmware 1.6.

[android-developers] Re: outgoing call data stream / channel

2009-11-19 Thread Hetal Patel
Here is what I see. In AudioRecord.h and in the MediaRecorder.AudioSource, the enum values differ. In native code (AudioRecord.h), the values are .. 44 enum input_source { 45 DEFAULT_INPUT =-1, 46 MIC_INPUT = 0, 47 VOICE_UPLINK_INPUT = 1, 48

[android-developers] my Android Market Dashboard is worrying me

2009-11-19 Thread Vassilios Kirellous
Hello Droidudes and Droiddettes, Im a bit concerned here. Just last night my Market dashboard showed my apps as having 1000's of downloads and 10's of active users. Now, its telling me that I have -1 active users. I'd like to know, is that active user in Australia? How can I go from

[android-developers] Re: Installing APK from Internet?

2009-11-19 Thread Syl
I have tested installation from Internet but only with the Emulator. Inside a web page, I set a link toward a APK file (for example : a href=/myApplication.apkClick here to install/a). From the web browser in the emulator, when I click on the link, the file is downloaded. Then, when I click on

[android-developers] Re: Problem in setMargins() and textview

2009-11-19 Thread skink
On Nov 17, 2:45 pm, Nithin nithin.war...@gmail.com wrote: Hi, I created a textview and also MarginlayoutParams. Then i put setMargin for the MarginLayoutParams and inserted that to textview using tv.setLayoutparams(), but its not working. The code is, MarginLayoutParams compParams = new

[android-developers] Re: [Quit application correctly] How to execute code before exiting application ?

2009-11-19 Thread Syl
Thanks Dianne. Ok, I could implement something like this : - implement a counter inits to 0 when the thread is started - when an Activity starts (in method onStart() ), increment the counter - when an Activity stops (in method onStop() ), decrease the counter - when the counter equals 0, stop

[android-developers] getting error while importing com.google.googlenav.map.MapPoint; ..........

2009-11-19 Thread bharath
hi , i am getting error while importing import com.google.googlenav.DrivingDirection; import com.google.googlenav.map.MapPoint; can any one provide me the reason ... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Anyone konws the ConnectivityBroadcastReceiver class?

2009-11-19 Thread Nine
Anyone konws the ConnectivityBroadcastReceiver class? There is nothing clues in new SDK documents.When I ran my app,there is an error in background 09-05 09:53:58.889: ERROR/ActivityThread (188):android.app.IntentReceiverLeaked: Activity

[android-developers] ADB rejected shell command (ls -l /)

2009-11-19 Thread Chris
im getting this problem very often now a days:::ADB rejected shell command (ls -l /). And after this nothing works in the emulator. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-19 Thread Klaus Kartou
Agreed, feedback from Google would be nice... On Wed, Nov 18, 2009 at 10:58 AM, blindfold seeingwithso...@gmail.comwrote: Same thing with me, I have copy protection turned off in Android Market. It would be good now to get some feedback from Google or HTC on whether it is a bug. On Nov

[android-developers] Re: Should I use a 'TextView' hovering over 'GLSurfaceView' for a game UI?

2009-11-19 Thread hzakimoto
Hi niko20. Thank you for your reply. I agree with you on user experience. But if we use transparent UI background and styled text/buttons, the hovering UI looks pretty good. =) On Nov 19, 1:01 am, niko20 nikolatesl...@yahoo.com wrote: Dont know the answer performance wise, but I would

Re: [android-developers] getting error while importing com.google.googlenav.map.MapPoint; ..........

2009-11-19 Thread Rachel Blackman
As far as I know, the com.google.googlenav package is not around anymore, or at least not user-accessible. You want the newer com.google.android.maps package. http://code.google.com/android/add-ons/google-apis/reference/index.html On Nov 19, 2009 1:05 AM, bharath gunturibharathmo...@gmail.com

[android-developers] Overriding onPrepareOptionsMenu

2009-11-19 Thread westmeadboy
Is it necessary to check the value returned by: super.onPrepareOptionsMenu(Menu) (i.e. when calling the implementation in the Activity class) ? -- 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: Network File Transfer Android Apps

2009-11-19 Thread Hamilton Lima (athanazio)
What if you just convert the file to the BASE64 format (String) and sent in the URL as multiple pieces ? On Nov 19, 3:59 am, Bharath Gandhi bharathra...@gmail.com wrote: Hi, I need to transfer the file from Android mobile (Client) to standalone PC (Server) via network. Please let me know is

Re: [android-developers] Re: Network File Transfer Android Apps

2009-11-19 Thread Bharath Gandhi
Could you please send some open source android apps for sending file from android mobile to PC over HTTP protocol. Thanks, Bharath. On Thu, Nov 19, 2009 at 3:44 PM, Hamilton Lima (athanazio) hamilton.l...@gmail.com wrote: What if you just convert the file to the BASE64 format (String) and

[android-developers] Weird EditText behavior in Android 2.0

2009-11-19 Thread Teo [GD API Guru]
Hi, i've bumped into some weird behavior in Android 2.0 in the emulator: newly created AVDs show some kind of a Japanase (if i'm not mistaking) IME when i type in the textbox. The text is shown in the IME but not in the textbox. I've also seen that disabling certain options which are enabled by

[android-developers] what happened to my application's statistics?

2009-11-19 Thread Éva Lovrencsics
I don't understand it... Yesterday I had 860 downloads and today I have 400. Why? How can the number of downloads decrease? How can I find the real numbers? Evi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread arnouf
Apparently all download statistics have been reinitialized ??!!! On 19 nov, 11:21, Éva Lovrencsics lovi...@gmail.com wrote: I don't understand it... Yesterday I had 860 downloads and today I have 400. Why? How can the number of downloads decrease? How can I find the real numbers? Evi --

[android-developers] Re: Contacts FAQ?

2009-11-19 Thread jarkman
GDroid - here's a recipe for supporting two SDK versions in one app: http://groups.google.com/group/android-developers/msg/f3b24f3a0748a622 Richard On Nov 18, 9:43 am, GDroid baron...@gmail.com wrote: I would like to add one more question to this issue: 15) What is the best way to write the

Re: [android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread Marc Lester Tan
True, my app have 47k downloads and 800 ratings and now, 1776 and 28 ratings!, what's happening Google? On Thu, Nov 19, 2009 at 6:22 PM, arnouf arnaud.far...@gmail.com wrote: Apparently all download statistics have been reinitialized ??!!! On 19 nov, 11:21, Éva Lovrencsics lovi...@gmail.com

[android-developers] Re: building to support both contacts 1.6 and 2.0 apis

2009-11-19 Thread jarkman
We've built two lumps of API-specific code for 1.6 2.0, and we choose between them at runtime with this trick: http://groups.google.com/group/android-developers/msg/f3b24f3a0748a622 Richard On Nov 17, 8:24 pm, androsag sagu...@gmail.com wrote: As has been discussed on this list, the 2.0

Re: [android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread Vassilios Kirellous
I had 1000's of users and now it is telling me that I have -1 active users. How can I have -1 active users? 2009/11/19 Marc Lester Tan mail...@gmail.com True, my app have 47k downloads and 800 ratings and now, 1776 and 28 ratings!, what's happening Google? On Thu, Nov 19, 2009 at 6:22

[android-developers] Adsense for Mobile Content

2009-11-19 Thread Vassilios Kirellous
Hi, Apparently there is now Adsense for mobile content - without the SDK. Has anyone here been trying it ?? 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@googlegroups.com To

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

2009-11-19 Thread Paul Turchenko
Guess they are gathering data from different application vendors. As far as I can tell, they will tell that device is 100% blacklisted only if 2 of 3 application vendors have reported that particular IMEI has pirated application installed. Look here:

Re: [android-developers] AsyncTaskPool | Tutorial

2009-11-19 Thread Atif Gulzar
Also, since Donut, the limit of enqueued tasks in AsyncTask is 128, not 20. So AsyncTask has a maximum of 10 threads running concurrently so what is the solution for Android 1.5 -- Best Regards, Atif Gulzar I Unicode, ɹɐzlnƃ ɟıʇɐ On Wed, Nov 11, 2009 at 9:25 PM, Romain Guy

[android-developers] Send message from Android emulator to web

2009-11-19 Thread andu
I have been trying to send message from the android emulator to the web server by using HttpURLConnection. In the server side I use php to read the sent message and keep it in database (mysql). when I send the message, a blank row is added in the database, but the message sent doesn't appear. I

[android-developers] How can I change the typeface of the Android project

2009-11-19 Thread andu
Hello I am developing a localized application for android phone. the language that I use is Amharic. Can I change the font type (typeface) of the android project label to another language. that is, in the AndroidManifest.xml file, can make the android:label to be in another language.

[android-developers] Lyrics Synchronization on audio using MediaPlayer class

2009-11-19 Thread Wei Jian
Hello, had anyone successfully did Lyrics Synchronization on Android? For example, display the lyrics while the song is playing? Can someone give me some idea how to do this? Please...I need help!!! -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] pressed image not showing !

2009-11-19 Thread Jags
?xml version=1.0 encoding=utf-8? selector xmlns:android=http://schemas.android.com/apk/res/android; item android:drawable=@drawable/image1 / !-- default -- item android:state_pressed=true android:drawable=@drawable/ image2 / !-- pressed -- item android:state_focused=true

[android-developers] Re: Setting the ID in a SimpleAdapter

2009-11-19 Thread jax
What is the best way to do this? Extend the ListView...or the adapter? Or is there are more efficient way? On Nov 19, 3:07 am, jeffro j...@trackaroo.com wrote: You need to implement the Adapter method to pass the id value you want: public long getItemId(int index) {} On Nov 18, 7:17 am,

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

2009-11-19 Thread LambergaR
There are a few things I would like to point out. First of all, I think, that Google (or the OHA) are not there to support some lazy developers that are not able to implement some simple web activation mechanism. Java apps ware (and will be) subject to reverse engineering. Android platform is open

[android-developers] Re: Preference change notifying the main Activity

2009-11-19 Thread Kieran
I found that this worked for every preference I had that persisted a value, but the 'Clear Cache' button doesn't seem to work. I tried extending DialogInterface then using this code: public void onClick(DialogInterface dialog, int which) { if(which == DialogInterface.BUTTON_POSITIVE){

[android-developers] CameraSurfaceView and how surfaceCreated() gets called - Can someone please help me?

2009-11-19 Thread android-newbie
I have some questions regarding code below for camera preview applicaiton. Can someone please help me out? 1. How does surfaceCreated get called? From SDK, it is called immediately after the surface is first created, but I still don't know who creates this surface? 2. Why do we need to set

Re: [android-developers] CameraSurfaceView and how surfaceCreated() gets called - Can someone please help me?

2009-11-19 Thread Mark Murphy
android-newbie wrote: 1. How does surfaceCreated get called? From SDK, it is called immediately after the surface is first created, but I still don't know who creates this surface? Android does, as part of setting up the SurfaceView after your onCreate() method returns. 2. Why do we need

[android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread westmeadboy
Yeah, for me, the apps I haven't updated for a while have lost loads of stats, but the app I update all the time hasn't lost anything. On Nov 19, 6:57 pm, Vassilios Kirellous vassi...@gmail.com wrote: I had 1000's of users and now it is telling me that I have -1 active users. How can I have -1

[android-developers] Getting a Gmail new message intent

2009-11-19 Thread vendor.net
Hi! Is there a way to intercept when a new message arrives at Gmail, read the subject and if the subject contains word to archive and label the message and to bypass the notification and if not - to notify the user. I want to make an application that prevents the user to get notifications for

[android-developers] Task List

2009-11-19 Thread Raja Nagendra Kumar
Hi, Does Android 2.0 support Tasksbar to view the list of applications which are opened.. Application switching this way can be much faster than every time going to app and starting. Regards, Raja Nagendra Kumar, C.T.O www.tejasoft.com -- You received this message because you are subscribed to

[android-developers] Re: Setting the ID in a SimpleAdapter

2009-11-19 Thread jax
OK, I did it by extending SimpleAdapter. cheers On Nov 19, 6:59 pm, jax jackma...@gmail.com wrote: What is the best way to do this? Extend the ListView...or the adapter? Or is there are more efficient way? On Nov 19, 3:07 am, jeffro j...@trackaroo.com wrote: You need to implement the

[android-developers] Re: Send message from Android emulator to web

2009-11-19 Thread Nithin
Hi, HttpUrlConnection is for just to manage HTTP connection. For sending data to server , use HttpClient, HttpPost, HttpEntity etc. I will give a very brief idea about this. DefaultHttpClient client = new DefaultHttpClient(); HttpPost post = new HttpPost(); post.setEntity(httpEntity);

[android-developers] Re: App name/icon problems on Hero after reboot

2009-11-19 Thread Alex
HTC has just pushed an update (1.56.651.2 ) which fixed the problem. The busted apps now work just fine without reinstalling them. On Nov 14, 8:10 am, AngelOD angelod1...@gmail.com wrote: Hi, I would just like to add here, that I have a Scandinavian HTCHero, and I've tried to recreate several

Re: [android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread Éva Lovrencsics
I updated my app 5 days ago. On Thu, Nov 19, 2009 at 13:26, westmeadboy westmead...@yahoo.co.uk wrote: Yeah, for me, the apps I haven't updated for a while have lost loads of stats, but the app I update all the time hasn't lost anything. On Nov 19, 6:57 pm, Vassilios Kirellous

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

2009-11-19 Thread LambergaR
And BTW ... why do you force user to give you their personal data when they try to get their device checked? -- 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] I Didn't come here to cause no trouble, I just came to do the Android Market Shuffle!

2009-11-19 Thread niko20
*grin* Although seriously, I doubt those with paid apps really appreciate their rankings being all screwed with. -niko -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: what happened to my application's statistics?

2009-11-19 Thread Justin Giles
Mine are back to normal now. 2009/11/19 Éva Lovrencsics lovi...@gmail.com I updated my app 5 days ago. On Thu, Nov 19, 2009 at 13:26, westmeadboy westmead...@yahoo.co.uk wrote: Yeah, for me, the apps I haven't updated for a while have lost loads of stats, but the app I update all the

[android-developers] Re: I Didn't come here to cause no trouble, I just came to do the Android Market Shuffle!

2009-11-19 Thread niko20
This also came to me last night, a little rendition of American Pie... ... I knew I was out of luck the day android market died, .. I started signing, bye, bye, android mar-ket apps, aye! Put my App on the mar-ket but the mar-ket was fried, Saw my devel-op-er con-sole and gave out a

[android-developers] Re: Emulator Problem: No emulated GSM ubuntu 9.04 x64

2009-11-19 Thread Andre
Hi Steve, Thanks for reply! I'll try to use your solution, however, my computer is much slower than yours... Best Regards. -- 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: ERROR: the user data image is used by another emulator. aborting

2009-11-19 Thread Jon
I have seen this error in two situations. The first one is when my AVD is created on a network folder. That problem is resolved when I move the AVD folder to my local drive and update the AVD .ini in my home folder on the network. The second way I can get this error is when I try to run two

[android-developers] eclipse plugin is gone

2009-11-19 Thread gsgleason
https://dl-ssl.google.com/android/eclipse/ gives 404. Is this intentional? I'm guessing not since this http://developer.android.com/sdk/eclipse-adt.html site still has it documented as the place to get the plugin. -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Download Android source code failed

2009-11-19 Thread Horst
What's ur error msg exactly? I tried once this morning. It brake when I ran repo sync. Err Msg:connection closed by peer Now I'm trying it again, and it works so far (keep downloading...). On Nov 18, 5:20 pm, Roman ( T-Mobile USA) roman.baumgaert...@t- mobile.com wrote: I noticed that I got

[android-developers] Re: ERROR: the user data image is used by another emulator. aborting

2009-11-19 Thread Jon
I ran into this same error today and it appears that the problem is network related. In my ~/home folder is the .android/avd folder. For each AVD I created there is a *.ini file and a folder with the same name. I was able to modify each .ini file and relocate the AVD folders to my local drive. The

[android-developers] How to highlight text in List

2009-11-19 Thread Diya
Hi All, I want to know how can I highlight text in a list when cursor moves through that particular item of list which selected for time being.Just like when we want to play songs,we press down key to chose particular songs and the song selected at that time appears by different color or

[android-developers] Re: ERROR: the user data image is used by another emulator. aborting

2009-11-19 Thread Jon
I have seen this error in two situations. The first one is when my AVD is created on a network folder. That problem is resolved when I move the AVD folder to my local drive and update the AVD .ini in my home folder on the network. The second way I can get this error is when I try to run two

[android-developers] How to send wap push sms in android

2009-11-19 Thread saikiran n
Hai, I want to send an wap push sms is it possible in android? if so can any one help me how to do this thanks to all -- 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

[android-developers] WebView not responding to touch events

2009-11-19 Thread Todd Benge
Hi, I have a WebView embedded in a frame for showing ads. The WebView is at the bottom of each page in a FrameLayout of each screen of a tabbed layout. Here's the base WebView layout: LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent

[android-developers] Camera button in the emulator is disabled?

2009-11-19 Thread pablo
Hi, The camera button on the android emulator is disabled. I can't click on it and when I hover with the mouse the background is not blue like in the other buttons. I've tried to add camera support - true hardware but the button is still un-clickable. How can I click on the button? What should

[android-developers] Re: Get frequency of audio input

2009-11-19 Thread ademcan
Hi sixfootallrabbit, I am actually working on a new application for android and I need to know the frequency of an audio input (in Hertz), same like your fist message. Do you have any new information about it ? I tried the method getMaxAmplitude() of MediaRecorder class but it is not working. I

[android-developers] Installing custom built SDK

2009-11-19 Thread KirthGersen
What is the correct way to install a custom built SDK? I have successfully built the 'Donut' android SDK, but I am having trouble installing it. I built the SDK according to the following commands: /bin/rm -rf out mkdir out source build/envsetup.sh lunch sdk-user make sdk The 'make'

[android-developers] fatal: The remote end hung up unexpectedly

2009-11-19 Thread accido
Is there something wrong with the servers, the last 2 days I have not been able to finish a repo sync command with out the error, fatal: The remote end hung up unexpectedly. any help would be greatly appreciated -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Android market .... what's happening?

2009-11-19 Thread Christopher
My active downloads also dropped, and the market also says I have 0 ratings and comments, though they are visible. This is only on my paid version. The free version is unaffected. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Please help me to choose Android Phones (For Android development)

2009-11-19 Thread kolel2
Hi Ash, I work for a company called PerfectoMobile (used to be Nexperience). See www.perfectomobile.com. We enable access to real mobile devices via the web. You can install your app on the device and test it as if you were holding the device in your hands. We just launched a campaign especially

[android-developers] how to play buffers in Media Player

2009-11-19 Thread krishna
Hi everybody, I am trying to play a file which is in sdcard using local server approach, in the main activity i started SerVer class which extends thread and open server socket on local emulator waiting for connection,when media player tries to connect on dummy media file on

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

2009-11-19 Thread kc3000
compare version info from app on the device and from a latest version text file on the web On Nov 18, 1:24 am, westmeadboy westmead...@yahoo.co.uk wrote: On Nov 18, 2:57 pm, André andre.rab...@googlemail.com wrote: Note the users that an update is available from within your game, e.g.

[android-developers] Re: hidden APIs in Android

2009-11-19 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
Try it you will not get a compile though..the are not in the framework jar so it would be a pointless task on your part.. Fred Grott Android Developer http://mobilebytes.wordpress.com On Nov 18, 7:49 pm, tomei.ninge...@gmail.com tomei.ninge...@gmail.com wrote: There are a bunch of APIs that

[android-developers] For Google about BaseAdapter class

2009-11-19 Thread WoodManEXP
For Google about BaseAdapter class In Android 1.6 and 2.0 the BaseAdapter class has apparently been modified to throw an exception when it sees the Adapter.getCount() method return a number different than what it picked up when BaseAdapter.notifyDataSetChanged() was called (at least I did not

[android-developers] WebView not responding to touch events

2009-11-19 Thread todd
Hi, I have a WebView embedded in a frame for showing ads. The WebView is at the bottom of each page in a FrameLayout of each screen of a tabbed layout. Here's the base WebView layout: LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent

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

2009-11-19 Thread Kaj Bjurman
Do they really expect people to manually report each phone? On 19 Nov, 12:09, Paul Turchenko paul.turche...@gmail.com wrote: Guess they are gathering data from different application vendors. As far as I can tell, they will tell that device is 100% blacklisted only if 2 of 3 application

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

2009-11-19 Thread westmeadboy
Thanks but what about the easiest solution without having to set up your own web hosting? On Nov 19, 3:14 am, kc3000 kendrick_wil...@hotmail.com wrote: compare version info from app on the device and from a latest version text file on the web -- You received this message because you are

[android-developers] Re: Android market .... what's happening?

2009-11-19 Thread ty
Same problem here. All of our apps are being affected by this. For example, one went from 6+ downloads to only 5018 overnight. This is also impacting rankings on the Andrid market which is serious. When this problem occured, one of our apps dropped from #2 spot in its category (it's been

[android-developers] Re: pressed image not showing !

2009-11-19 Thread Jags
it seems it is not working with imagebuttons but working with buttons http://groups.google.com/group/android-developers/browse_thread/thread/3b193e2a1a74cb38/fd66c64817e56052?show_docid=fd66c64817e56052fwc=1 Jagat On Nov 19, 5:49 pm, Jags jag...@gmail.com wrote: ?xml version=1.0

[android-developers] How to send e-mail without user input

2009-11-19 Thread Nithin
Hi, Shall we can send email without user input. Means, I want to send e- mail every day at 6AM. Thanks Nithin -- 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] Re: pressed image not showing !

2009-11-19 Thread Jags
having done that, I figured out I only need my buttons be focussed on touch not by center or 5way nav buttons, is there a way to do that ? On Nov 19, 8:13 pm, Jags jag...@gmail.com wrote: it seems it is not working with imagebuttons but working with buttons

[android-developers] Re: video recording issue

2009-11-19 Thread Greivin Lopez
I think you don't have to open and set parameters for the camera when recording video, at least it never work for me, try to remove this code: camera = Camera.open(); Camera.Parameters parameters = camera.getParameters(); parameters.setPreviewSize(352, 288); parameters.set(orientation, portrait);

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

2009-11-19 Thread nEx.Software
@LambergaR: Because they are trying to trick the user into registering their phone to justify they are not a pirate, but in actuality, they user is being forced to report himself/herself as a potential pirate and to give their personal information so that it may be used against them in the future.

Re: [android-developers] Re: I Didn't come here to cause no trouble, I just came to do the Android Market Shuffle!

2009-11-19 Thread Vassilios Kirellous
Its great you made a song out of this. Do you have dance moves to go with it? Anyway, does this mean we get to have our $25 subscription back? 2009/11/19 niko20 nikolatesl...@yahoo.com This also came to me last night, a little rendition of American Pie... ... I knew I was out of

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

2009-11-19 Thread Jerry Brady
Dan, Thanks for all of this. I just returned to the office and will be taking a look to see how much further I can get and I will certainly be interested in helping with your accounts project. I got as far as getting my account to show up in the list of accounts along with Google, Facebook and

Re: [android-developers] Re: Android market .... what's happening?

2009-11-19 Thread Bahadır Yağan
My stats are back to normal now. On Thu, Nov 19, 2009 at 4:11 PM, ty tyavero...@gmail.com wrote: Same problem here. All of our apps are being affected by this. For example, one went from 6+ downloads to only 5018 overnight. This is also impacting rankings on the Andrid market which is

[android-developers] Android developer site should provice current Android phones info...

2009-11-19 Thread Moto
I'm currently finding my self searching which devices are currently out, in which countries, what current Android version they are running and when they are scheduled for next update... Where can I find this information? It would really help developers know this type of information to know what

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

2009-11-19 Thread Kaj Bjurman
So how do they they expect piracy to be reported? How do they handle a worm or malicious program / user that reports all IMEI numbers that it finds (or generates)? Creating a program that generates IMEI and then reports them shouldn't be that hard. On 19 Nov, 15:40, nEx.Software

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

2009-11-19 Thread nEx.Software
It would be incredibly easy to do, and I am sure that at least one person has already thought of that as a way to prove this is not a viable solution. On Nov 19, 8:04 am, Kaj Bjurman kaj.bjur...@gmail.com wrote: So how do they they expect piracy to be reported? How do they handle a worm or

[android-developers] Saving Activity state when pressing Home

2009-11-19 Thread jax
I need to store a variable that contains my application state restoredClockTime I do this in onSaveInstanceState and onRestoreInstanceState and it works when I flip the screen on the G1. The problem is when I press the Home button and then re-enter the activity it does not work. why is this?

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

2009-11-19 Thread LambergaR
@nEx.Software: How can this make any sense? And, even if you do use this wannabe anti-piracy software, you will still have to provide some sort of mechanism to discover all the phones with illegal software installed, get their IMEIs and report them to some trustworthy company so they can process

[android-developers] Re: How to Load PDF to Browser?

2009-11-19 Thread xu haojie
As I know, there isn't one function now, which can show PDF or DOC. On Nov 18, 4:28 pm, Moon Technolabs moonsoftwaret...@gmail.com wrote: Is there any inbuilt function to load PDF or DOC file.. Tried using Webview but content was not displayed... -- You received this message because you are

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

2009-11-19 Thread strazzere
As a developer, I will definitely integrate their protection system in my application and WILL deny activation if IMEI is in the black list. It would make sense for a software developer who works at ArtfulBits to use their own protection, wouldn't it? http://www.linkedin.com/in/paulturchenko

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

2009-11-19 Thread nEx.Software
I full-heartedly agree with you LambergaR. It is an extremely flawed plan and it simply cannot work as the creator expects. On Nov 19, 8:27 am, LambergaR martin.s...@gmail.com wrote: @nEx.Software: How can this make any sense? And, even if you do use this wannabe anti-piracy software, you will

Re: [android-developers] Re: How to Load PDF to Browser?

2009-11-19 Thread Mark Murphy
xu haojie wrote: As I know, there isn't one function now, which can show PDF or DOC. On Nov 18, 4:28 pm, Moon Technolabs moonsoftwaret...@gmail.com wrote: Is there any inbuilt function to load PDF or DOC file.. Tried using Webview but content was not displayed... Some devices may ship with

[android-developers] How to know the list of available extra for a intent ?

2009-11-19 Thread sangorys
Hello, how to know the list of available extra for a intent ? For example, I want to know all available extra for ACTION_BATTERY_CHANGED. What is the method to know them ? o I have seen nothing on the official dev guide, reference in http://developer.android.com o I have seen nothing on

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

2009-11-19 Thread Paul Turchenko
I think that's intended for companies that develop software... On Nov 19, 4:01 pm, Kaj Bjurman kaj.bjur...@gmail.com wrote: Do they really expect people to manually report each phone? On 19 Nov, 12:09, Paul Turchenko paul.turche...@gmail.com wrote: Guess they are gathering data from

Re: [android-developers] How to know the list of available extra for a intent ?

2009-11-19 Thread Mark Murphy
sangorys wrote: how to know the list of available extra for a intent ? Look in the documentation for that Intent. If the extras are not documented, they are not necessarily reliable under their current names. For example, I want to know all available extra for ACTION_BATTERY_CHANGED. What is

[android-developers] Flashing Android 2.0 on G1

2009-11-19 Thread Shrikant Agrawal
Hi All I want to upgrade my G1, which is currently running on andriod 1.5, to andriod 2.0 but i cant find the system.img file in the andorid2.0 sdk. Do anybody know where I can the system.img file android 2.0 ??? Thanks in advance Shrikant Agrawal -- You received this message because you are

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

2009-11-19 Thread AlexK
Thanks for yours nice ideas. I'll install CAPTCHA on form. On Nov 19, 5:04 pm, Kaj Bjurman kaj.bjur...@gmail.com wrote: So how do they they expect piracy to be reported? How do they handle a worm or malicious program / user that reports all IMEI numbers that it finds (or generates)? Creating

[android-developers] Re: Android market .... what's happening?

2009-11-19 Thread nubin...@gmail.com
Back to normal now. Thanks! On Nov 19, 6:53 am, Bahadır Yağan bahadir.ya...@gmail.com wrote: My stats are back to normal now. On Thu, Nov 19, 2009 at 4:11 PM, ty tyavero...@gmail.com wrote: Same problem here. All of our apps are being affected by this. For example, one went from 6+

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

2009-11-19 Thread G
Honestly I think you guys are spending way too much time and energy on this thing. Here are the facts: FACT: Piracy is a part of life, you will never stop it, ever. FACT: On the first page of this thread someone mentioned that we are now in 2009 where every major application has online activation

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

2009-11-19 Thread Dan Sherman
Just as a helpful suggestion, you'd be best off tracking based on some pub/priv key system, which developer issued evidence, so when the inevitable happens, you can retract evidence from a certain user. Otherwise, even with a captcha, this is just asking to be hit hard... On Thu, Nov 19, 2009 at

Re: [android-developers] Flashing Android 2.0 on G1

2009-11-19 Thread Mark Murphy
Shrikant Agrawal wrote: Hi All I want to upgrade my G1, which is currently running on andriod 1.5, to andriod 2.0 but i cant find the system.img file in the andorid2.0 sdk. Do anybody know where I can the system.img file android 2.0 ??? Android 2.0 has not been officially released for the

  1   2   >