[android-developers] Re: ContentProvider - Update Field with multiplication result of other

2012-01-20 Thread Yahel
the field Using aVariable1 + "*" + aVariable2 does not multiply, it concatenates the string. You should really start here : http://docs.oracle.com/javase/tutorial/java/nutsandbolts/index.html Good luck. Yahel -- You received this message because you are subscribed to the Google Groups &q

[android-developers] Re: How to disable copy/paste in EditText

2011-12-21 Thread Yahel
activity ad the following :        @Overrideprotected void onCreateContextMenu(ContextMenu menu) { //super.onCreateContextMenu(menu); //Be sure to comment this line or remove it completely.menu.clear(); } Yahel -- You received this message

[android-developers] Re: Current mobile connection speed?

2011-12-14 Thread Yahel
Not exactly what you ask for but this is how I do it. I'm not trying to be specific about the speed in kbs of the connection because it can change a lot due to the user moving from cell to cell. So I simply detect what kind of mobile connection we are on and send a slow connection warning only whe

[android-developers] Re: Bad implementation of GPS on Samsung Galaxy tabs?

2011-12-06 Thread Yahel
, since it will have a hard time getting a fix, it will try and try and try and your battery consumption will go up and up and up. Good luck. Yahel On 6 déc, 08:51, Terry wrote: > I have an app which uses the GPS, and e.g. requests an update only > every 10 minutes. This results in almost no

[android-developers] Re: Method to take Wireshark traces

2011-12-06 Thread Yahel
Sorry mate but your question is about java on a desktop, not on Android. Maybe try to ask on a java forum. Good luck. Yahel On 6 déc, 07:49, Tom wrote: > HI All, > > Here i have copied the code. I am trying to write a code (for > phone automation) using which i want to connect

[android-developers] Re: strange error

2011-10-30 Thread Yahel
our new project. Yahel -- 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+unsubscr...@googlegroups

[android-developers] Re: Publish modified APK to the Android Market without triggering an Update to existing users?

2011-09-10 Thread Yahel
us, then it is going to be hard to end that thread. So I repeat : YOU CAN NOT DO THAT BUT IF YOU TRY IT WILL NOT BREAK ANYTHING. Loud and clear ? :D Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Re: Publish modified APK to the Android Market without triggering an Update to existing users?

2011-09-08 Thread Yahel
k note at the top of your description and in the recent changes : "* The new update is preparing the ground for the awsome new feature coming this month. So stay tuned" And there you go. Simply email this line to the few that will email you and you're done. Good

[android-developers] Re: Webviews side by side

2011-09-08 Thread Yahel
> I have two Webviews side by side, and, when one of them gets scrolled > vertically, I need to scroll the other. Second answer on Google for "Android webview scroll" : http://stackoverflow.com/questions/2238938/how-to-programmatically-scroll-android-webview Yahel -- Y

[android-developers] Re: question about other markets

2011-08-08 Thread Yahel
en make your game/app/livewallpaper with it and respect the artwork as truly as possible. That's just my two cents. Feel free to disagree :) Take care and good luck with your android endeavours :D Yahel On 8 août, 05:17, Jim Graham wrote: > On Sun, Aug 07, 2011 at 07:53:31PM -0700, Ch

[android-developers] Re: Android Url Redirect

2011-08-05 Thread Yahel
and/or display size header of the request. Most website use the User Agent header to tell if the user is on a mobile device or on a desktop computer and then serves the website accordingly. Good luck. Yahel On 5 août, 10:16, gaurav gupta wrote: > Hi Guys, > > M calling a webview to sho

[android-developers] Re: Request to Google's Android SDK team

2011-07-24 Thread Yahel
t to be fair they just copied Microsoft recipe :D Beside, you have 600 000 new potential customer every day, so if the 600 000 of today are upset, well you'll do better tomorrow :D It's called the Google Way :D Yahel. -- You received this message because you are subscribed to the Google Gro

[android-developers] Re: Please review & check my newly launched app.

2011-06-23 Thread Yahel
single-man Team" or the "Microsoft Word team" : Ship your crap to the world and they'll tell you what's wrong with it. Oh and by the way this technique is called : User feedback (and wink;) ... Don't forget to wink after you say it, it will tell people who are in

[android-developers] Re: Alarm Service

2011-06-23 Thread Yahel
7;ll have a boat one dayAnd then he tells me...Oh WTF...Oh yeah Android...Alarm service...Need to pee" and falls asleep :D Yahel On 23 juin, 16:03, Sivaprakash wrote: > > -- > - Prakash. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: Application exits silently

2011-06-23 Thread Yahel
ighty "LogCat" of hell and be prepared to see dead PackageManager. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: croping, scaling and rotating a Bitmap make my app crash

2011-06-23 Thread Yahel
ge quality. Small device = small memory = small bitmaps or Dalvik will commit suicide :D Yahel -- 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 f

[android-developers] Re: textview and unicode

2011-06-20 Thread Yahel
that would hold all of the fancy characters in unicode up to #5000 will add at least 1-2 Mb to the overall size of your app. A png saved for web in 48x48 is less than 10 Ko. And you can use it as the background of your text field. Yahel On 20 juin, 14:25, dashman wrote: > i'm setting some

[android-developers] Re: android celebrites api

2011-06-16 Thread Yahel
thod in the celebrity one ? I sure could you use the fame :s Yahel -- 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 e

[android-developers] Re: Strange exception

2011-06-16 Thread Yahel
That's what the first three lines of your stacktrace suggest. Yahel On 16 juin, 18:33, Felix Garcia Lainez wrote: > Umm... So the error is on one of my touchevents implementations for > textview objects (and subclass like edittext)? > > On 16 jun, 15:00, Yahel wrote: > >

[android-developers] Re: Strange exception

2011-06-16 Thread Yahel
> really would be crazy, no? Crazy ? Yes ! Tedious ? Yes ! But you can probably narrow it down since it is raised by a TextView ontouch event. Have fun :) Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: Strange exception

