[android-developers] تبلت ها «یکی از پررشدترین فناوری‌ها در طول تاریخ»

2012-06-17 Thread hosein bitaraf
ایتنا – کارشناسان، تبلت را «یکی از پررشدترین فناوری‌ها در طول تاریخ» به شمار می‌آورند. http://itna.ir/vdcayynu.49nuo15kk4.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] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Terry
Thank you again, Mark. You say that No device that legitimately has the Google Play Store on it will ship with less than 1GB of external storage -- it's a requirement. This is getting interesting. I checked on a new HTC One V. There the Environment method getExternalStoragePublicDirectory()

[android-developers] Google Checkout order list

2012-06-17 Thread Giuseppe
Dear All I would like to get info about orders from my Android checkout account. Any suggestion? 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@googlegroups.com To

[android-developers] Re: bubble message like iphone messages ??

2012-06-17 Thread ala hammad
ok but i need something like this : https://lh6.googleusercontent.com/-SY4OoD743oI/T92pq_1BFrI/AHc/_CcsntslGik/s1600/bubbles.png with message detail and in bottom date ... On Tuesday, 12 June 2012 16:25:27 UTC+3, ala hammad wrote: Hello all , i want to know how to make an bubble

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Mark Murphy
On Sun, Jun 17, 2012 at 4:26 AM, Terry terb...@gmail.com wrote: I checked on a new HTC One V. There the Environment method getExternalStoragePublicDirectory() returns /mnt/sdcard, which cannot be used for anything. Trying to write there fails. The external memory is also reported as

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Chris Stratton
On Jun 16, 11:43 am, Mark Murphy mmur...@commonsware.com wrote: On Sat, Jun 16, 2012 at 11:33 AM, Terry terb...@gmail.com wrote: HOW do you get the preferred directory in internal storage? There is no preferred directory, insofar as the preferred directory concept implies that the user has

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Chris Stratton
On Jun 17, 4:26 am, Terry terb...@gmail.com wrote: I checked on a new HTC One V. There the Environment method getExternalStoragePublicDirectory() returns /mnt/sdcard, which cannot be used for anything. Trying to write there fails. The external memory is also reported as unmounted. There IS

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Mark Murphy
On Sun, Jun 17, 2012 at 9:49 AM, Chris Stratton cs07...@gmail.com wrote: There is no preferred directory, insofar as the preferred directory concept implies that the user has access to the files, and they don't have access to internal storage except via your app (or except via rooting their

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Terry
You asked What happens if you try to download something (perhaps a PDF file) with the built in browser? Good question. WIth an SDcard inserted, I tried to download a free ebook. That went well. Then i removed the SDcard, and tried again. This time I was informed (by the built in web browser)

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Mark Murphy
On Sun, Jun 17, 2012 at 10:23 AM, Terry terb...@gmail.com wrote: WIth an SDcard inserted, I tried to download a free ebook. That went well. And the file wound up where? /mnt/sdcard? You said that did not work (which cannot be used for anything. Trying to write there fails.) However, if I use

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Terry
Mark; You asked: And the file wound up where? /mnt/sdcard? You said that did not work (which cannot be used for anything. Trying to write there fails.) Sorry. I could have been a little clearer here. Yes, when the SDcard was inserted in the device, the downloaded file was saved on the sdcard

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Mark Murphy
On Sun, Jun 17, 2012 at 10:43 AM, Terry terb...@gmail.com wrote: You asked: And the file wound up where? /mnt/sdcard? You said that did not work (which cannot be used for anything. Trying to write there fails.) Sorry. I could have been a little clearer here. Yes, when the SDcard was

Re: [android-developers] Long press on the Google map secret?

2012-06-17 Thread Ralph Bergmann | the4thFloor.eu
try this: import java.util.Timer; import java.util.TimerTask; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapView; public class MyLongpressMapView extends MapView {

[android-developers] Re: Home, Menu, Back, Wallpaper, Play in different languages

2012-06-17 Thread albnok
I really don't know if these exist, but you can try: String something = context.getString(android.R.string.**); Just see what Eclipse auto-complete gives you. I know there are a few strings that we can dig up. On Thursday, June 14, 2012 4:51:18 PM UTC+8, Peter Webb wrote: My wallpaper

Re: [android-developers] Long press on the Google map secret?

2012-06-17 Thread Ralph Bergmann | the4thFloor.eu
here the link :-) http://www.kind-kristiansen.no/2011/android-handling-longpresslongclick-on-map-revisited/ -- 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

