[android-developers] Re: For a published application if I upgrade minSdk requirement to higher level what will happen?

2010-08-24 Thread mort
Update your current app to do nothing more than show a dialog with a link to your new app in the market. This would annoy users of old devices even more. Imagine you download an update, and then it's just a dialog that tells you to download an app you can't find in the Market. However, you

[android-developers] User request refund 20 days after purchase

2010-08-24 Thread Federico Paolinelli
I just got an email from an user that says that she want me to refund her (0.99 eur) because my app causes her nexus one to lock up. Now, apart from the curiosity of find out the cause of this lock up, what is the most correct thing to do? I asked her more detail in order to find the problem, but

[android-developers] Re: How to check the Foreground Process from a Service

2010-08-24 Thread FrankG
Yes, if you have both sides in your hand. But the basis of my assumption was, that this is not the case. Example Requirement : Don't pop up the triggered dialog, if a certain 3rd Party dialog is already shown. Good luck ! Frank On 23 Aug., 14:10, nation-x

[android-developers] Re: LVL found to be easy to crack

2010-08-24 Thread Hugo Visser
Even native code doesn't help you, the call to the native method can also be decompiled and patched, without bothering with the native code at all. Like John says, it's an inherit problem of a language that runs on the vm: you can decompile the byte code. You can just make it harder to find the

[android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread String
On Aug 24, 7:11 am, Federico Paolinelli fedep...@gmail.com wrote: Now, apart from the curiosity of find out the cause of this lock up, Does your app use OpenGL? There's a bug deep in the Android OpenGL implementation which can cause this. Search this group for waitForCondition for more

[android-developers] Cannot get LED notifications to work on my Motorola Droid (with Froyo)

2010-08-24 Thread Brian Swartzfager
I know others have posted with this general problem, but I've read the Android developer page on the topic, as well as several forum and blog posts (such as http://androidblogger.blogspot.com/2009/09/tutorial-how-to-use-led-with-android.html), and no matter what I do, the LED light will not

[android-developers] Home screen widget container

2010-08-24 Thread Alex Roebuck
Are home screen pages exposed in the API? Can you instantiate and control them? -- 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

[android-developers] Parcelable and Inheritance

2010-08-24 Thread nirjon
Hi, (1) This thing is working: I have written a service (say, S) and a class (say manager, M) that uses that service and they also have a common interface defined by aidl file. I have a custom class (say, C) that is passed from M to S, and so I implemented parcelable interface for C and

Re: [android-developers] dlopen error, with working libraries on other phone

2010-08-24 Thread David Turner
Your library seems to be linked against an internal system library (i.e. one that is not exposed by the NDK). If this is the case, this kind of problem is totally normal, each OEM and each platform release is free to modify these system libraries, and sometimes this will break apps that depend

[android-developers] USB ports on N1 - usable?

2010-08-24 Thread hsmith
Assuming I have a USB device I want to attach to a N1, would it be usable? Lets assume I have the drivers or can write them to interact with the device. Is the support for USB that extensive on Android devices? I can find information about making the phone a host, charging, ect, but I can't find

[android-developers] Re: Maps API - controlling size of streets, font?

2010-08-24 Thread Sari
On my Nexus One, the font is really small but it becomes larger and looks a little more like the Maps application when I make sure android:anyDensity=false in my supports-screens element in the manifest. Like the following: supports-screens android:largeScreens=true

[android-developers] Dynamic preferences for a variable number of profiles in an Android app

2010-08-24 Thread Unitedroad
Hi, I am looking for a way to create dynamic preferences where I don't need to hard code the preference key and I could have a variable number of preferences. Basically, my application will let the user create a multiple number of profiles and each of these profiles will save custom values for

[android-developers] MotionEvent HistorySize and multiple Pointers

2010-08-24 Thread sztupy
I couldn't find a definite reference for the size of a MotionEvents history, when there are multiple pointers. The reference says that if you use a getHistorical* function, you might pass it a history position which is somewhere between [0..getHistorySize()-1]. But in a lot of examples handling

[android-developers] Best way to store restaurant data

2010-08-24 Thread Dominic
I want to have a list of restaurants with information such as addresses and phone numbers in my app. I also want to be able to edit this information after the app is published. What is the standard way for doing this? Would I need to use a SQLite database? Any ideas are appreciated. Thanks. --

[android-developers] Query regarding MMS in android emulator

2010-08-24 Thread Leeza
I am learning android myself and i stuck with one problem. I am trying to send MMS from one emulator to another emulator.(I got success in sending SMS between emulator) According to Android 1.0 SDK, Release 1-- http://developer.android.com/sdk/RELEASENOTES.html -- it says it is not

RE: [android-developers] Button State does not toggle automatically!! Help!

2010-08-24 Thread Marian Raafat
Hi, Try button.setEnabled(false); button.setEnabled(true); I hope that would help :) Marian -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Abhi Sent: Monday, August 23, 2010 4:30 AM To: Android Developers