2011-06-16 Thread Yahel
just before and a log line just after any of those. Long and tedious...Yes...Efficient...Yes :D Yahel -- 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 u

[android-developers] Re: Google removed 10 mallware apps - I'm affected. Please help

2011-06-14 Thread Yahel
I really do hope for you that this time the Android Market Team has been a little more profesionnal and kept backup but I really wouldn't count on it if I were you. Come back to tell us what happenned if they ever get back to you. Good luck mate. Yahel On 14 juin, 14:29, "n.a"

[android-developers] Re: Google removed 10 mallware apps - I'm affected. Please help

2011-06-14 Thread Yahel
out. But be sure to start several other apps for iphone as I did and find other revenues that do not depends on someone else framework. Good luck. Yahel On 14 juin, 10:57, "n.a" wrote: > Hello Guys and Google, > I'm the developer of the most popular flashlight application

[android-developers] Re: Mac source control

2011-05-17 Thread Yahel
inutes. If you are several developers working intensively on the project then GIT is a must have. Good luck. Yahel On 17 mai, 17:30, bob wrote: > What's a good source control system for the Macintosh Android > developer? -- You received this message because you are subscribed

[android-developers] Re: Is it true, Paid Aandroid apps from indian origin can not be published?

2011-05-13 Thread Yahel
Please report to this page to know which countries are able to sell on the market : http://market.android.com/support/bin/answer.py?hl=en&answer=143779&topic=1100168 Yahel On 13 mai, 10:16, mack2978 wrote: > Could any one from android support please confirm that Paid Aandroid

[android-developers] Re: Help me in detecting sound pulses (basically frequency detection)

2011-05-13 Thread Yahel
You need to take a look at an algorithm called "Fast Fourier Transform". You can find one implementation here : http://www.badlogicgames.com/wordpress/?p=449 Good luck. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers&quo

[android-developers] Re: UI Framework Bug?

2011-05-12 Thread Yahel
tmap exceeds VM budget" memory exceptions. Yahel -- 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

[android-developers] Re: UI Framework Bug?

