[android-developers] Re: Can anyone tell me ONE app that shows up in Android Market on HTC Tattoo

2009-12-18 Thread Mark Wyszomierski
Hi Dianne, I'm missing that android:required part - is this how we can use it?: uses-permission android:name=android.permission.CAMERA / uses-feature android:name=android.hardware.camera android:required=false/ I want to say: I want permission to use the camera if it exists, and I'm going

[android-developers] Format SD card.

2009-12-18 Thread Raj
Hi, Is there any way to Format the SD card data, through Android SDK code? Regards, Raj -- 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

[android-developers] link for my products in android market

2009-12-18 Thread Jags
If I have any products published by me in android market and I want to put a link to that [in my website, marketing docs] to enable users to see it before downloading in android device ? Wont I be able to do that in Android ? As we do it in case of iPhone apps ? regards -- You received this

[android-developers] using soundPool but sound plays after a delay, sound is lagging

2009-12-18 Thread rukiman
I am using the SoundPool as follows: Caching my sounds: // load sound effects soundPool = new SoundPool(2, AudioManager.STREAM_MUSIC, 0); soundPoolMap = new HashMapInteger, Integer();

[android-developers] Sensor Manager: How to Use

2009-12-18 Thread bernis Nzouwo
I work on SDK1.5 this code compile and make apk file. but this file don't walk on my virtual device. package com.exemple.android.skeleton; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import

[android-developers] Re: Same servicein multiple APKs, only want best one to launch

2009-12-18 Thread Watcher
Hi Diane, something else if you want.  Then when you bind to the service, set an explicit component in the intent for the service you have picked. How would I do that if the service is implemented in another APK ? I can't call new Intent(Context context,Class clazz) in this case because clazz

[android-developers] [DRM] How to install a DRM CD content?

2009-12-18 Thread kalikali
Dear All, I want to implement OMA DRM 1.0 CD case on my project. I know Android default support OMA DRM 1.0 FL case, after i tracing codes, i found after downloading content(FL ot CD), it will call addDrmFile() function in DrmStore.java. In FL case, the process is ok because there is no

[android-developers] Re: Same servicein multiple APKs, only want best one to launch

2009-12-18 Thread Watcher
Using android:priority is an interesting idea ! I didn't even know it was there. Reading from the docs, I see that When an intent could be handled by multiple activities with different priorities, Android will consider only those with higher priority values as potential targets for the intent.

[android-developers] Application Initialization: Best or Better Practice

2009-12-18 Thread Samuh
I have an application that is driven by a configuration XML: various app properties are loaded at the app start-time by parsing the XML and initializing static variables of some class. The data read from this XML drives different Activities of the application. Presently, I have called the parsing

[android-developers] OpenGL hardware requirements specification

2009-12-18 Thread Hexage
There is growing list of upcoming devices (HTC Tattoo, HTC Legend, MOTO MT710, etc.) without hardware accelerated OpenGL. Basically all devices based on a low-end chip (Qualcomm MSM72xx, Marvell PXA310) will not feature GPU. However many games rely on a hardware accelerated OpenGL for lag-free

[android-developers] Re: Format SD card.

2009-12-18 Thread budziq
On Dec 18, 10:38 am, Raj lal.ra...@gmail.com wrote: Hi, Is there any way to Format the SD card data, through Android SDK code? Regards, Raj It depends on what you mean by format. If you'd just like to remove all files fro the SD then it is as simple as traversing all directories with

[android-developers] Re: Format SD card.

2009-12-18 Thread budziq
On Dec 18, 10:38 am, Raj lal.ra...@gmail.com wrote: Hi, Is there any way to Format the SD card data, through Android SDK code? Regards, Raj It depends on what you mean by format. If you'd just like to remove all files fro the SD then it is as simple as traversing all directories with

[android-developers] Re: Can i initiate threads in BroadcastReceiver's onReceive method?

2009-12-18 Thread Samuh
I just skimmed through your post; my 2 cents: - you have not verified the Intent Action in onReceieve call - Generally, onReceive() should return immediately so you should use threads and/or background service, if possible. -- You received this message because you are subscribed to the Google

[android-developers] Re: button Click event inside custom listview.... Help!

