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

2012-06-16 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@googlegro

Re: [android-developers] adding a image just below the progressbar

2012-06-16 Thread TreKing
On Thu, Jun 14, 2012 at 1:15 AM, for android wrote: > How can i create a custom view where i can add a imageview just below the > progress percentage in the progress bar. That is I need an image just below > say 70% or 80% based on where the progress bar is? Create a custom view where you add a

Re: [android-developers] Not able to acces native apps.

2012-06-16 Thread TreKing
On Wed, Jun 13, 2012 at 6:24 AM, Abhijit wrote: > I successfully installed android emulator (2.2) and facebook.apk file. > "facebook.apk" is not a "native app". It's usually pre-installed on some devices, but it's not part of the OS. However, while logging to the application, error occurring as

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

2012-06-16 Thread TreKing
.On Sat, Jun 16, 2012 at 11:06 PM, Vance Turnewitsch < betweenthehi...@gmail.com> wrote: > I am writing a separate component for an Android framework, and I can't > modify the activity that will use my component. Your code shows d.setOwnerActivity(this). So what is "this" if not an Activity? --

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

2012-06-16 Thread Ibrahim Sada
There is a method called onlongClick listener ...apply that method... it may help you.. On 16 June 2012 21:01, Andrei wrote: > Hello. > For several days now can't find a solution how to handle a long press on > Google map. > I found a few detours: > 1) Add GestureDetector as an overlay on the m

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

2012-06-16 Thread Vance Turnewitsch
I am writing a separate component for an Android framework, and I can't modify the activity that will use my component. Vance On Friday, June 15, 2012 11:23:43 PM UTC-4, TreKing wrote: > > On Fri, Jun 15, 2012 at 7:54 PM, Vance Turnewitsch wrote: > >> I cannot access the on* methods of the acti

[android-developers] Re: Eclipse Image Bug

2012-06-16 Thread Sam
Tried that...many, many times On Friday, June 15, 2012 11:36:36 PM UTC-7, Rajis wrote: > > save and close the xml file and open again -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

Re: [android-developers] Eclipse Image Bug

2012-06-16 Thread Sam
No im using the XML editor itself. But whenever i use the visual editor to drop a picture into place, and then go back to the XML editor to edit it, all the code underneath the images code becomes weird when i try to highlight or type anything On Friday, June 15, 2012 9:46:40 PM UTC-7, Todd wro

Re: [android-developers] Bluetooth error on socket call

2012-06-16 Thread mike digioia
Set it to zero in the def. On Jun 16, 2012 9:18 AM, "James Black" wrote: > How do you set btDevice? > On Jun 15, 2012 7:04 PM, "mike digioia" wrote: > >> Bluetooth error on socket call- >> >> Anyone know what the issues are with my Samsung Nexus S device when I get >> this error in my native cod

Re: [android-developers] parsing html code into andriod page

2012-06-16 Thread Fred Niggle
Since you are new, it is highly recommended that you work through java programming tutorials - a simple google search will lead you to them. Regards, Fred On 16 June 2012 12:32, prudhvi p n v wrote: > hi guys , > > i am new to android .can anyone give the example for parsing an html page > to

Re: [android-developers] How can i Implement the OTA Service in android

2012-06-16 Thread Fred Niggle
Not with out user interaction. On 16 June 2012 07:40, Rajis wrote: > Hi > > I want make the user to install my app by sending the OTA service message. > Is it possible in Android? How can i Implement it. > Thanks > > -- > You received this message because you are subscribed to the Google > Group

Re: [android-developers] C2DM in Android 2.1

2012-06-16 Thread Mark Murphy
On Sat, Jun 16, 2012 at 4:12 PM, Kobi wrote: > Is the any way to implement C2DM in Android 2.1 or earlier versions? No, sorry. It requires firmware bits that did not show up until Android 2.2, and then only on devices supporting the Play Store infrastructure. -- Mark Murphy (a Commons Guy) http

[android-developers] C2DM in Android 2.1

2012-06-16 Thread Kobi
Is the any way to implement C2DM in Android 2.1 or earlier versions? Thanks in advance. Kobi -- 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

Re: [android-developers] Bluetooth error on socket call

2012-06-16 Thread James Black
How do you set btDevice? On Jun 15, 2012 7:04 PM, "mike digioia" wrote: > Bluetooth error on socket call- > > Anyone know what the issues are with my Samsung Nexus S device when I get > this error in my native code call to the socket LIB -- code starts here: > > btface = -1; > btDevice =

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

2012-06-16 Thread Mark Murphy
On Sat, Jun 16, 2012 at 11:33 AM, Terry wrote: > Even if a new device is sold without an sdcard, we would still like > our apps to work. No device that legitimately has the Google Play Store on it will ship with less than 1GB of external storage -- it's a requirement. > So; if a device does not

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