2011-05-12 Thread Yahel
ion spinnerAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.rotate); spinner.startAnimation(spinnerAnimation); } return v; } Not sure though. Good luck. Yahel -- You received this message because you are subscribed to the Go

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-13 Thread Yahel
our $12 000 DRM licence + 10 days work for the implementation are just a pure loss of money and time. Maybe if you told us what the app is about we could help you find a way to monetize your app in a complete different fashion. Good luck. Yahel -- You received this message because you are sub

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-13 Thread Yahel
> For a slightly more secure implementation you could > encrypt/decrypt only a small part of the mp3 files, eg the header - > enough to render them unplayable by other players, that way you don't > need to encrypt/decrypt the entire .mp3 file We'd be on StackOverflow I'd +1 on you big time :D Thes

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-12 Thread Yahel
ing to be hacked :) So much so that a lot of non-free legal mp3 download services now offer only DRM free mp3's Yahel -- 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@go

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-12 Thread Yahel
Rereading your questions, I'm not sure I understand your problem. You seem to have find a decent workaround using this encrypt/decrypt scheme. Can you tell us what is going wrong ? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-12 Thread Yahel
The limit for an apk is 50 meg. Yahel -- 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-developer

[android-developers] Re: is there any idea that files are only used by application those are stored on media card?

2011-04-12 Thread Yahel
Simply implement your own media player inside your app. Files that are stored in the asset folder of your app are by default private and not accessible by any other app. No need to encrypt them except if you're afraid of people manually unpacking your apk. Yahel -- You received this me

[android-developers] Re: Image processing in Android

2011-04-11 Thread Yahel
Bitmap memory management is buggy and completely unintuitive. It does not show in MAT as it is allocated in another place and not counted in the heap. Well it is counted but not easily released or something. My app is all about images(a world of faces), and here is how I get it to work most of the

[android-developers] Re: Version2 uploading to Android Market

2011-02-08 Thread Yahel
03/03/38 18:48] shows the same exact date and time for the from section, its pretty safe to assume that it is the correct certificate. Yahel On 8 fév, 10:44, subhashini alaguchokku wrote: > Hi! > > "I checked with "jarsigner -verify -verbose -certs my_application.apk" if

[android-developers] Re: SKIA Bitmap loading ??

2011-02-04 Thread Yahel
Thanks for your input Romain, could you comment on the original question as well ? What was the point of the SKIA testing and what are the difference between the two way of downloading an image ? Yahel On 4 fév, 12:53, Romain Guy wrote: > Shelves is still relevant, but it should be updated

[android-developers] Re: SKIA Bitmap loading ??

2011-02-04 Thread Yahel
Excellent link and info Kostya, thank you. I believe you're right it's not the same implementation but it's the same principle. I hadn't seen this article. Very interesting. Yahel -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] Re: Bitmap factory and ICC aware JPG

2011-02-04 Thread Yahel
My problem is that I don't choose the file I want to use, they are picked by the user from internet. I'm wondering if the way Romain Guy handles things in my other question is not about that kind of problem. I'll give it a shot. Yahel On 21 jan, 16:33, nagarjuna lingala wrot

[android-developers] Re: SKIA Bitmap loading ??

2011-02-04 Thread Yahel
A little up on this. No one really ? Yahel On 3 fév, 19:49, Yahel wrote: > Hi all, > > I'm starting to implement a lazy image loader for the listview in my > new project so I was gathering informations and came across Romain Guy > full featured implementation in the pro

[android-developers] Re: Newbie help, please.

2011-02-03 Thread Yahel
You are not initializing your object Vibrator. This is really like java 101. You should start by learning java. Otherwise it's going to be very difficult for you. http://download.oracle.com/javase/tutorial/tutorialLearningPaths.html Good luck. Yahel -- You received this message becaus

[android-developers] Re: Is this possible with Android

2011-02-03 Thread Yahel
No sorry, android apis do not provide a way to send audio to a call. Yahel On 29 jan, 08:59, Johny wrote: > I am thinking about this scenario > > 1.In  a mobile with Android will be running my script. > > 2. Someone will dial the number( say number A)  of that mobile where

[android-developers] SKIA Bitmap loading ??

2011-02-03 Thread Yahel
Hi all, I'm starting to implement a lazy image loader for the listview in my new project so I was gathering informations and came across Romain Guy full featured implementation in the project Android Shelves : http://code.google.com/p/shelves/source/browse/trunk/Shelves/src/org/curiouscreature/and