[android-developers] Newbie's Android problem

2010-08-24 Thread erakovic.bo...@gmail.com
Hi, I have just start to develop android, and I just cannot start my Hello World application. I have followed instructions about android installation, I have changed several Eclipse IDE's, but still, when I press f11 to compile, it 'does' some job int he background, activate my virtual device, but

[android-developers] app idea?

2010-08-24 Thread Łûňąţýk
Okay well i just wanted to ask for a app ...ok well we have a. Facebook n MySpace ...could we get a behi app ? Plz ? Thanks for reading -- 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] Eclipse version for Windows 7 64-bit and JDK 1.6.0_21 64 bit

2010-08-24 Thread Hackenbush
I am preparing a new computer for Android development using Eclipse. My system attributes are: OS: Wiindows 7 Professional x64 JDK: JDK 1.6.0_21 64 bit I am wondering whether I should install a 32 or 64 bit version of Eclipse 3.5 (Ganymede). Any help would be much appreciated. -- You received

[android-developers] IPowerManager

2010-08-24 Thread apilink
Hi experts, anybody knows how can I get in my sdk the package IPowerManager instead of PowerManager. I am trying to change the screen birghtness programatically. Thaks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] New to Android and programming

2010-08-24 Thread Droidblazer00
HI everyone, as the title says i'm new to the Android community, and i don't have much experience on the development side either. but i am very interested in getting started. I see that Android apps are based off of Java... So would it be better for me to learn Java before getting started with

[android-developers] CodeSnipr Learning can be simple!!

2010-08-24 Thread bapi
Hi, All the group members right at here, we people recently lunched a website CodeSnipr based on Computer language like (PHP, RUBBY, HTML, CSS, MYSQL, JQURY, IPHONE DEVELOPMENT, JAVASCRIPT, C++,.NET,XML,C# etc.). CodeSnipr will provide you access to user generated tutorials. Here you can post

[android-developers] Memory usage profiling an openGL application?

2010-08-24 Thread 39thstreet
SHORT VERSION: How do I find out how much memory my openGL application is using at any given moment, including sounds, textures, and everything else? I've been wrestling with DDMS for hours and all it seems to show me is basic object allocation counts. I must be missing something, but I haven't

[android-developers] Can I use Android source code in my Application(Commercial)

2010-08-24 Thread om
can i use android apps source code from google like calendar, todo list directly in my commercial application.. -- 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] Problem with SAX parsing