2012-06-16 Thread Terry
Thank you, Mark. Even if a new device is sold without an sdcard, we would still like our apps to work. So; if a device does not have an sdcard, WHERE would you recommend to store data (e.g. picture files)? HOW do you get the preferred directory in internal storage? Regards, Terry On 16 Jun, 17

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

2012-06-16 Thread Andrei
Hello. For several days now can't find a solution how to handle a long press on Google map. I found a few detours: 1) Add GestureDetector as an overlay on the map 2) Do the calculation and determine a long time. But I don't understand why is not working OnLongClickListener if I ask for mapVie

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

2012-06-16 Thread Mark Murphy
On Sat, Jun 16, 2012 at 9:27 AM, Terry wrote: > I have been searching for answers to this question, but found none. > The Environment method getExternalStoragePublicDirectory() normally > seems to returns "/mnt/sdcard", regardless of whether the sdcard is > mounted or not. It is easy to detect if

Re: [android-developers] Re: Proguard returns null pointer exception while adding external restlet jar

2012-06-16 Thread Giuseppe
Updated the Proguard to 4.8, NullPointException still there. Any suggestion? -- 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

Re: [android-developers] Re: Proguard returns null pointer exception while adding external restlet jar

2012-06-16 Thread Harri Smått
On Jun 16, 2012, at 1:52 PM, Giuseppe Porcelli wrote: > Hi Harri, > I am using ADT 20 preview ADT 20 preview3 ships with Proguard 4.7 (not latest one). At any rate, I can't guarantee updating it to 4.8 fixes this NullPointerException, just saying I had one ArrayOutOfBoundsException I was f

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

2012-06-16 Thread Terry
I have been searching for answers to this question, but found none. The Environment method getExternalStoragePublicDirectory() normally seems to returns "/mnt/sdcard", regardless of whether the sdcard is mounted or not. It is easy to detect if it is unmounted, but in that case it is NOT so easy to

[android-developers] parsing html code into andriod page

2012-06-16 Thread prudhvi p n v
hi guys , i am new to android .can anyone give the example for parsing an html page to android page thanks, Naga -- 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 T

Re: [android-developers] Fwd: فراخوان جهیزیه ای برای نوعروسی دیگر با مدد حضرت موسی بن جعفر علیه السلام* لطفا اطلاع رسانی کنید به دوستان

2012-06-16 Thread Marcelo Henrique
English please 2012/6/16 asheesh arya > what the language ? > > -- > 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

Re: [android-developers] Re: Proguard returns null pointer exception while adding external restlet jar

2012-06-16 Thread Giuseppe Porcelli
Hi Harri, I am using ADT 20 preview 2012/6/16 Harri Smått > I had problems with obfuscating one project I had. Updating ADT's Proguard > to latest one found on SourceForge fixed the problem for me until new ADT > was published. Maybe updating Proguard worked for you too - I think latest >

Re: [android-developers] Re: Proguard returns null pointer exception while adding external restlet jar

2012-06-16 Thread Harri Smått
I had problems with obfuscating one project I had. Updating ADT's Proguard to latest one found on SourceForge fixed the problem for me until new ADT was published. Maybe updating Proguard worked for you too - I think latest version is 4.8 and newer than the one bundled with ADT 19. -- H On Jun 16,

Re: [android-developers] IndexOutofBoundsException thrown from getViewAt() in RemoteViewFactory

2012-06-16 Thread Harri Smått
Ah, my bad. Thought it was your code causing IndexOutOfBoundsException. -- H On Jun 14, 2012 4:12 PM, "Ethan Gao" wrote: > I didn't ask for getViewAt(index>=1), this method is called by android > framework(I think it's called by RemoteViewsAdater). > > I can not figure out the reason RemoteViews

[android-developers] Re: Proguard returns null pointer exception while adding external restlet jar

2012-06-16 Thread Giuseppe
Did you solve it? On Wednesday, November 23, 2011 1:10:51 PM UTC+1, Android Developer wrote: > > Hi, > > Did any one have solution for this? proguard return exception for adding > external jar file( restlet jar). > > > Exception. > > Proguard returned with error code 1. > > See console Unexpec

[android-developers] Re: Using HttpClient in Desktop and HttpURLConnection in Android

2012-06-16 Thread Jonathan S
http://code.google.com/p/httpclientandroidlib/ On Friday, June 15, 2012 3:45:58 PM UTC-4, b0b wrote: > > If you are happy and familiar with HttpClient, use it. > But the Android HttpClient client version is old and buggy and > unmaintained and I wouldn't use it as is. > Hopefully you can use the