[android-developers] Re: How to detect Face and Smile & Face matching in Android?

2011-01-21 Thread Yahel
Take a look at this port of openCV https://github.com/billmccord/OpenCV-Android/blob/master/README.rdoc Good luck. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Yahel
Seems like you are missing the fullscreen bit of the syntax : android:theme="@android:style/Theme.NoTitleBar.Fullscreen" Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: Bitmap factory and ICC aware JPG

2011-01-21 Thread Yahel
ew and the facts that it knows how to load the image to try to get around. Yahel -- 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] Re: Bitmap factory and ICC aware JPG

2011-01-21 Thread Yahel
Up ? Any insight of any kind from anyone ? Thanks. Yahel -- 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

[android-developers] Bitmap factory and ICC aware JPG

2011-01-20 Thread Yahel
? Side note : If I feed the guilty url to a webview component, it displays it fine with no problem. Could that be used in any way to make a bitmap out of it ? Thanks. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] How to use Android documentation ?

2011-01-06 Thread Yahel
doesn't tell you ? Again, I always find someone smarter than me who understood/debugged/ private investigated, so that I can always achieve what I meant to do, but I've been developing for 20 years now and I find it tough to feel so dumb. Yahel -- You received this message because you

[android-developers] Re: Can not decode high resolution picture

2011-01-05 Thread Yahel
c and finalization could not be moved to the catch and allow for a bigger size image to be computed without outofmemory exception. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-d

[android-developers] Re: Suggestions for my inventory application

2010-12-29 Thread Yahel
ode if any on your product, retrieve the item from a webservice and allow for nice and easy input of quantities either sold or purchased Yahel On Dec 29, 6:50 am, Abhishek Talwar wrote: > Hey guys > I have an application on which i have been working on for a while now. > The applicat

[android-developers] Re: Game pretty much like mine

2010-12-20 Thread Yahel
that looks like they are drawn on a page with a pencil for exemple. Bottom line : Competition is always good and there's room for everyone, it's not because they downloaded your competitor that they won't download yours(quite the contratry actually)...If yours is better people will notic

[android-developers] Re: Fun - Android Market failure on update

2010-12-19 Thread Yahel
Sorry I promised it was my last rant on the market but then this happens and I couldn't stop laughing : http://www.picvalley.net/v.php?p=u/2809/69253461918203477631292789388CRkaZVDRjg1Pl0HPbAb7.JPG Way to go market team :DDDDD Yahel -- You received this message because you are subscrib

[android-developers] Re: Fun - Android Market failure on update

2010-12-19 Thread Yahel
site :D If someone from the market can make the delete link from the screenshots actually remove the screenshots in a reliable and reproductible way it would be nice, if not well you know...Happy holidays anyway :D Yahel -- You received this message because you are subscribed to the Google Groups &q

[android-developers] Re: Fun - Android Market failure on update

2010-12-19 Thread Yahel
uch a low level of reliability/functionalities and such a high level of bugs I would be living under a bridge in a house of cardboard today :s Anyway...We now know about it. So I stopped hoping I could make a living of the Android Market and looked for other opportunities. Yahel On Dec 19, 12:24 pm,

[android-developers] Re: Fun - Android Market failure on update

2010-12-19 Thread Yahel
Ah nobody played but the answer were : 1, 3, 6 ... Thank you Android Market Team...Always glad to be your Beta-Testers :) Yahel On Dec 11, 5:02 pm, Yahel wrote: > Hey guys, > > The market team seems to want to push some more updates. Since they > probably did not test those bet

[android-developers] Re: Why Android Why???

2010-12-19 Thread Yahel
soft forum : Hey computer manufacturers how come there's a DVD drive on that computer and not on this one, and why is there a trackpad on this notebook and not on my desktop computer...I want consistency :D Thanks for sharing anyway :D Yahel On Dec 17, 5:43 am, JasunX wrote: > The reason