2010-08-24 Thread Atokarev
Hi there. I could not get any inner elements during the xml parsing. looks like parser see only outer tag A. Could you show me error? XML: A B b=ab/B C c=ac/C D d=ad/D E e=ae/E /A When i call parse function - only A-tag was processed. Code: App_class ... xr.parse(new

[android-developers] insert musical unicode

2010-08-24 Thread bamboolouie
I try to use the setTypeface to display musical unicode symbols, but it doesn't work. Here is my code. Any workaround? .java file @Override public void onCreate(Bundle icicle) { super.onCreate(icicle);

[android-developers] Re: Service start intent problem

2010-08-24 Thread anders
Hi, I got the same issue, here's my code snapshot: (code from the Activity that starts the Service...) Bundle bundle = new Bundle(); bundle.putString(key1, val1); bundle.putString(key2, val2); Intent intent = new Intent(TheActivity.this, TheService.class); intent.putExtras(bundle);

[android-developers] how to select tag

2010-08-24 Thread kids
I'm very sorry for my poor english , wish u can pardon me...thx After anti-investigation on the latitude and longitude drawn on MAP But I want to change into a label, I can choose the label you want to click I will show the information stored in SQL there are two activity but I've managed to

[android-developers] Re: NPE on WebView.onWindowFocusChanged

2010-08-24 Thread Fluckysan
Hi, I'm getting these report for Android 2.0 to 2.2 on Sholes and Droid I don't know if they are the only one Regards On 21 août, 23:01, Dianne Hackborn hack...@android.com wrote: It would help if people say the device(s) and version(s) of the platform they are seeing this on. On Sat,

[android-developers] Android 2.2 Voice Recognition Sample problem And Speech Recognition with file

2010-08-24 Thread bibinours
Hello, I'm using android emulator (SDK 2.2) with Eclipse and I tried to do work the sample VoiceRecognition.java but it returns to me this message Recognizer not present. What's the matter? I read on different forums a problem with the initial system image, should I upgrade system image or there

[android-developers] How to switch the mobile network in program?

2010-08-24 Thread M.Allam
I searched the forum but didn't get the answer. Currently I have 2 mobile networks for my mobile andriod say they are A and B. A has EDGE and B only has GPRS. Is there a way to automatically detect the mobile networks if there are A and B then choose A? Or just simplely choose A no matter whether

[android-developers] SMS to Contact

2010-08-24 Thread nirm
Hello all, How can I send a SMS and the contact person will appear in the To input field? Until now I have managed to insert his phone to the To input, but when I send his name or contact id I don’t get the DISPLAY_NAME Intent sendIntent = new Intent(Intent.ACTION_SENDTO);

[android-developers] User Space Hardware Abstraction Layer Development Guide

2010-08-24 Thread Techie
Hi All, I would like to know if there is any documents or related web links for device driver development on User Space Abstraction Layer . I would appreciate if anyone can give me how this really works in real world scenario. Thanks... -- You received this message because you are

[android-developers] Overlay images onto Camera preview SurfaceView

2010-08-24 Thread Rohan Balakrishnan
I have a SurfaceView that is being used to draw custom animations, and I would like to overlay them onto a live-feed from the phone's camera. Currently, the SurfaceView that contains the animations has a white- background, but if I were to overlay them onto the phone's camera feed, they would have

[android-developers] [IPC] Return custom objects tree

2010-08-24 Thread Giordano
Hi everyone :) it's the first message I post in this group, even though I lurked and posted from time to time in #android-dev. I have a question about IPC. At work we are developing 2 applications: 1 - a service running in background and preparing some data. 2 - an application that takes the

[android-developers] Re: Service start intent problem

2010-08-24 Thread anders
Hi, I've got the same issue, here's my code snapshot: (code from the Activity that starts the service) Bundle bundle = new Bundle(); bundle.putString(key1, val1); bundle.putString(key2, val2); Intent intent = new Intent(TheActivity.this, TheService.class); intent.putExtras(bundle);

[android-developers] how to write data to the existing xml file using code in android

2010-08-24 Thread Rammi
Hi i want to add new nodes to the exiting xml file in android to save imageurl so plz help to find a solution to add new nodes to existing xml file, so that i can use the xml data later.. plz -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Traceview only getting 5 seconds of data

2010-08-24 Thread Mike Reed
I'm seeing the same thing right now, but it's only 4300ms. One run I got 3700ms, and another was 4000ms. I have no idea why it's missing so much. On Aug 17, 7:17 am, Cleverson clevers...@gmail.com wrote: Hi, I'm usingtraceviewto identify bottlenecks in my app. If I use the emulator,

[android-developers] seeking information to get started

2010-08-24 Thread ashwin shekhar
hi all, am very new to androids n want to know more abt t. pls give me informations abt SDK ,JDK,, eclipse etc n why they r used ??? how do i install n use tat... pls posts links to videos n otr ... -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] hyphenated Android directory names and SVN