Re: [android-developers] Re: Home, Menu, Back, Wallpaper, Play in different languages

2012-06-17 Thread Nikolay Elenkov
On Mon, Jun 18, 2012 at 12:47 AM, albnok alb...@gmail.com wrote: I really don't know if these exist, but you can try: String something = context.getString(android.R.string.**); Just see what Eclipse auto-complete gives you. I know there are a few strings that we can dig up. Better: get

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Chris Stratton
On Jun 17, 10:23 am, Terry terb...@gmail.com wrote: You asked What happens if you try to download something (perhaps a PDF file) with the built in browser? Good question. WIth an SDcard inserted, I tried to download a free ebook. That went well. Then i removed the SDcard, and tried

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Terry
Chris; No, the HTC One V is sold WITHOUT an SDcard. Regards, Terry On 17 Jun, 18:09, Chris Stratton cs07...@gmail.com wrote: On Jun 17, 10:23 am, Terry terb...@gmail.com wrote: You asked What happens if you try to download something (perhaps a PDF file) with the built in browser?

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Terry
And that is why I do NOT understand when Mark is saying hat means your device is behaving within normal parameters. Terry On 17 Jun, 18:09, Chris Stratton cs07...@gmail.com wrote: On Jun 17, 10:23 am, Terry terb...@gmail.com wrote: You asked What happens if you try to download something

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Mark Murphy
On Sun, Jun 17, 2012 at 12:51 PM, Terry terb...@gmail.com wrote: And that is why I do NOT understand when Mark is saying hat means your device is behaving within normal parameters. Ah, now we're getting somewhere. That's a flaw in the distribution of this device -- whether that is HTC's issue,

Re: [android-developers] Re: Where to save data on devices without an sdcard?

2012-06-17 Thread Kostya Vasilyev
To give this discussion a bit more context: Various manufacturers (primarily HTC and Samsung) have been creating devices that have this additional memory partition (on top of the memory card and the internal storage), which can't be found using Android framework API, for the past two years or so.

Re: [android-developers] Help, eclipse does'nt show any errors, but app does'nt work on phone.

2012-06-17 Thread Lars
I worked what you wrote :). But when I enter the webpage it tells me to enable javascript and cookies. I have enabled javascript but I am not sure i enabled cookies right(but sometimes it opens anyway?). plus i can't zoom and scroll within the application, even though i implemented it. Heres

Re: [android-developers] Help, eclipse does'nt show any errors, but app does'nt work on phone.

2012-06-17 Thread Lars
It worked what you wrote :). But when I enter the webpage it tells me to enable javascript and cookies. I have enabled javascript but I am not sure i enabled cookies right(but sometimes it opens anyway?). plus i can't zoom and scroll horizontal within the application, even though i implemented

Re: [android-developers] Long press on the Google map secret?

2012-06-17 Thread Andrei
Thank, but i this saw. I think this method does not correct. Engineers tell in what direction think :) воскресенье, 17 июня 2012 г., 18:51:36 UTC+3 пользователь Ralph Bergmann написал: here the link :-)

[android-developers] Re: Eclipse Image Bug

2012-06-17 Thread G. Blake Meike
While I've never seen this happen in Indigo, it happens *constantly* in Juno. I know, I know: not supported. It is, however, certainly a way to drive a similar bug, consistently. G. Blake Meike Marakana The second edition of Programming Android is now on-line:

Re: [android-developers] Google Checkout order list

2012-06-17 Thread Fred Niggle
I think you mean merchant account?in any case a simple visit to your relevant account page will provide you will all the information you need. On 17 June 2012 09:57, Giuseppe porcelli.giuse...@gmail.com wrote: Dear All I would like to get info about orders from my Android checkout account.

Re: [android-developers] Leaking Window on orientation change

2012-06-17 Thread Vance Turnewitsch
The this is an Activity. The project I am writing the component for is rather large and takes almost four minutes to build; so I am creating my component in small Android app. Then when the component works, I will transfer my code into the large project. I can work with the on* methods now,

Re: [android-developers] Google Checkout order list