[android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Yahel
Julie Andrews is a spam bot... That's why she doesn't have much to say :D Yahel On 13 déc, 17:33, Brill Pappin wrote: > Julie, > > Your responses still don't contain any content. > Maybe something wrong with your reader? > > - Brill -- You received this mess

[android-developers] Fun - Android Market failure on update

2010-12-11 Thread Yahel
ystem hides all apps for all users 6. Posting/Updating of apps in the console Ok, I'm first, I'm betting 2 internets on n°5 and to be safe 1.5 internets on n°1 which is always a winner :D Yahel -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] Re: Market not updating?

2010-12-09 Thread Yahel
THAT MATTER, IN THE MARKET CONSOLE. It is a waste of time for you. Yahel On Dec 8, 1:30 am, Brill Pappin wrote: > I seem to be having a problem with my paid apps in the market. No > comments or downloads showing but I have about 30 purchases since this > morning. > > Is anyone e

[android-developers] Re: prevent user from clearing app data

2010-12-06 Thread Yahel
it is again those pesky users who wants to be in control !! So thanks pesky users, you guys think your the best uh ?! :DD Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] Re: App freezes when the power key is pressed

2010-12-06 Thread Yahel
?? One for calculation and next frame computing(game logic thread) and one which is the surfaceview drawing thread ? Yahel -- 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@google

[android-developers] Re: App freezes when the power key is pressed

2010-12-04 Thread Yahel
w that buffer to the screen while computing the next frame. Yahel -- 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

[android-developers] Re: App freezes when the power key is pressed

2010-12-03 Thread Yahel
that it is distracting since you decided to leave the notification bar that gets redrawn everytime. Just my last two cents :) Yahel On Dec 3, 6:01 pm, Eyvind Almqvist wrote: > I think I have fixed it now. I discovered that lots of objects were > created over and over again for every screen

[android-developers] Re: Proposal to Market Place

2010-12-02 Thread Yahel
and one last-last thought : If your last comment out of 3 comments in total is this 1 star-jerk rating, did you know you can download your app, rate it and comment it under your google market account ? Every time you change your comment it will come back to the top. Take care. Yahel On Dec 2, 7:06 pm,

[android-developers] Re: App freezes when the power key is pressed

2010-12-02 Thread Yahel
ering drawing, loading of a big bitmap or something similar in the main thread ? If you tell me which game it is I can try to reproduce the problem on my HTC Hero which is an older phone so might be more sensitive to the problem. Yahel -- You received this message because you are subscribed to the Goo

[android-developers] Re: Porting Andoid Apps

2010-12-01 Thread Yahel
It costs a lot though. The most spreaded way to go is to add something like android-remote- stacktrace to receive a full stacktrace by email when an unhandled error occurs on one of your client device. Good luck with your game. Yahel -- You received this message because you are subscribed

[android-developers] Re: how to review the app inside the app ; need not to go android market to rate app

2010-12-01 Thread Yahel
ilable. I had a lot of FC's due to some device not having a market to handle such a link. Yahel -- 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: App freezes when the power key is pressed

2010-11-30 Thread Yahel
uld be to Log.e("drawing","I'm drawing") in your thread drawing loop. Yahel On Nov 30, 10:50 am, Eyvind Almqvist wrote: > After I  insert the USB cable, there is three options “1. Connect your > phone. 2. Install PC Companion. 3. Charge phone.” No matter which >

[android-developers] Re: Please help with an ideea

2010-11-30 Thread Yahel
http://tinyurl.com/34f6d55 :) Yahel -- 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-developer

[android-developers] Re: App freezes when the power key is pressed

2010-11-29 Thread Yahel
ails from your app with the full stack. http://code.google.com/p/android-remote-stacktrace/ Good luck. Yahel On Nov 29, 7:05 pm, Eyvind Almqvist wrote: > My app freezes when the power key is pressed. This happens on > SonyEricsson X10 and X8, but not on Samsung Galaxy S. This is what > hap

[android-developers] Market is completely out of order !!

2010-11-25 Thread Yahel
stant but last count from july gives 10199 developers using the Market console. That's a lot of people depending on you. Could you try a little harder please ?? Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: LVL - Yay or Nay?

2010-11-23 Thread Yahel
L to your other apps. And of course, be sure to report back here to us. I like beautiful graphics and long analytic blog posts...Thank you very much :D Good luck. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: guitar tuner