2010-08-24 Thread andrew
I am having trouble committing to my svn repository changes made in files in my Android project in folders that have a hyphen in the name. In particular /res/layout and /res/layout-land. It *seems* that the svn client doesn't like the hyphen and truncates that segment of the url after the

[android-developers] What am I looking for

2010-08-24 Thread Robert Templeton
Hi, I'm trying to build a web application. What I am trying to accomplish in this is, go to website and take the webpage and modify it or manipulate it to look a specific way. The webpage is an already established page, but I want to manipulate it in android to look differently than what is

[android-developers] Re: Shadow on top of a layout on ActivityGroup

2010-08-24 Thread frank.sposaro
Hi. Would you mind posting your code or an example using ActivityGroup? I have a Widget that I want to show up on everytab in a TabHost. On Jul 16, 5:29 am, pabbot pabloabads...@gmail.com wrote: Hello everyone, I'm trying to give my first steps on working with ActivityGroups. To be more

[android-developers] Re: Greystripe experiences?

2010-08-24 Thread charlie
hey - in full disclosure, i'm connected to the company so do not have an unbiased opinion. that being said: 1. i know they do monthly payments. i've never heard of issues with payments. 2. i believe their eCPM is competitive. when asking about eCPM of networks, make sure you take fill rate into

[android-developers] does Google forbid orientation animation on purpose?

2010-08-24 Thread Xiao
I'm reading the android source code, and wanna make orientation animation. I've found that when I rotate the screen, the code will be executed to public boolean setRotationUncheckedLocked(int rotation, int animFlags){}, in which there's a line startFreezingDisplayLocked(). If this method works,

[android-developers] appSearchData usage

2010-08-24 Thread bennybeta
Hello, I am kicking off a search using Quick Search Bar like below, using extra data in the appSearchData bundle: Bundle appSearchData = new Bundle(); appSearchData.putInt( EXTRA_USAGE, USAGE_SHOPPING_LIST ); appSearchData.putString( EXTRA_LIST_ID, this.listId ); startSearch( null, false,

[android-developers] Re: LVL found to be easy to crack

2010-08-24 Thread Jonas Larsson
An official response would great. As I (and many others) see it the main reason for Android app piracy is paid app unavailability in most countries. When most users have the option of being honest and pay, most would. Until Google enables the full Market in all countries the incitement to crack

[android-developers] keytool error - unknown format

2010-08-24 Thread David Tiago
Hi, I am trying to get a debug maps API Key, but when I run the keytool program I get the following error in my Windows 7 64bits computer: erro de keytool: java.lang.IllegalArgumentException: unknown format type at At first I thoght it was a problem about the 64 bits JDK. But after remove the

[android-developers] Re: appSearchData usage

2010-08-24 Thread Ben Edwards
Figured it out. Within the Search Activity access the appSearchData like so: Bundle appSearchData = intent.getBundleExtra( SearchManager.APP_DATA ); On Mon, Aug 23, 2010 at 2:40 PM, bennybeta bennyb...@gmail.com wrote: Hello, I am kicking off a search using Quick Search Bar like below,

[android-developers] airplane mode on

2010-08-24 Thread andrtuto
Hello :) Sorry for my English, I use the Google translator. I ask about a small application that I'm doing. This is a custom control panel with the things I most use my own phone, you know, something to personalize it a bit I put a direct button to call my home, a shortcut to the music player,

[android-developers] Widget RemoteViews question

2010-08-24 Thread Alex Roebuck
I have created a widget that uses a sequence of images. I want to be able to change the sequence of images at runtime, depending on user configuration (e.g. Use blue theme, Use red theme). I thought creating a resource array for each sequence would work, but that generates an array of

[android-developers] creating default.properties when making a project using IntelliJ Idea

2010-08-24 Thread Ankit
I am using InteliJ Idea Community edition to develop android apps. I was trying to write UnitTests for a HelloWorld App as described in http://developer.android.com/guide/developing/testing/testing_otheride.html . However I keep on getting an error Found main project package:

[android-developers] emulator performance