2012-06-17 Thread Fred Niggle
WHY? On 17 June 2012 22:13, Giuseppe Porcelli- FINM porcelli.giuse...@gmail.comwrote: I need to do it by code and not by browser. ** ** *Da:* android-developers@googlegroups.com [mailto: android-developers@googlegroups.com] *Per conto di *Fred Niggle *Inviato:* domenica 17 giugno 2012

Re: [android-developers] Leaking Window on orientation change

2012-06-17 Thread TreKing
On Sun, Jun 17, 2012 at 5:23 PM, Vance Turnewitsch betweenthehi...@gmail.com wrote: The this is an Activity. The project I am writing the component for is rather large and takes almost four minutes to build; so I am creating my component in small Android app. Then when the component works, I

Re: [android-developers] Google Checkout order list

2012-06-17 Thread Dallas Gutauckis
Use the Google checkout API. On Jun 17, 2012 8:14 PM, Fred Niggle fred.nig...@googlemail.com wrote: WHY? On 17 June 2012 22:13, Giuseppe Porcelli- FINM porcelli.giuse...@gmail.com wrote: I need to do it by code and not by browser. ** ** *Da:* android-developers@googlegroups.com

Re: [android-developers] Leaking Window on orientation change

2012-06-17 Thread Vance Turnewitsch
I know this situation is strange, but I am being honest. I saw the Romain guy post that suggestion somewhere before, and I have tried using that method. I haven't had success with it; so should override that method for the Dialog or the view in my dialog? Vance On Sunday, June 17, 2012

[android-developers] Re: bubble message like iphone messages ??

2012-06-17 Thread lbendlin
As Kris was saying, use a nine patch PNG as the background image for your custom view. On Sunday, June 17, 2012 5:57:10 AM UTC-4, ala hammad wrote: ok but i need something like this : https://lh6.googleusercontent.com/-SY4OoD743oI/T92pq_1BFrI/AHc/_CcsntslGik/s1600/bubbles.png with

Re: [android-developers] Leaking Window on orientation change

2012-06-17 Thread TreKing
On Sun, Jun 17, 2012 at 9:05 PM, Vance Turnewitsch betweenthehi...@gmail.com wrote: so should override that method for the Dialog or the view in my dialog? I think it would be the View that owns the dialog. In this case maybe your FrameLayout? Or the resizeVidView?

[android-developers] Re: Eclipse Image Bug

2012-06-17 Thread Sam
So...is there any way to fix this? On Sunday, June 17, 2012 11:59:27 AM UTC-7, G. Blake Meike wrote: While I've never seen this happen in Indigo, it happens *constantly* in Juno. I know, I know: not supported. It is, however, certainly a way to drive a similar bug, consistently. G.

[android-developers] Re: Play Store hijacking focus after in-app purchase dialog

2012-06-17 Thread kadmos
thank you everyone for your time and assistance - j -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Re: Eclipse Image Bug

2012-06-17 Thread Raghav Sood
Well, you could use DroidDraw, build your layout their and then copy paste the XML into your project. Thanks On Mon, Jun 18, 2012 at 9:38 AM, Sam scoutamis...@gmail.com wrote: So...is there any way to fix this? On Sunday, June 17, 2012 11:59:27 AM UTC-7, G. Blake Meike wrote: While I've

Re: [android-developers] Google Checkout order list

2012-06-17 Thread Giuseppe
I would use the API, the problem is that in Italy Google give us only a * MERCHANT_ID* without the *MERCHANT_KEY* So we can't use the API. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Play Store hijacking focus after in-app purchase dialog

2012-06-17 Thread Kristopher Micinski
Did you find some resolution to this, if you are still having an issue, it seems like you've invested some time in this, and if you really think it's an Android bug, and you have a reproducible test case in the form of a project (though in app purchasing stuff is just a pain to debug for obvious

[android-developers] Re: Long press on the Google map secret?

2012-06-17 Thread Pent
Thank, but i this saw. I think this method does not correct. Engineers tell in what direction think :) I used onTouchEvent for long-click for the last couple of years without problems. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Long press on the Google map secret?

2012-06-17 Thread Andrei
Please show code, that work with long click on Google Maps понедельник, 18 июня 2012 г., 9:32:42 UTC+4 пользователь Pent написал: Thank, but i this saw. I think this method does not correct. Engineers tell in what direction think :) I used onTouchEvent for long-click for the last