2009-12-18 Thread Geoffrey Monté
I have the same request: this is my getView method : public static class ViewHolder { TextView libelle; TextView ville; Button map; Button itineraire; } public View getView(int position, View

[android-developers] Re: Getting contact's address

2009-12-18 Thread forandroid
i am trying to get the address from the contacts from the following query in the Businesscard application cursor = contentResolver.query(StructuredPostal.CONTENT_URI, new String[]{StructuredPostal.FORMATTED_ADDRESS}, StructuredPostal.CONTACT_ID + = + contactId,

[android-developers] Re: button Click event inside custom listview.... Help!

2009-12-18 Thread Kumar Bibek
What you are doing is right, holder.map.setOnClickListener(new OnClickListener(){ public void onClick(View v){ // Wirte your code } ); On Dec 18, 3:20 pm, Geoffrey Monté mgeoff...@gmail.com wrote: I have the same request: this is my getView method :         public static

[android-developers] Re: Upload multiple versions for single android application for different SDK levels 1.5, 1.6, 2.0

2009-12-18 Thread lk
hi TreKing Thanks for your reply. I was not aware of reflection.Now I am learning about reflection.I will seriously follow your recommendations. thanks Alok On Dec 17, 12:20 am, TreKing treking...@gmail.com wrote: I've three different .apk files for all three SDK. You should probably

[android-developers] Re: Display Contacts You don't have any contacts to display possibly caused by NullPointerException: null

2009-12-18 Thread Scott W
Just a quick follow-up: Using the built-in search facility, I am able to view names, however no information is displayed. I believe the problem here is the same as the Names list. Looking at res/layout-finger/contact_card_layout.xml in Eclipse is a NullPointerException: null. Again, LogCat shows

[android-developers] Re: AutoCompleteTextView doesn't work with android:style/Theme.Light

2009-12-18 Thread Marcus
The same on my Motorola Milestone (german Droid) with still 2.0 -- 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] Android device management

2009-12-18 Thread saikiran n
Hi, I hear android doesn't support device management right know. But if we want to implement can any body give me some key ideas -- 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] Simulating scrollable tables

2009-12-18 Thread Dilli
Hello, I would like to create a web page with two iframes. The problem is that even though my web browser one of the frames is scrollable and on the browser, it shows up till the end. This is troubling me. Could someone help me find a solution to scrolling between the iframes for the android

[android-developers] Get the list of discovered bluetooth

2009-12-18 Thread rezar
Can any body help me how can I get the list of discovered bluetooth device ? I am currently developing an application which scan for bluetooth devices in a specific time interval and log their names. I haven't been found any example yet. also it seems that BluetoothAdapter class does not support

[android-developers] Re: multiple activity refresh

2009-12-18 Thread Jags
is it mandatory to be the db created by SQLiteOpenhelper ? is it mandatory to be the field names all small ? I compared the whole code with mark's reviewed it umpteen number of times, dont understand where is any trick left ? I am gonna try changing the 2 field names to all small case i

[android-developers] Re: Large data file: how to deal with it?

2009-12-18 Thread Andriy Tsykholyas
On Dec 17, 5:09 pm, Alain aarn...@gmail.com wrote: 1. How does one split an App that requires overs 10MB when the code is combined with thedata,  into two APKs, one APK for the code to make it as small as possible and the second APK for the 10MBdatafile. H There are multiple possibilities. The

[android-developers] Extract tar.gz file

2009-12-18 Thread Yves Glodt
Hi there, has someone found a way to extract a tar.gz file from code? I am aware of gzipinputstream, but that still leaves me with a .tar file... best regards, Yves -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Re: Need an invitation to google Wave?

2009-12-18 Thread fengyuan Ivan
I am in. please invert me , thanks a lot. 2009/11/27 sheik sheik...@gmail.com i like to have one googlewave account . kindly send me one , please .. thanks .. email id : sheik...@gmail.com regards Sheik On Nov 10, 12:12 am, shobhit kasliwal shobhit.kasli...@gmail.com wrote: Hi

[android-developers] Re: Automatic market updates

2009-12-18 Thread stanlick
Thanks Vytautas -- I was careful to update both android:versionCode and android:versionName before I uploaded my new apk. However, none of my beta testers have received an update notification and it has been over a week now. I have read myriad comments about users not receiving update

[android-developers] Typo in android developer resource site.

2009-12-18 Thread NoraBora
I found a typo in android developer resource site. http://developer.android.com/resources/faq/commontasks.html Returning a Result from a Screen // Listen for results. protected void onActivityResult(int requestCode, int resultCode, Intent data){ // See which child activity is calling us

[android-developers] Re: OutofMemoryError: bitmap size exceeds VM budget.....

2009-12-18 Thread Abhi
Anyone? On Dec 18, 12:11 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi, I am doing the following in my app, which at times results in the above error. Action 1: Button on Main activity calls all pictures using ACTION_PICK (results in a thumbnail view of all pictures on my phone). User

[android-developers] Typo in android developer resource site. 2

2009-12-18 Thread NoraBora
I found another typo in android developer resource site. http://developer.android.com/resources/faq/commontasks.html Selecting, Highlighting, or Styling Portions of Text stringid=@+id/styled_welcome_messageWe are biso/i/b glad to see you./string should be string

Re: [android-developers] Typo in android developer resource site. 2

2009-12-18 Thread Mark Murphy
NoraBora wrote: I found another typo in android developer resource site. http://developer.android.com/resources/faq/commontasks.html Selecting, Highlighting, or Styling Portions of Text stringid=@+id/styled_welcome_messageWe are biso/i/b glad to see you./string should be string

[android-developers] Re: Adding contacts to a custom account

2009-12-18 Thread Vadim Vohmjanin
I faced the same problem. I'm doing the research now. If you have found how to do it, please provide this info. I'd be very greatfull. I also wanted to know, what exactly way do you create custom account? As i understood account creation currently *requires* a developer to implement a service

[android-developers] HTC Tattoo Market - New issues after 1.6 upgrade

2009-12-18 Thread G
Ok, so I have an app that WAS showing up on the HTC Tattoo's Android Market, but users are reporting that it is now gone after they have upgraded to Android 1.6 from 1.5. Copy protection is OFF There is no Camera permission at all All screen sizes are supported in the manifest

[android-developers] Re: Extremely long DNS lookup (and failure) on T-Mobile network

2009-12-18 Thread Albert
I am experiencing the same issue, i have been testing my app on my phone(HTC Hero 1.5) and it would give me a UnknownHostException from time to time, I can only fix it by restarting the phone. I hope they have a team working on this as this is very critical to the development on Android as it's

Re: [android-developers] Re: Automatic market updates

2009-12-18 Thread TreKing
I wouldn't rely on those Market update notifications. Personally, I never get them when they should kick in. Instead I usually check My Downloads manually and, AFTER I've checked, the notification will kick in. And, not only is it ridiculously late, it usually tells me the wrong number of updates

[android-developers] Re: Automatic market updates

2009-12-18 Thread stanlick
Wow! So the messages on this forum from over a year ago are still applicable today? It is incomprehensible to expect every app developer to write this code and that to notify users about updates? So how do I get my users up to the current published version when my app was deployed without the

[android-developers] creaky wave sound with AudioTrack in unter linux

2009-12-18 Thread coolbanana
Hi I made a test App, which uses the AudioTrack to play the wave sound from Buffer, via onPeriodicNotification. ie if the PlaybackHeadPosition is at the middle of Buf, dann fill the buffer full(write the nexte Wave date from source array ). The Buffer has the min. Size 8192 Bytes unter sdk 1.5

[android-developers] Re: multiple activity refresh

2009-12-18 Thread Jags
thanks a lot mr mark. I was able to figure out problem thanks to another review. But it seems delete.png is still not shown on context menu. regards On Dec 18, 5:08 pm, Jags jag...@gmail.com wrote: is it mandatory to be the db created by SQLiteOpenhelper ? is it mandatory to be the field

[android-developers] alarm cancel

2009-12-18 Thread Jags
Now that i am able to successfully fire alarms, I need a case where if i delete a record in my db the corresponding alarm should be cancelled. i send recid which is primary key for my table with the pendingintent through putExtra. can i cancel on the basis of that primary key ? if yes, how ?

[android-developers] TelephonyManager.getNetworkType() returns type for on French UMTS networks (?!?)

2009-12-18 Thread Watcher
Hello, According to http://developer.android.com/intl/fr/reference/android/telephony/TelephonyManager.html, TelephonyManager.getNetworkType() should return a number between 0 and 3 at API level 3. I am however getting sometimes getting 4 as a response for all operator networks in France.

[android-developers] How to downgrade T-Mobile G1 from Donut to Cupcake?

2009-12-18 Thread Greivin Lopez
Hi, I need to support Android 1.5 (Cupcake) for my application but I don't have any 1.5 device. I currently have a Motorola Droid with 2.0.1 and the T-Mobile G1 (HTC Dream) with 1.6 (Donut). What I want to do is to downgrade my G1 to the previous official OTA release of Cupcake. I have no

[android-developers] Re: Audio options for music app - should I use JET?

2009-12-18 Thread Business Talk
It sounds like we are working on a similar application. I have placed the same question not too long ago and have received no definite answer so I ended up experimenting with all currently available choices; JetPlayer, SoundPool and the AudioTracker, in this order. I have rejected the JetPlayer

[android-developers] Re: OutofMemoryError: bitmap size exceeds VM budget.....

2009-12-18 Thread Abhi
Resolved!!! On Dec 18, 9:25 am, Abhi abhishek.r.sha...@gmail.com wrote: Anyone? On Dec 18, 12:11 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi, I am doing the following in my app, which at times results in the above error. Action 1: Button on Main activity calls all pictures

[android-developers] Re: Same servicein multiple APKs, only want best one to launch

2009-12-18 Thread whitemice
I already had this discussion and was able to put together a workable solution. I bloged it here: http://tinyurl.com/9hwdva Regards Mark -- 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: HTC Tattoo Market - New issues after 1.6 upgrade

2009-12-18 Thread moneytoo
In your application (AppAllarm v1.1.3) manifest file, the supports- screens tag is empty (supports-screens/supports-screens). Are you building your project using 1.6 SDK or later? On Dec 18, 3:43 pm, G ghack...@gmail.com wrote: Ok, so I have an app that WAS showing up on the HTC Tattoo's

[android-developers] Re: Expanding the size of an Android Virtual Device (emulator) instance?

2009-12-18 Thread Jeremy Logan
Okay, for the sanity of future searchers I'll answer my own question, now that I've found it. You need to start the emulator with the partition-size option followed by the size in MB. For example: emulator -partition-size 200 -avd whatever for a 200MB partition on the whatever AVD. Jeremy

[android-developers] how to get back to the activity from a webview (very urgent)

2009-12-18 Thread zeeshan
Hi Dear, i need to call a webview to launch a url for authentication process and need to get back once authentication is successful, dont know how can i kill webview and resume the process on first activity. here is what i am trying Activity1: public OnClickListener loginButtonListener = new

[android-developers] Re: HTC Tattoo Market - New issues after 1.6 upgrade

2009-12-18 Thread G
Wait, really?! I must've missed something in the latest update, will double check. On Dec 18, 11:20 am, moneytoo m...@seznam.cz wrote: In your application (AppAllarm v1.1.3) manifest file, the supports- screens tag is empty (supports-screens/supports-screens). Are you building your project

[android-developers] TTS TalkBack doesn't read AlertDialog titles or messages?

2009-12-18 Thread RNekic
So I tried turning on TalkBack to see how well my application works with the feature and I was surprised to discover that TalkBack does not speak the title or text of an AlertDialog. It's only speaking the text from the buttons I add to the dialog. Am I doing something wrong when I define my

[android-developers] DEV Phone 2 or Nexus One

2009-12-18 Thread kchoi
I am thinking about getting a DEV Phone 2, but there's new about Google's Nexus One phone that seems to have higher spec. Is there any advantage of getting DEV Phone 2 ? Any news about DEV Phone 3 (if any) ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] PVMFErrResourceConfiguration error on preparing MediaPlayer

2009-12-18 Thread Hermes Pique
I have a very brief video that I would like to include as a raw resource in my app. The video plays correctly when loaded from the SD card in the ApiDemos MediaPlayerDemo_Video example. However, if I attempt to load it as a raw resource, I get the following error after calling MediaPlayer.prepare:

[android-developers] Re: TTS TalkBack doesn't read AlertDialog titles or messages?

2009-12-18 Thread blindfold
You might wish to check if the following recent update addresses your problem http://groups.google.com/group/tts-for-android/browse_thread/thread/291c47b0992d37f or else bring up your problem on that list. Regards On Dec 18, 5:55 pm, RNekic robertne...@gmail.com wrote: So I tried turning on

[android-developers] Re: OutofMemoryError: bitmap size exceeds VM budget.....

2009-12-18 Thread Matt Kanninen
How did you resolve it? I think we do need a list of ways one can cause this, how you figure out what caused it, and what to do to fix it. On Dec 18, 8:11 am, Abhi abhishek.r.sha...@gmail.com wrote: Resolved!!! On Dec 18, 9:25 am, Abhi abhishek.r.sha...@gmail.com wrote: Anyone? On Dec

[android-developers] Re: HTC Tattoo Market - New issues after 1.6 upgrade

2009-12-18 Thread G
See kids, that's why you always double check your code before posting questions. My mistake, thanks for pointing it out (feelin pretty dumb right about now) On Dec 18, 11:49 am, G ghack...@gmail.com wrote: Wait, really?! I must've missed something in the latest update, will double check. On

[android-developers] Re: ClassLoader leaking memory?

2009-12-18 Thread Matt Kanninen
If you have a small sample that demonstrates the problem that seems perfect for b.android.com. On Dec 17, 6:01 pm, B++ bet...@gmail.com wrote: After some further analysis, it seems that the problem lies on the DexFile. The PathClassLoader internally invokes the DexFile which apparently unzips

Re: [android-developers] Re: Automatic market updates

2009-12-18 Thread TreKing
So how do I get my users up to the current published version when my app was deployed without the check-this-web-file-version-by-hand-code and I don't even know who my users are? Is it absolutely crucial that your users have the most recent update the second it's put out? If not, don't worry

[android-developers] Re: Upload multiple versions for single android application for different SDK levels 1.5, 1.6, 2.0

2009-12-18 Thread Matt Kanninen
An Android developer has to develop the habit of untraining management that is used to J2ME. If you release multiple different APKs you technically can fork your codebase, into different packages, to target different firmware. But you don't want to compete with yourself for market listings, you

[android-developers] Re: Camera intent - what's safe to use?

2009-12-18 Thread Matt Kanninen
On Dec 11, 4:37 pm, Vytautas Vaitukaitis vaitukaitis.vytau...@googlemail.com wrote: @Matt Yes, you're absolutely right - I'm trying to do what works on Hero - if that fails, I do what works on all the other phones. I'm not quite sure about which of the Camera API issues you're talking

Re: [android-developers] Re: Upload multiple versions for single android application for different SDK levels 1.5, 1.6, 2.0

2009-12-18 Thread Mark Murphy
Matt Kanninen wrote: Mind you, I don't want to use reflection, it frightens me a bit, and it's annoyed me and made my app harder to debug every time I've used it. Eventually though we'll really want to use a feature not in 1.5. FYI, reflection is an option here, but it is not the only

[android-developers] Portrait vs landscape using sensor

2009-12-18 Thread Mark Wyszomierski
Hi, I'm trying to detect landscape vs portrait orientation with the following: public void onSensorChanged(SensorEvent event) { float pitch = event.values[2]; if (pitch = 45 pitch = -45) { // portrait } else if (pitch -45) { // landscape }

[android-developers] this is just too much

2009-12-18 Thread Andrei
Somebody on craigslist reseling our apps half price http://knoxville.craigslist.org/mob/1515792578.html -- 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

[android-developers] Re: this is just too much

2009-12-18 Thread Andrei
i contacted them to remove it, but this is whet is says on craigslist --- Android Apps Date: 2009-12-18, 11:51AM EST Reply to: see below Android Apps Advanced Task Manager $0.50 BitTorrent Client |aBTC $2.50 Album Art Grabber $1.00 Better Keyboard $1.50

[android-developers] Re: this is just too much

2009-12-18 Thread Jason Proctor
i flagged it as prohibited, as should others. hth -- jason.vp.engineering.particle -- 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,

[android-developers] BETA Tester Wanted

2009-12-18 Thread DevDroid
We are looking for people to help BETA test the FunMail app coming to the Android Market soon! Get a sneak peak at our app and help us find some bugz! Download the BETA at: http://funmail.com/android FunMail is a next-generation visual messaging platform. FunMail finds contextual relevant visual

[android-developers] Re: ClassLoader leaking memory?

2009-12-18 Thread fadden
On Dec 17, 2:45 pm, B++ bet...@gmail.com wrote: PathClassLoader classLoader =  new PathClassLoader(/path/to/apk.apk, getClassLoader()); classLoader.loadClass(path.to.class); classLoader = null; } Only these three lines will cause a leak if you keep on creating this activity and destroying

[android-developers] I am a newbie...

2009-12-18 Thread Jae Chang
I just followed the direction on google code page to set up java IDE, eclipse and android sdk and i tried all the steps to go hello world app. now i want to try to run other sample codes provided by google android team. i downloaded zip file from http://android-developers.blogspot.com/?hl=en

[android-developers] Obtain Point of Interest data based on current location.

2009-12-18 Thread Ruppin
Hi, I am developing a GPS application in Android using Location/ Location Manager package. I am able to get the current latitude and longitude data correctly. My doubt is, do we have any means by which we can obtain the nearest Point of Interest based on the current location using

[android-developers] Re: Divert a call by sending the USSD command

2009-12-18 Thread oscarahman
Please start an activity as below: String encodedHash = Uri.encode(#); startActivity(new Intent(Intent.ACTION_CALL,Uri.parse (tel:*122*123456789+encodedHash))); Thanks. Regards Prashanth D On Dec 17, 7:05 am, Mohammad Siddiqui siddiqui.m...@gmail.com wrote: Hi can any one tell me how to

[android-developers] Connect via USB and consume web service

2009-12-18 Thread Eric Crump
I need to connect my phone via the USB cable to my development machine and consume a web service that is running there. What do I need to do to get my Android to see the web service? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Motorola Milestone not showing up in ddms / adb on Mac OS X Snow Leopard

2009-12-18 Thread Oliver
I don't know what did it, but trying it out today worked fine. I definitely had None selected back then, since I used it on Windows as well, but severall reboots obviously have restarted adb since. :) Nice one, I'll try that if it happens again, cheers. On Dec 15, 11:03 pm, TJ tdalse...@gmail.com

[android-developers] Re: Uninstalling TTS Data from the G1 / Dream

2009-12-18 Thread rob_b...@gmx.net
Hi! I found a solution: use adb tool to remove the app TtsService.apk: open the console with cmd navigate to tools dir inn your sdk: get rights and remove app: adb root adb shell cd system cd app rm TtsService.apk here you are. On 16 Dez., 06:22, Desu Vinod Kumar vinny.s...@gmail.com wrote:

[android-developers] Enumerate activity history stack

2009-12-18 Thread rich
When debugging I've sometimes wanted a tool that would list running tasks and show which activities are on the history stack for each task. I can get a list of tasks by calling ActivityManager.getRunningTasks(). Each ActivityManager.RunningTaskInfo object in the list gives me interesting

[android-developers] Re: How To apply our settings to selected text instead of all text in Edit text View

2009-12-18 Thread Mukund
It is easy to do it for user selected text, just use getSelectionStart () and getSelectionEnd() and use Spannable to set the styles. On Nov 17, 10:49 am, Ram rama.mohan...@gmail.com wrote: Hi Androids, I have a problem as follows: In my project i am havingrichtexteditoroptions to apply for

[android-developers] Program unique identifier

2009-12-18 Thread lphpc
Hi All, As known, we can get devcie unique ID using TelephonyManager#getDeviceId() . So, does a program have an unique identifier? How can I get it? I googled it but got nothing. Br -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] WebView Help

2009-12-18 Thread Mel Navarro
Hi, I was wondering if there is a way to select or highlight or focus at text from a webview's content. Or even select and copy text to the clipboard? (just like the default browser) Or even access the emulateShiftHeld() function? I'm working on an browser and am trying to add accelerators but

[android-developers] Contacts App crashes when switching between Dialer to Call log

2009-12-18 Thread Sameer AM
I've altered the contact app so that in Dialer the soft keypad always stays and it hides when other tab activity resumes, We've given different look for the contacts app, but when using the same, a crash occurs when we rapidly change from dialer to call log. And the App crashes without the

Re: [android-developers] Re: just another android rtp stack question

2009-12-18 Thread Marc Petit-Huguenin
maxsap wrote: Anyone? On Dec 1, 3:34 pm, maxsap max.saprani...@gmail.com wrote: Hello all, I am new in android developer and I would like to make a sip based application for this platform. In the signaling part I have found about jain-sip (used it) and sipdroid( any good tutorial? ) the

[android-developers] Hebrew font on Android!

2009-12-18 Thread Do it
When we see Hebrew languages that are available in the Android Mobile? -- 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: OutofMemoryError: bitmap size exceeds VM budget.....

2009-12-18 Thread Sergiu Dogaru
how ? On Dec 18, 6:11 pm, Abhi abhishek.r.sha...@gmail.com wrote: Resolved!!! On Dec 18, 9:25 am, Abhi abhishek.r.sha...@gmail.com wrote: Anyone? On Dec 18, 12:11 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi, I am doing the following in my app, which at times results in the

[android-developers] Re: androidplayground.net

2009-12-18 Thread Guess Who, You Probably have my Number
Hi Scott, Figured I would let you in on something. I have nothing to do with that site anymore. I haven't in a while. If Tony is still on it then fine. But please don't put my name into anything. Me and you had a long discussion and touched many topics not to long ago and from what I can recall,

[android-developers] this is just too much

2009-12-18 Thread Andrei
Somebody on Craigslist selling our apps half price http://knoxville.craigslist.org/mob/1515792578.html -- 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

[android-developers] Re: OpenGL hardware requirements specification

2009-12-18 Thread Robert Green
I'd really like to see a GPU Class enumeration starting with the software renderer. android:gpuClass=integer class 0 = software renderer class 1 = MSM7200 series class 2 = PowerVR SGX series class 3 = Some faster, more powerful GPU etc... This way, we could specify that a game only works on

[android-developers] Re: using soundPool but sound plays after a delay, sound is lagging

2009-12-18 Thread Robert Green
Can you quantify the lag? How much is it lagging? Lately I've been seeing my footstep sounds, which are individually triggered right and left steps, take 2-50ms to trigger for some reason. I'm not sure if it has something to do with the way the OGG is encoded, but I feel like it could. Perhaps

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

2009-12-18 Thread Justin (Google Employee)
The problem of some Milestone devices not seeing copy protected apps is one we continue to work on addressing. We are working with the OEM to resolve the root cause. You guys are funny. Android Market on HTC Tattoo does not show applications that do not implicitly declare that they support its

Re: [android-developers] Enumerate activity history stack

2009-12-18 Thread Dianne Hackborn
adb shell dumpsys activity prints the current activity stacks, plus other core state in the activity manager. On Thu, Dec 17, 2009 at 4:11 PM, rich richk...@gmail.com wrote: When debugging I've sometimes wanted a tool that would list running tasks and show which activities are on the history

[android-developers] Re: } catch (OutOfMemoryError E) {

2009-12-18 Thread Matt Kanninen
As a followup this had no impact. Also it wasn't an OutOfMemoryError when it it got bubbled up to my activity, it was an InflateException. Catching the exception seemed to have no impact, it still crashed. I tried this: //not having much luck fixing our OutOfMemoryErrors, so lets see what

[android-developers] Re: Program unique identifier

2009-12-18 Thread Watcher
If your software is running on a phone-less tablet, chances are you won't even get an instance of TelephonyManager so getDeviceId() won't work Unique program identifer is the package identifier although anyone could use the same id as yours... On Dec 18, 4:49 am, lphpc glp...@gmail.com wrote:

[android-developers] Re: ClassLoader leaking memory?

2009-12-18 Thread B++
After some further analysis, I noticed that memory resources are released if the loaded class belongs to the same apk as the app. The problem seems to be apparent if a loaded class belongs to a different apk. It looks like the resources about the class extraction are not getting released properly.

[android-developers] Re: OpenGL hardware requirements specification

2009-12-18 Thread shaun
I think Robert Green is on the right track. We need something like this now! On Dec 18, 2:34 pm, Robert Green rbgrn@gmail.com wrote: I'd really like to see a GPU Class enumeration starting with the software renderer. android:gpuClass=integer class 0 = software renderer class 1 =

[android-developers] Explanation about different UI meansuring...

2009-12-18 Thread Abdul Mateen
Hi, Can any body explain about , or give any refernce to different measuring quantities in Android like dip, dp, inch. Thank You. -- 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: OpenGL hardware requirements specification

2009-12-18 Thread shaun
And to be able to access the device's setting for GPU class (or whatever it ends up being) programmatically at runtime if we want to disable/enable features/effects based upon its value. On Dec 18, 3:12 pm, shaun shashepp...@gmail.com wrote: I think Robert Green is on the right track.  We need

[android-developers] Re: androidplayground.net

2009-12-18 Thread Smelly Eddie
The site uses Paypal for subscriptions too, not just donations. And paypal has clear polices on infringement. Report here https://cms.paypal.com/be/cgi-bin/?cmd=_render-contentcontent_ID=ua/InfringementRpt_full On Dec 17, 8:43 pm, Guess Who, You Probably have my Number nnarb...@gmail.com wrote:

Re: [android-developers] Re: ClassLoader leaking memory?

2009-12-18 Thread Dianne Hackborn
Um, you are making this way too hard. You should load code with this: http://developer.android.com/reference/android/content/Context.html#createPackageContext(java.lang.String, int) And please please note, there are major security and functional issues with loading code like this. If this

Re: [android-developers] Explanation about different UI meansuring...

2009-12-18 Thread Mark Murphy
Abdul Mateen wrote: Can any body explain about , or give any refernce to different measuring quantities in Android like dip, dp, inch. http://developer.android.com/guide/topics/resources/available-resources.html#dimension -- Mark Murphy (a Commons Guy) http://commonsware.com |

[android-developers] Unable to start an activity, load the home screen, or show a notification during calls on Droid

2009-12-18 Thread Matt
Hi All, Has anyone been successful showing a notification, starting an activity, or loading the home screen *during* a call on the Droid? All three of these actions can be done with the emulator running 2.0, but will not run from the Droid. I don't receive any type of notification that these

[android-developers] Re: Hebrew font on Android!

2009-12-18 Thread Lior
If you have a rooted phone and you want to add Hebrew fonts, you can follow the instructions in this link: http://iandroid.co.il/archives/485 In case you're using CyanogenMod ROM, you can update to version 4.2.9 which, as the change-log states, has Hebrew fonts.

[android-developers] Re: Program unique identifier

2009-12-18 Thread strazzere
@Watcher That's why the ANDROID_ID is meant to be used I believe, it is phone even on phone-less devices. Though some phone-less devices redirect the getDeviceId() call to return the ANDROID_ID too. @Iphpc Watcher is correct, there is no unique program specific identifier outside of the

[android-developers] Re: Localized to: unknown even though I have localized strings

2009-12-18 Thread ty
Same issue here. Tempted to ignore, but want to make sure not missing something. Anyone with an update on this? On Dec 10, 1:09 pm, Beth emez...@gmail.com wrote: Hey!  I also see the unknown message in my localized application.  The first time I loaded a localized app on the Android Market, it

[android-developers] Re: using soundPool but sound plays after a delay, sound is lagging

2009-12-18 Thread Matt
I have had similar issues using wav and mp3 files. I haven't profiled the delays, but I did decide to pre-load all of the settings that I could pre-load. Even retrieving all settings from the context and storing them. Then, just call playSound. This doesn't diagnose the problem, but it should

[android-developers] Re: Updating a pre-installed application

2009-12-18 Thread John Seghers
One more question about this. Our application is one that requires OEM integration to provide its full functionality and thus if someone downloaded it from the Market to a phone on which it is not normally pre-installed, it would not function properly for them. Is there a way to place the update

  1   2   >