2010-11-23 Thread Yahel
Hi mate, I worked on one recently but never finished the job. I found this open source code directly in java code perfect for Android and which works ok and is pretty easy to understand : http://thesongeditor.com/ref/FFT.java I had pretty good result with it. Good luck. Yahel -- You

[android-developers] Re: Product images for marketing materials

2010-11-10 Thread Yahel
oduct displaying an app. They might sell one, it would be so horrible. :D Yahel On Nov 10, 4:12 pm, Phil Endecott wrote: > Dear All, > > What do people know about rights to reproduce device graphics for web > sites and marketing materials? > > I have some great images of t

[android-developers] Re: AppsLib (Archos store) is not legit?

2010-11-09 Thread Yahel
ss what do they care about developpers. Yahel On Nov 9, 10:51 pm, "SoftwareForMe.com SoftwareForMe.com" wrote: > Hello, > > What do you all know about AppsLib? > > I know they were a small startup store who partnered with Archos to provide > them with an app store o

[android-developers] Re: how many devices have the nexus one / HTC desire multi touch bug and would you release a game utilizing multitouch anyway?

2010-11-06 Thread Yahel
t, my game uses only taps which are reported wrong almost everytime. In any case, you should prototype your gesture with a very simple app before and tests them on a nexus, a desire or a hero to see what happens for you. Yahel On Nov 6, 10:43 am, noriato wrote: > Hi, > so there's the mul

[android-developers] Re: android books

2010-10-14 Thread Yahel
Here, well we all are pro-Mark Murphy's books... Haven't read them but given the amount of definite and accurate answers he gives in this group I would say this is a safe call :D Yahel -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Re: Stolen app on market

2010-10-13 Thread Yahel
s why ... But I'm an entrepreneur, I'm suppose to thrive on constraints and use them at my advantage to make my business flourish and if the Market allows that kind of behavior, I know now exactly what to do next ;) What's the name of your app by the way ? ;) Yahel -- You received this

[android-developers] Re: Stolen app on market

2010-10-12 Thread Yahel
this is something else. I'm glad I just bought a Mac. Diversification will soften the feeling as I won't be 100% Android as today !! Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] Re: Stolen app on market

2010-10-12 Thread Yahel
soon as GOOGLE receive the first C&D letter and checked that it is indeed exactly the same app, boom !! Even if all the other apps are his own work. Yahel On 12 oct, 15:57, Nightwolf wrote: > Thank you for the answers. > We reported about infringement to adMob and Google. AdMob advised

[android-developers] Re: multiple images in a one single image

2010-10-12 Thread Yahel
compute which grid cell it corresponds to. You can maybe even do all of that without creating a big bitmap but just using imageviews. Yahel On 12 oct, 15:35, ntimesc wrote: > i  want to create a bitmap / image which has many images like > "Collage" which has more then one im

[android-developers] Re: android internationalization problem

2010-10-11 Thread Yahel
> i wanna to test it if the language is Norwegian On the emulator I wouldn't know, but on actual device, simply download "more locale" from the market and set the locale you want to be in. Its instanteneous and works very well. That's what I use to test my localization.

[android-developers] Re: Advertising network

2010-10-11 Thread Yahel
Yahel http://www.a-world-of-faces.com -- 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-developer

[android-developers] Market misery !!

2010-10-09 Thread Yahel
I am so upset !! It is not enough that the just-in category is flooded by bigboobs finders crap-apps all the time so that the exposition time of any decent app is a mere couple of hours but now after patiently waiting a week before launching my new update, it does not even appear in the just-in ca

[android-developers] Gone element blocking the view

2010-10-08 Thread Yahel
it's visibility set to gone. firstRelativeLayout respond to touch perfectly. Then I programmatically set secondRelativeLayout visibility to visible and back to gone. firstRelativeLayout does not respond to touch anymore. Any idea what can go wrong ? Yahel -- You received this message becau

[android-developers] Re: caller id spoofing

2010-10-08 Thread Yahel
I'm not sure but you could also take a look at google voice that gives a fair amount of freedom with what you do with your phone numbers. But It won't be Android related. Yahel On 7 oct, 23:40, Greg Donald wrote: > I've searched and found nothing helpful so I'm now ask