2010-08-24 Thread CHENG LUO
Hi there, So I developed a small 3d game on Android 1.6 with JPCT, the free 3d game engine Android version. It seems the frame rate is really low on emulator(5 frames per second) Did I miss something to speed up the emulator or it is normal, I should test the game with real device? TIA --

[android-developers] Application Screenshots

2010-08-24 Thread hex6
Who is the idiot that decided to convert application screenshots to JPG on the market? And is it ever going to get fixed? -- 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] Problem Installing app

2010-08-24 Thread Ajmer singh
Hi I am working on a Android application , When i tried to download the My App to My Motorola Droid 2.2 ,It gives an error that Problem in parsing,I am using Ecllipse and Api 2.1 for development, Please let me know what could be the issue. Please help. -- *Thanks and Regards Ajmer Singh* --

Re: [android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread Federico Paolinelli
On Tue, Aug 24, 2010 at 8:37 AM, String sterling.ud...@googlemail.com wrote: On Aug 24, 7:11 am, Federico Paolinelli fedep...@gmail.com wrote: Now, apart from the curiosity of find out the cause of this lock up, Does your app use OpenGL? There's a bug deep in the Android OpenGL

Re: [android-developers] does Google forbid orientation animation on purpose?

2010-08-24 Thread Dianne Hackborn
What do you mean forbid? The standard platform doesn't have one implemented. This is not something that is accessible for apps, so not relevant for this group. On Mon, Aug 23, 2010 at 8:12 PM, Xiao lingxiao1...@gmail.com wrote: I'm reading the android source code, and wanna make orientation

[android-developers] I want to get system permission?

2010-08-24 Thread CaryWang
I have a application I write android:sharedUserId=android.uid.system in AndroidManifest.xml. I want to get system permission.I install to HTC mobile phone.but install fail.error info :Package ... has no signatures that match those in shared user android.uid.system. I application need

[android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread KG
Change your email address. On Aug 23, 11:11 pm, Federico Paolinelli fedep...@gmail.com wrote: I just got an email from an user that says that she want me to refund her (0.99 eur) because my app causes her nexus one to lock up. Now, apart from the curiosity of find out the cause of this lock

Re: [android-developers] User request refund 20 days after purchase

2010-08-24 Thread Kostya Vasilyev
Ask her if she's running a task killer or any other kind of Android improvement utility. Every time I get an email from a user saying that my app locks up, doesn't update, etc. - it turns out they are running one of those. Once they get rid of it, problems go away. It's really curious why

Re: [android-developers] User Space Hardware Abstraction Layer Development Guide

2010-08-24 Thread lee dallas
I would suggest you to have a look of the overlay code in hardware/libhardware/moudule/overlay. In the new HAL architecutre, it introduced a stub concept which replaced the legacy architecture which load the c/c++ library from java application/service directly. In stub, you need to implement some

Re: [android-developers] emulator performance

2010-08-24 Thread lee dallas
The emulator make use of software opengl library. So it's normal to have a low performance. 2010/8/24 CHENG LUO stand...@gmail.com Hi there, So I developed a small 3d game on Android 1.6 with JPCT, the free 3d game engine Android version. It seems the frame rate is really low on emulator(5

Re: [android-developers] seeking information to get started

2010-08-24 Thread lee dallas
http://developer.android.com/sdk/installing.html 2010/8/24 ashwin shekhar ashwinshekh...@gmail.com hi all, am very new to androids n want to know more abt t. pls give me informations abt SDK ,JDK,, eclipse etc n why they r used ??? how do i install n use tat... pls posts links to videos n

Re: [android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread Rocky
Hi, Change the email is not a solution, Try to resolve the problem, it is not a matter of once u sold ur product that it. ---RKJ On Tue, Aug 24, 2010 at 12:49 PM, KG kevinconca...@gmail.com wrote: Change your email address. On Aug 23, 11:11 pm, Federico Paolinelli fedep...@gmail.com wrote:

[android-developers] Monkey tool: Launch a particular Activity

2010-08-24 Thread George
I want to launch only a single Activity in a package using Monkey and allow it to perform the random event testing. The only option I see to use -c with CATEGORY_MONKEY and modify my activity in the AndroidManifest to add this category to my activity? Though when I tried with an activity with

Re: [android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread Federico Paolinelli
On Tue, Aug 24, 2010 at 9:26 AM, Rocky rkjhaw1...@gmail.com wrote: Hi, Change the email is not a solution, Try to resolve the problem, it is not a matter of once u sold ur product that it. ---RKJ I wasn't considering that an option :-) -- You received this message because you are

Re: [android-developers] does Google forbid orientation animation on purpose?

2010-08-24 Thread xiao ling
I'm researching the source code, and I wanna implement an animation for default screen rotation. I just need some help. On Tue, Aug 24, 2010 at 3:12 PM, Dianne Hackborn hack...@android.comwrote: What do you mean forbid? The standard platform doesn't have one implemented. This is not

[android-developers] Virtual KeyPad for Android on OMAP Processor

2010-08-24 Thread rakesh bohra
Hello, I've deployed Android on Omap Processor Board. I've also created some android application which requires user interface (Alpha -Numeric ) input from User. Can anybody help me to invoke the android Virtual Keypad on OMAP Processor ? Your reply will be highly appreciated. Thanks Regards,

Re: [android-developers] Re: So can we use Directions API or not in Android?

2010-08-24 Thread Filip Havlicek
And you are sure based on what? Your assumption? I'm just telling you what is written. Use of the Google Directions API is subject to a query limit of 2,500 directions requests per day. Nothing else is written there about the public limitations. I'm pretty sure the limitations is for all the

Re: [android-developers] LVL found to be easy to crack

2010-08-24 Thread Kostya Vasilyev
The article states: Even when mangles in ProGuard the licensing library code is easily found automatically. Since you compile the licensing library into your own code you can make some changes to it to make it harder to find when obfuscated though. Perhaps it is possible for Google to

Re: [android-developers] Re: LVL found to be easy to crack

2010-08-24 Thread Trevor Johns
So far, in all the cases of cracked apps we've seen, it's been because of the following: 1. The developer did not run a code obfuscating tool (such as ProGuard) on their application; and, 2. The developer implemented the LVL as a drop-in library, without making any modifications to the library

[android-developers] Re: SSLException: Not trusted server certificate

2010-08-24 Thread Ajay
Hi, Since my app is going to access our own servers, I think I can use the hack of trusting all certificates. I tried the following still fails :-( SchemeRegistry schemeRegistry = new SchemeRegistry(); SSLSocketFactory sslSocketFactory = SSLSocketFactory.getSocketFactory();

Re: [android-developers] LVL found to be easy to crack

2010-08-24 Thread Trevor Johns
On Tue, Aug 24, 2010 at 12:31 AM, Kostya Vasilyev kmans...@gmail.comwrote: The article states: Even when mangles in ProGuard the licensing library code is easily found automatically. Since you compile the licensing library into your own code you can make some changes to it to make it harder

[android-developers] Re: Incoming call diverted indicator

2010-08-24 Thread mikko.martt...@arcomi.fi
Hi, I just wonder how does Nokia phones know it. I have had about 15 different models latest E90, all of them show that little arrow in front of the callers number if the call is diverted to your number. So this really is a phone issue. Rergards Mikko On 19 elo, 05:36, Indicator Veritatis

[android-developers] Re: USB ports on N1 - usable?

2010-08-24 Thread Chris Miller
It's not straightforward, but it is possible with a custom kernel. See this thread for details: http://forum.xda-developers.com/showthread.php?t=694427 Assuming I have a USB device I want to attach to a N1, would it be usable? Lets assume I have the drivers or can write them to interact with

Re: [android-developers] New to Android and programming

2010-08-24 Thread lee dallas
Just get started directly to write android app by following the dev. guide in android offcial website. That's what I did (I used to be a c/c++ developer). 2010/8/22 Droidblazer00 weilache...@gmail.com HI everyone, as the title says i'm new to the Android community, and i don't have much

[android-developers] Re: Application Screenshots

2010-08-24 Thread Yahel
This seems like a little over reaction don't you think ? People in this group like to answer to courteous and polite questions. That being said can we know why this such an important matter that you feel the need to call people idiots ? Yahel On 24 août, 01:14, hex6 hex...@gmail.com wrote:

[android-developers] Re: LVL found to be easy to crack

2010-08-24 Thread a1
If you put antipiracy check (eg. CRC checking to detect package modification) in native code along with some other vital routines, one will have to patch native implementation, it's of course doable, but will take more time. -- Bart Janusz (Beepstreet) On 24 Sie, 08:34, Hugo Visser

[android-developers] Re: glDeleteTextures produces strange error (5572216)

2010-08-24 Thread jojoma
are you changing between the activity that uses your surface and another one by any chance? because if you are, you're losing the EGL context in which are kept the names/id's of the currently loaded textures. By losing that context all this information simply disappears, without a damn warning...

Re: [android-developers] Re: Application Screenshots

2010-08-24 Thread Miguel Morales
I agree it's a little harsh, but developers tend to have a short fuse. I would be curious about this myself. On Tue, Aug 24, 2010 at 1:29 AM, Yahel kaye...@gmail.com wrote: This seems like a little over reaction don't you think ? People in this group like to answer to courteous and polite

Re: [android-developers] Re: startLayoutAnimation in reverse order

2010-08-24 Thread Klaus Kartou
I did some more research and found others with the same problem, but no solution: http://groups.google.co.jp/group/android-developers/msg/a60b330dd1745d35 It looks like the issue is related to how the convertViews are re-used in the adapter. Any ideas how to solve this? On Tue, Aug 24, 2010 at

[android-developers] Give back memory to OS

2010-08-24 Thread Nanard
Hi, My app uses big external libraries (it will take me several months to slowly safely optimize it). Anyway,my app will still be big (8-9Mo once installed). Depending on the file the user opens, it may happend that I get Out Of Memory. I now catch almost all of them, display a message and

[android-developers] Knowledge about app ratings...

2010-08-24 Thread djdamage06
Hello everybody, I want to know if there is a way (by the code) to know if an user have rated our application in the Market... Thanks a lot for your answers :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] creating Hierarchical menu.

2010-08-24 Thread crajesh
Hi All, I am new in android. I want to create Hierarchical menu. So will you please guide me how to create the Hierarchical menu Thanks everyone in Advance. C.Rajesh -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Home screen widget container

2010-08-24 Thread Mark Murphy
On Sun, Aug 22, 2010 at 9:06 AM, Alex Roebuck maroeb...@gmail.com wrote: Are home screen pages exposed in the API? No. The home screen is an application. There are dozens of them. While some may have some APIs you can use, I am not aware of any that do. -- Mark Murphy (a Commons Guy)

Re: [android-developers] I want to get system permission?

2010-08-24 Thread Mark Murphy
On Tue, Aug 24, 2010 at 3:17 AM, CaryWang wangjf...@gmail.com wrote: I have a application  I write android:sharedUserId=android.uid.system in AndroidManifest.xml. I want to get system permission.I install to HTC mobile phone.but install fail.error info :Package ... has no signatures that match

[android-developers] Re: glDeleteTextures produces strange error (5572216)

2010-08-24 Thread Jason
Hi.. thanks for the insight. I actually considered the same case and implemented and override for the surfaceDestroyed method of the GLSurfaceView, just to see if it was being destroyed. Sure enough, the gl surface is destroyed when I flip it out of view with the ViewFlipper. That's fine, as I

[android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
anybody could help me? 2010/8/23 Bin Dou doubin...@gmail.com I want to judge the call has been connected. So I want to invoke method called isAlive() in the hide abstract class Connection(com.android.internal.telephony)? -- You received this message because you are subscribed to the

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Mark Murphy
Don't do it. It is not part of the Android SDK. On Tue, Aug 24, 2010 at 7:07 AM, Bin Dou doubin...@gmail.com wrote: anybody could help me? 2010/8/23 Bin Dou doubin...@gmail.com I want to judge the call has been connected. So I want to invoke method called isAlive() in the hide abstract

[android-developers] How can i copy the contains of data/ to sdcard/

2010-08-24 Thread Shrikk
Hi is there a way to move/copy some file on device to sdcard , once im in shell using sudo ./adb shell need to copy/move the contains of data/tombstones to sdcard/tombstones im using below command mv data/tombstones /sdcard/tombstones failed on 'tombstones' - Cross-device link but im getting

[android-developers] Re: Home screen widget container

2010-08-24 Thread skink
On Aug 24, 12:55 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, Aug 22, 2010 at 9:06 AM, Alex Roebuck maroeb...@gmail.com wrote: Are home screen pages exposed in the API? No. The home screen is an application. There are dozens of them. While some may have some APIs you can use, I

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
So how could I detect the call has been connected ? I have already knew three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING, CALL_STATE_OFFHOOK,and what i can do? 2010/8/24 Mark Murphy mmur...@commonsware.com Don't do it. It is not part of the Android SDK. On Tue, Aug 24,

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Mark Murphy
On Tue, Aug 24, 2010 at 7:35 AM, Bin Dou doubin...@gmail.com wrote:  So how could I detect the call has been connected ? I have already knew three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING, CALL_STATE_OFFHOOK,and what i can do? CALL_STATE_OFFHOOK means a phone call is in

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
ok,i got it ,thanks 2010/8/24 Mark Murphy mmur...@commonsware.com On Tue, Aug 24, 2010 at 7:35 AM, Bin Dou doubin...@gmail.com wrote: So how could I detect the call has been connected ? I have already knew three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING,

[android-developers] Max bitrate for mp4 files in Android

2010-08-24 Thread Darshan
Hi All, I have 2 mp4 video files for playing in Android. Here is the information on both those files: mp4 File 1: Audio Codec: AAC Audio BitRate = 16000 Audio SampleRate = 16000 Audio SampleSize = 16 Video Codec: H264 Video BitRate = 114000

Re: [android-developers] Newbie's Android problem

2010-08-24 Thread Filip Havlicek
Hi Boban, if you see Android written or Android picture in some blue colors on your virtual device's screen, it means your device is still booting. You have to wait until it shows the typical screen with unlocking options. Best regards, Filip Havlicek 2010/8/22 erakovic.bo...@gmail.com

Re: [android-developers] Dynamic preferences for a variable number of profiles in an Android app

2010-08-24 Thread TreKing
On Sun, Aug 22, 2010 at 9:31 AM, Unitedroad dhruwatbha...@gmail.com wrote: So is there a cleaner and more standards compliant way to do this? http://developer.android.com/reference/android/content/Context.html#getSharedPreferences(java.lang.String, int) Look at the first parameter.

Re: [android-developers] app idea?

2010-08-24 Thread TreKing
On Mon, Aug 23, 2010 at 12:33 AM, Łûňąţýk lunao...@gmail.com wrote: could we get a behi app ? Plz ? Thanks for reading I have no idea what behi is but, it's probably something you want to ask them, whoever or whatever it is. Plz? Thanks for posting.

Re: [android-developers] how to write data to the existing xml file using code in android

2010-08-24 Thread Filip Havlicek
Hi Rammi, what about writing XML reader for your file, adding new nodes programatically and then writing XML writer to write it back? Doesn't work? Best regards, Filip Havlicek 2010/8/23 Rammi ram...@stellentsoft.com Hi i want to add new nodes to the exiting xml file in android to save

Re: [android-developers] What am I looking for

2010-08-24 Thread Filip Havlicek
Hi Robert, yes, I believe that through parsing the webpage and building it's form in some Java object way will let you manipulate the webpage contents and/or looks afterwards. Best regards, Filip Havlicek 2010/8/23 Robert Templeton robertjtemple...@gmail.com Hi, I'm trying to build a web

Re: [android-developers] New to Android and programming

2010-08-24 Thread TreKing
On Sun, Aug 22, 2010 at 1:32 AM, Droidblazer00 weilache...@gmail.comwrote: So would it be better for me to learn Java before getting started with the SDK and eclipse? Or is it just the same to jump right in on App development and learn on the fly? Well, it's definitely not the same, but

  1   2   3   4   >