[android-developers] Re: project help

2010-10-07 Thread Yahel
er science ? Your deal is more likely to ring a bell there and he'll put time and effort you can't imagine. You can even lure them with the $13k a month success story from the creator of car locator :) Take care and I look forward to see your splendor apps on the market. Keep us pos

[android-developers] Re: OutOfMemory exception in OnCreate

2010-10-06 Thread Yahel
lization(); System.gc(); setContentView(R.layout.main); } But no dice. It does not happen as much though, so it kind of fixed it. I'm going to see in the next few days, if it is always the same device or framework. I'll keep you posted. Yahel -- You received this message because you are

[android-developers] Re: Adding Rate this application capability

2010-10-06 Thread Yahel
Cool, I thought so but since my english is not perfect, I wanted to have a second opinion. It will be in the next release then :D Thank you very much. Yahel http://www.a-world-of-faces.com -- You received this message because you are subscribed to the Google Groups "Android Developers&q

[android-developers] Re: Adding Rate this application capability

2010-10-06 Thread Yahel
the TOS ? Thanks. Yahel -- 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+unsubscr...@googleg

[android-developers] Re: Adding Rate this application capability

2010-10-06 Thread Yahel
Interesting find : My english is not that good so I'm not sure about the wording : Incentive means to offer something in return or simply to ask for a good rating ? I can see the point in the first one, I suppose the second one makes more sense. Thanks. Yahel. On 6 oct, 16:00, Brill P

[android-developers] Re: Market ranking

2010-10-06 Thread Yahel
Hi Kumar, Ok I guess then I'm going to jump a few places in a bit then. What do you mean by 30days/60days download ? Yahel On 6 oct, 13:11, Kumar Bibek wrote: > Well, there are a lot of factors. A few of them are: > > 1. No of downloads > 2. No of active installs > 3.

[android-developers] Market ranking

2010-10-06 Thread Yahel
ready figured out some of the black magic used by the Market to rank apps. Thanks for any insight. Yahel http://www.a-world-of-faces.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

[android-developers] Re: OOS : How do you use google groups ?

2010-10-05 Thread Yahel
that I meant OOT. I kind of "frenchised" it : "out of subject" instead of "out of topic" ... I wonder how many poor fellows are still asking themselves if they are old dinosaurs to not know that acronym I made up :D Thanks to both of you. Yahel -- You received thi

[android-developers] Re: Screen shot of the canvas screen

2010-10-05 Thread Yahel
> How can get the screen shot? Kindly Switch to DDMS perspective in Eclipse, then in the top left corner select the device you are running, then click on the darkblue icon above the list. It will take a screenshot of whatever is displayed on your device screen. Yahel -- You received t

[android-developers] OOS : How do you use google groups ?

2010-10-05 Thread Yahel
Pictures" group I'm pretty sure I never applied to :s Can someone tell me is setup to monitor and use google groups effectively. From my point of view it really looks likes the internet of 1985 :s Again sorry for the OOS. I really hope I'll find this thread back somewhere ... Y

[android-developers] Re: OutOfMemory exception in OnCreate

2010-10-02 Thread Yahel
ethod ? I didn't know it was possible...Could you explain to me how to reproduce this case ? Tahnks again for your time. Yahel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

[android-developers] Re: OutOfMemory exception in OnCreate

2010-10-02 Thread Yahel
documentation and try to cleanup and save only what's needed in the onDestroy method. Thanks again. Yahel On 3 oct, 00:32, Prakash Iyer wrote: > On Sat, Oct 2, 2010 at 6:14 PM, Yahel wrote: > > Hi all, > > > I'm having a hard time resolving a crash report. >

[android-developers] OutOfMemory exception in OnCreate

2010-10-02 Thread Yahel
TypedArray.java:601) at android.view.View.(View.java:1885) at android.view.ViewGroup.(ViewGroup.java:291) at android.widget.FrameLayout.(FrameLayout.java:83) ... 26 more Thanks for any hint. Yahel http://www.a-world-of-faces -- You received this message

  1   2   3   >