[android-developers] SecureSMS - good apps

2012-08-08 Thread Rocky
https://play.google.com/store/apps/details?id=com.sst.secure.sms&feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5zc3Quc2VjdXJlLnNtcyJd -- 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@g

[android-developers] Wifi

2012-08-08 Thread Meena Rengarajan
How datas are transferred to devices using WiFI like if i click button, then it should detect Wifi device automatically and datas like google or any datas must be transferred .. can anyone suggest me ? -- You received this message because you are subscribed to the Google Groups "Android Develop

Re: [android-developers] WiFi

2012-08-08 Thread Basva Raj
You can go for HTTP post method...like this JSONArray jArray; JSONArray jArray1; String wifiAddress = null; String result = null; InputStream is = null; StringBuilder sb = null; Handler handler; String option1[] = new String[100]; String option2[] = new String[100]

Re: [android-developers] listening incoming sms from specific port

2012-08-08 Thread surabhi jain
we can get the notification of receiving message with the help of “android.provider.Telephony.SMS_RECEIVED” but i want to listen message from specific* port* means it should enter in broadcast receiver only when the message is coming from specific port. -- You received this message because you a

Re: [android-developers] Reminder on calender

2012-08-08 Thread Asheesh Arya
may be this link help you!! good luck http://blog.blundell-apps.com/notification-for-a-user-chosen-time/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] WiFi

2012-08-08 Thread Meena Rengarajan
How do i wanna send datas to devices using WiFi ? can anyone help me please.. Can anyone send videos or sample code ? -- 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

Re: [android-developers] Non sticky service gets recreated (indefinetly?)

2012-08-08 Thread Dianne Hackborn
Binding and starting are completely orthogonal things. You bind to a service to establish a persistent connection to it. You start a service to have it run for some undefined amount of time separately from the caller. A service needs to remain created as long as it is being asked to do either of

[android-developers] Reminder on calender

2012-08-08 Thread Sadhna Upadhyay
Hi everybody, i am making an app in which i n have to use reminder on any particular date i don't know how to do it can spme one help me pls -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-dev

Re: [android-developers] setting two diffrent time in a single activity

2012-08-08 Thread Sadhna Upadhyay
another date may be any date not only tomorro > >> Thanks : sadhana -- 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: [android-developers] listening incoming sms from specific port

2012-08-08 Thread Asheesh Arya
can you elaborate your query once more!! -- 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...@g

[android-developers] listening incoming sms from specific port

2012-08-08 Thread surabhi jain
Hi all, How can we listen incoming sms from specific port. Thanks Surabhi Jain -- 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] Non sticky service gets recreated (indefinetly?)

2012-08-08 Thread Johan Appelgren
So START_NOT_STICKY has no effect once I've bound to it even if I unbind? I must explicitly use stopService if the service has ever been bound to even if there are no more connection? On Thursday, August 9, 2012 2:54:41 AM UTC+2, Dianne Hackborn wrote: > > If you bind to it with BIND_AUTO_CREAT

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread RENJITH KRISHNAN R
thank you Arun On Thu, Aug 9, 2012 at 11:11 AM, arun kumar wrote: > Hai krrish, Refer this website you got some idea > > http://thinkandroid.wordpress.com/2010/01/19/retrieving-contact-information-name-number-and-profile-picture/ > > > On Thu, Aug 9, 2012 at 10:58 AM, RENJITH KRISHNAN R < > renj

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread arun kumar
Hai krrish, Refer this website you got some idea http://thinkandroid.wordpress.com/2010/01/19/retrieving-contact-information-name-number-and-profile-picture/ On Thu, Aug 9, 2012 at 10:58 AM, RENJITH KRISHNAN R wrote: > then give me one example > > > > > > > > > > > On Thu, Aug 9, 2012 at 10:49 A

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread RENJITH KRISHNAN R
then give me one example On Thu, Aug 9, 2012 at 10:49 AM, TreKing wrote: > On Wed, Aug 8, 2012 at 11:35 PM, RENJITH KRISHNAN R < > renjithkr1...@gmail.com> wrote: > >> i searched it on google but didn't get the answer.please help >> me... >> > > What did you search for? I just t

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 11:35 PM, RENJITH KRISHNAN R wrote: > i searched it on google but didn't get the answer.please help me... > What did you search for? I just tried and found a ton of examples. -

[android-developers] Re: Service - SecurityException

2012-08-08 Thread Zoran Smilevski
Solved! When you start a service it's necessary to put class name and context. In example is: context.startService(new Intent(MusicService.ACTION_PAUSE)); but it should be: context.startService(new Intent(MusicService.ACTION_PAUSE, null, context, > MusicService.class)); Hope that this will

[android-developers] Sending datas

2012-08-08 Thread Meena Rengarajan
How to send datas to Wifi devices through application ? Any sample codes ? I am new to this technology . Can anyone help me please .. -- 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

Re: [android-developers] no targets are visible while setting up sdk location path in eclipse(window->preference)

2012-08-08 Thread Asheesh Arya
try to download eclipse plugin for android in your eclipse workbench -- 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 andr

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread RENJITH KRISHNAN R
i searched it on google but didn't get the answer.please help me... On Thu, Aug 9, 2012 at 2:06 AM, TreKing wrote: > On Wed, Aug 8, 2012 at 11:25 AM, Krrish wrote: > >> Please give me a reply to how can i fetch contact image using >> ContentResolver. >> > > Have you tried

[android-developers] Re: HttpsURLConnection when APN has proxy set

2012-08-08 Thread Zoran Smilevski
No problem :) I had a problem with posting data on non-80 port. You can read more here . I didn't notice any problem since then. On Thursday, August 9, 2012 5:48:28 AM UTC+2, Steve Baldwin wrote: > > Thanks Zoran. > >

[android-developers] Re: HttpsURLConnection when APN has proxy set

2012-08-08 Thread Steve Baldwin
Thanks Zoran. I just re-ran my test app and it worked with the NO_PROXY setting !! Another probably dumb question. Is this guaranteed to not adversely affect internet connectivity? In other words, just because it worked in my test case, does that mean that other mobile carriers that specify a

[android-developers] Re: HttpsURLConnection when APN has proxy set

2012-08-08 Thread Zoran Smilevski
Did you try to open a connection with NO_PROXY parameter? HttpURLConnection conn = (HttpURLConnection)mUrl.openConnection(Proxy.NO_PROXY); On Tuesday, August 7, 2012 10:32:09 PM UTC+2, Steve Baldwin wrote: > > From what I read in the documentation, HttpURLConnection is preferred over > DefaultH

[android-developers] Re: HttpsURLConnection when APN has proxy set

2012-08-08 Thread Steve Baldwin
Thanks Jonathan. I get that however from looking at the bug, it is in a method setupSecureSocket in a class HttpConnection. The only reference with that name I can find in the API documentation is in an interface in the org.apache.http namespace and I'm pretty sure they are different animals.

[android-developers] How can the software on PC get the status of opening the USB debugging on android phone

2012-08-08 Thread Anton Kaiser
After a device gets connected for USB debugging it appears in the list of devices in adb. Use the system console and type: adb devices Please rephrase your question, it is quite hard to understand what you are trying to accomplish here. -- You received this message because you are subscribe

[android-developers] Re: How to use apache thrift with android????

2012-08-08 Thread Guilherme Ramos
This is not about Thrift. This error occurs because you are including on your android app classpath a class compiled with a JVM version not compatible with Dalvik. Make you all your libraries are compatible. On Wednesday, August 8, 2012 10:32:50 AM UTC-3, adroidanky wrote: > > [2012-08-08 18:07

[android-developers] Anyone have a Honeycomb or Ice Cream Sandwich device with Voice Recognition installed?

2012-08-08 Thread Mark Carter
I'm hoping that someone will be kind enough to launch the Voice Recognition system settings and report back what activity is started (by looking at the logs). I started an SO question: http://stackoverflow.com/questions/11860229/how-to-display-voice-recognition-settings-screen-programmatically

[android-developers] Re: HttpsURLConnection when APN has proxy set

2012-08-08 Thread Jonathan S
HttpsURLConnection extends HttpURLConnection -- 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.

Re: [android-developers] HttpsURLConnection when APN has proxy set

2012-08-08 Thread Steve Baldwin
Thanks again Robert. So much for trying to use the 'preferred' approach. If it's not going to be fixed until > 4.1 it makes HttpsURLConnection pretty much useless for quite a while as far as I can tell. Pity. I assume the proxy setting in the APN is there for a reason and clearing it will di

Re: [android-developers] Non sticky service gets recreated (indefinetly?)

2012-08-08 Thread Dianne Hackborn
If you bind to it with BIND_AUTO_CREATE, you are saying you want the service to be created as long as you are bound to it. >From the documentation: A service can be both started and have connections bound to it. In such a case, the system will keep the service running as long as either it is star

Re: [android-developers] HttpsURLConnection when APN has proxy set

2012-08-08 Thread Robert Greenwalt
Not a dumb question - I thought of this after I sent the reply. As an app developer I'm not sure what you could do other than not use HttpsURLConnection. Maybe somebody else on this list has an opinion. You could clear the https proxy for your process, but if you're running behind a firewall (wi

Re: [android-developers] HttpsURLConnection when APN has proxy set

2012-08-08 Thread Steve Baldwin
Thanks for the reply Robert. Sorry for what is probably a dumb question but is there any way to implement a workaround using the patch or should I forget about using HttpsURLConnection - given that I have no control over if/when a proxy may be used. Regards, Steve On Thursday, August 9, 2012

Re: [android-developers] HttpsURLConnection when APN has proxy set

2012-08-08 Thread Robert Greenwalt
This is a known problem: http://code.google.com/p/android/issues/detail?id=35050 That link includes info to an AOSP fix that's already available. This should be included in a future release. R On Tue, Aug 7, 2012 at 1:32 PM, Steve Baldwin wrote: > From what I read in the documentation, HttpUR

[android-developers] Re: Database getting blank in android

2012-08-08 Thread Nobu Games
Database corruption can also happen when you open the same database file multiple times simultaneously. When the database is broken SQLiteDatabase simply re-creates the database file by default. I think that is largely fixed in newer Android versions and you would get a DatabaseLockedException

Re: [android-developers] Autostartapp

2012-08-08 Thread Pedro Cortez
Do a broadcast that receive a RECEIVE_BOOT_COMPLETED On Wed, Aug 8, 2012 at 5:36 PM, TreKing wrote: > On Wed, Aug 8, 2012 at 2:55 AM, Tarek Khalaf > wrote: > >> can i make my program start automaticly > > > Yes. > > > ---

Re: [android-developers] no google chrome for Atrix 2 Motorola MB865

2012-08-08 Thread Larry Meadors
This has what to do with android development? On Tue, Aug 7, 2012 at 3:57 PM, tensign wrote: > Is there going to be Google Chrome for Atrix 2 Motorola MB865. Why i am > asking is most of all the apps i use is in Google and the Default Web > Browser sucks from AT&T > > -- > You received this messa

Re: [android-developers] Database getting blank in android

2012-08-08 Thread Pedro Cortez
Did you close de SQLiteDatabase db? Sometimes in my app when i didnt close my db, my app gave me some exception. I put this funcion on my activities @Override protected void onDestroy() { super.onDestroy(); dao.cleanup(); } public void cleanup() { if (this.db != null) { this.db.

[android-developers] Non sticky service gets recreated (indefinetly?)

2012-08-08 Thread Johan Appelgren
If I have a simple service that returns START_NOT_STICKY in onStartCommand and I both start it explicitly (startService) and bind to it (bindService) in onCreate of my activity the service gets recreated after it has been killed over and over again. I unbind the service in onPause of my activity

Re: [android-developers] Help me Android SDK Install, please!

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 10:16 AM, TV wrote: > What should I do? Press back, then forward again. No, seriously. - TreKing - Chicago transit trackin

Re: [android-developers] Autostartapp

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 2:55 AM, Tarek Khalaf wrote: > can i make my program start automaticly Yes. - TreKing - Chicago transit tracking app for An

Re: [android-developers] Fetching Image from contact

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 11:25 AM, Krrish wrote: > Please give me a reply to how can i fetch contact image using > ContentResolver. > Have you tried a Google Search for this seemingly straight-forward task of yours? -

Re: [android-developers] DataBase getting blank when app left unused for few hours

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 5:32 AM, Rahul wrote: > But when i left the app opened for few hours the database gets blank > itself sometime (1 out of 5). Any suggestions can help me a lot. Try logging. Lot and lots of logging. -

[android-developers] AlertDialog

2012-08-08 Thread Lars
Hi, I have a problem with a alertDialog private AlertDialog nameDialog; nameDialog = new AlertDialog.Builder(this).create(); nameDialog.setTitle(R.string.errorName); nameDialog.setMessage(getString(R.string.errorNameText)); nameDialog.setIcon(R.drawable.ic_alert); nameDialog.setIconAttribute

[android-developers] Toshiba AT300 OEM USB Driver

2012-08-08 Thread tkauf15k
Hi, I'm using a Toshiba AT300 Tablet with Android 4. Is there any OEM USB Driver available to use the tablet as a device in eclipse and run it in debug mode? best regards... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

Re: [android-developers] Change word on buttonclick (with radiobuttons)

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 5:11 AM, Bob17 wrote: > The thing is that right now the word changes to the left, center or right > from the moment I click a RadioButton. I actually wants it to change only > if I click the Generate button. Any tips how I can achieve this? This is a logic problem related

[android-developers] Rotation Event Firing Omniture Tags

2012-08-08 Thread Chris Keune
Hello Gurus, Currently, I am experiencing my Omniture tracking to fire multiple times on each screen rotation(ie additional PageViews). Is there anyway to exclude the Omniture tags from firing on each rotation? Thanks -- You received this message because you are subscribed to the Google Gro

[android-developers] Fetching Image from contact

2012-08-08 Thread Krrish
Please give me a reply to how can i fetch contact image using ContentResolver. -- 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 ema

[android-developers] HttpsURLConnection when APN has proxy set

2012-08-08 Thread Steve Baldwin
>From what I read in the documentation, HttpURLConnection is preferred over >DefaultHttpClient for projects targeting Honeycomb or newer. I am targeting API 15 for my project so started down this path. (I connect to my server over https so was of course using HttpsURLConnection). Everything wor

Re: [android-developers] Re: problem in SOAP - asmx web service

2012-08-08 Thread Krishna Mahadik
Hi, Is the web service link up. I m getting following error. Is your web service properly hosted on web. "The test form is only available for requests from the local machine." and instead of private static String URL = "http://pro.bookadspace.com/** WebServices/BAAccountService.**asmx?op=**GetA

[android-developers] live video analysis

2012-08-08 Thread Ribak Lior
Hello! If in usual camera using applications the video is first recorded, and only then viewed, in my application I need to analyze the video in the moment it was recorded. How can I do it? Sorry for my English and thank you for your help :) -- You received this message because you are subscrib

[android-developers] DataBase getting blank when app left unused for few hours

2012-08-08 Thread Rahul
hello, I developed an app which is working fine. But when i left the app opened for few hours the database gets blank itself sometime (1 out of 5). I need to login then again for bringing the data from web services. I am using SQLITE database. Any suggestions can help me a lot. Thanking you R

[android-developers] [Android] In-app billing common questions

2012-08-08 Thread Vitali Smyk
Hello Google team. First at all i think API it too complicated and little bit stupid. Please take a look at PayPal API for make mobile payments for references. Situation 1: 1 Player has 2 different devices with one google account and make purchase on one of them. Did google notice second device

[android-developers] no google chrome for Atrix 2 Motorola MB865

2012-08-08 Thread tensign
Is there going to be Google Chrome for Atrix 2 Motorola MB865. Why i am asking is most of all the apps i use is in Google and the Default Web Browser sucks from AT&T -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] Re: Bluetooth Walkie Talkie

2012-08-08 Thread Jois
hey i'm too trying the same blue tooth walkie talkie project... can u help my out to develop this??? -- 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 fr

[android-developers] How can the software on PC get the status of opening the USB debugging on android phone

2012-08-08 Thread Allen wang
If i connect an android phone on the PC without opening the USB debugging and ADB drivers, then i open the USB debugging, is there any way to make a PC software get this status change? Expect your help. Thanks a lot! -- You received this message because you are subscribed to the Google Groups

[android-developers] Dynamic creation of table and showing it on dialog box

2012-08-08 Thread Krishna Mahadik
Hi People, I am want to generate a table dynamically at runtime and show it in a dialog box. Help and guidance needed. Thanks & Regards, Krishna V. Mahadik -- -- . \\\/// . /\ . | \\ // | . ( | (.) (.) |) --o00o--(_)--o

[android-developers] Autostartapp

2012-08-08 Thread Tarek Khalaf
can i make my program start automaticly thanx -- 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+unsubsc

[android-developers] Re: Nexus 7 drawable

2012-08-08 Thread limtc
No, will try! Will this cause issue for other already supported devices? I have carefully tested for many many devices. -- 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.c

[android-developers] Browser App Not sending HTTP request

2012-08-08 Thread tropicaljava
We have developed a android browser application (javascript) which keeps (every 3Sec) on sending a http (GET) request to my REST server (hosted on TOMCAT). Everything works fine till the time phone is in operation. But as soon as phone is lying idle, the browser application's javascript stops

[android-developers] Get camera image URL store it in Sqlite and restore it to your view

2012-08-08 Thread brobles
I followed the android developers camera example, that captures an image form camera and places it to the view. Not the problem I have is how to store that image path to my sqlite database and restore the imaage in other view. Link to google dev - > http://developer.android.com/training/camera/i

[android-developers] Android: File working in Emulator but giving error in Device? 400, BAD request with Multipart

2012-08-08 Thread Azhar
Hi, Question ilnk on Stack over flow I am just trying to upload file to server through the code it working fine if I access file from Emulator, path *data/app/07312012_135528.3gp* and gets se

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-08 Thread Kenneth
Try using a different usb port. Fixed it for me. I'm using the new MacBook Pro. On Wednesday, August 8, 2012 9:28:16 AM UTC-7, Dave Smith wrote: > > I noticed that, as soon as I upgraded to Mac OS Mountain Lion (10.8) I > have been unable to reliably get any of my devices to connect with ADB >

[android-developers] Database getting blank in android

2012-08-08 Thread Abhi
Hello, I am developing an app. It is working fine but if i left the app open for few hours the database gets blank sometimes(1 out of 5). I tried hard to track the issue but couldn't found any. I am using Sqlite database. Please help me as soon as possible. Thanks Abhi -- You received this m

[android-developers] Get the address from sms thread

2012-08-08 Thread ## André ##
This is my problem: I update all the sms address number, however i couldn't update the number which is showed on sms inbox. Example: I updated the sms address to 555- however in the sms inbox still shows 555-. If I enter in the thread the address number is correct and updated I am using c

[android-developers] How to use apache thrift with android????

2012-08-08 Thread adroidanky
[2012-08-08 18:07:21 - ThriftExample] Dx 1 error; aborting [2012-08-08 18:07:21 - ThriftExample] Conversion to Dalvik format failed with error 1 [2012-08-08 18:16:13 - ThriftExample] Dx warning: Ignoring InnerClasses attribute for an anonymous inner class (org.apache.log4j.chainsaw.ControlPanel$1

[android-developers] Change word on buttonclick (with radiobuttons)

2012-08-08 Thread Bob17
Hello, I am quite new to Android coding, but I have a question. Right now I am having the code below. The thing is that right now the word changes to the left, center or right from the moment I click a RadioButton. I actually wants it to change only if I click the Generate button. Any tips how

[android-developers] Error in App

2012-08-08 Thread Ehsan Sadeghi
I declare an intent in my manifest : and then create a class name GetResponse : package ir.smspeik.sms; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.c

Re: [android-developers] TtsEngine sample

2012-08-08 Thread Harri Smått
On Aug 8, 2012, at 9:13 PM, bob wrote: > I'm wondering if it even works at all. At least it compiles and installs ok after you change IceCreamSandwich with proper API integer. -- H -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

Re: [android-developers] OpenGL and Camera Preview - blending together gets “over saturated” color

2012-08-08 Thread Tobias Reich
So than it was just pure "luck" it worked fine with all the previous versions? What changed? Why can't it just be like it was before? I mean, its okay now and not really a big problem. - even though I don't know where I could have seen that information in the API. Thanks anyway! -- You received

Re: [android-developers] Re: Looking for Google feedback regarding the new Google Play Developer Program Policies and how they plan to deal with cases of Rogue ads (read Porn)

2012-08-08 Thread Kristopher Micinski
> I know that getting a response from someone on Google's team is much like > catching a Higgs boson, but where else would I go? This is important enough > to every developer relying on ads for monetizing that one would hope Google > could take a moment to chime in on the topic. I mean they are mak

[android-developers] TtsEngine sample

2012-08-08 Thread bob
Has anyone tried the TtsEngine sample? It has all kinds of things like this in it: I'm wondering if it even works at all. -- 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@goog

Re: [android-developers] Re: Back button show old removed dialog

2012-08-08 Thread CJ
:) I read it was reported 3 years ago and still happens sometime. -- 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

[android-developers] Re: Error In My Code for Usb detection in Android..please Help me..!!

2012-08-08 Thread bob
*You cannot launch a popup dialog in your implementation of onReceive()* On Tuesday, August 7, 2012 4:40:46 AM UTC-5, om mehta wrote: > > My JAVA code:- > > > package com.app.DetactUSB; > > import android.content.BroadcastReceiver; > import android.content.Context; > import android.content.

Re: [android-developers] Re: Back button show old removed dialog

2012-08-08 Thread TreKing
On Wed, Aug 8, 2012 at 1:57 AM, CJ wrote: > Stackoverflow said it's a bug and I googled and saw some similar situation. If that's the case, best thing to do is go to b.android.com and see if it's already reported. If not, create a simple example that demonstrates the problem and create a bug re

[android-developers] view elements unintenionally blinking

2012-08-08 Thread bbbill
Hi All, on my Android Tab (TF 101g with keyboard dock, Android 4.03) I observe some strange blinking I cannot explane. The whole screen is being controlled by a Relative Layout containing another Realive Layout with some view elements on top position, followed by a SurfaceView with a grafic canv

Re: [android-developers] Re: Looking for Google feedback regarding the new Google Play Developer Program Policies and how they plan to deal with cases of Rogue ads (read Porn)

2012-08-08 Thread jeka
The networks I use are AdMob, Millennial, Greystripe, Jumptap, Mobclix and Mopub. Of course, with Mobclix and Mopub being aggregators, there are a lot more networks in play than that. On a side note I'll add that after turning off all the networks from Moblicx and Mopub the porn complains have

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-08 Thread bob
I upgraded, and I have not seen that. On Wednesday, August 8, 2012 11:28:16 AM UTC-5, Dave Smith wrote: > > I noticed that, as soon as I upgraded to Mac OS Mountain Lion (10.8) I > have been unable to reliably get any of my devices to connect with ADB > (Galaxy Nexus, Nexus S, HTC EVO 4G, jus

Re: [android-developers] Re: Looking for Google feedback regarding the new Google Play Developer Program Policies and how they plan to deal with cases of Rogue ads (read Porn)

2012-08-08 Thread Kristopher Micinski
Perhaps to see the range of networks,? It's mostly irrelevant, I would think.. I think your posting here is mostly going to be met with deaf ears, looking through the group history you'll see that pretty much nobody has ever received feedback from the Google play team here. I agree it's a proble

Re: [android-developers] Re: Looking for Google feedback regarding the new Google Play Developer Program Policies and how they plan to deal with cases of Rogue ads (read Porn)

2012-08-08 Thread jeka
How is that relevant? On Wednesday, August 8, 2012 12:48:09 PM UTC-4, xucaen wrote: > > What exactly is your app? -- 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

Re: [android-developers] Re: Looking for Google feedback regarding the new Google Play Developer Program Policies and how they plan to deal with cases of Rogue ads (read Porn)

2012-08-08 Thread xucaen
What exactly is your app? On Tuesday, August 7, 2012 4:04:54 PM UTC-4, jeka wrote: > > Dude, no offense, but have you even read my post? > > Like I said: "... I've never seen one!", this is based purely on user > feedback. > > Yes, I reported it. Again, like I said: "They all said the same thin

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-08 Thread Dave Smith
As an addition to this, I have noticed that I can almost always get the devices to detect if I power them down and then back up while still connected to USB. The problem arises trying to get ADB to pick them up if they are connected while alive. -- You received this message because you are su

Re: [android-developers] Android: Add entry to the calendar

2012-08-08 Thread Michael Chan
Hi, Have a look at http://developer.android.com/guide/topics/providers/calendar-provider.html Thanks, Mike On Wed, Aug 8, 2012 at 2:40 AM, Rahul Kaushik wrote: > Hi, > > I need to add an entry in android calendar > please suggest. > > Thanks > RK > > -- > You received this message because you

[android-developers] ADB and Mountain Lion Issues

2012-08-08 Thread Dave Smith
I noticed that, as soon as I upgraded to Mac OS Mountain Lion (10.8) I have been unable to reliably get any of my devices to connect with ADB (Galaxy Nexus, Nexus S, HTC EVO 4G, just to name a few). It can take upwards of 10-15 cable re-plugs, re-starts of the ADB server, and toggling USB Debu

Re: [android-developers] Error In My Code for Usb detection in Android..please Help me..!!

2012-08-08 Thread Jonathan S
adb logcat On Wednesday, August 8, 2012 2:40:48 AM UTC-4, om mehta wrote: > > My problem is when i run this code on AVD emulator...it show that this >> application gas stop working...Force Close..whats the error??..and can >> anyone give me solution? > > -- You received this message becau

Re: [android-developers] OpenGL and Camera Preview - blending together gets “over saturated” color

2012-08-08 Thread Romain Guy
You should be able to make it work with OpenGL ES 1.0 by choosing another blending equation. On Wed, Aug 8, 2012 at 4:44 AM, Tobias Reich wrote: > Okay, I will try this but after all, it happens in OpenGL 1.0 as well and > there is no chance to change the shader there. > What could I do there? A

[android-developers] Re: ReverseGeocoding NullPointerException

2012-08-08 Thread Nobu Games
Also be aware that there might be devices out there which do not implement the Geocoder functionality. From the SDK doc: *The Geocoder class requires a backend service that is not included in the > core android framework. The Geocoder query methods will return an empty > list if there no backen

Re: [android-developers] Your email address may be being harvested! Please take action.

2012-08-08 Thread NMunoz
I understand your point. The internet is a public place and everyone needs to come to terms with the fact that what they say can be found and used by anyone, even years later. What I don't find acceptable is the plain text revealing of my email address. This is not out of some missguided desire

Re: [android-developers] Re: Wifi Devices

2012-08-08 Thread Meena Rengarajan
Yeah , already i have added all the permissions in Manifest ! On Wed, Aug 8, 2012 at 7:48 PM, bob wrote: > // To use this WifiManager method, AndroidManifest.xml must have the > > // following permission: > > // > // android:name="android.permission.ACCESS_WIFI_STATE"/> > > WifiManager wif

Re: [android-developers] WiFi device

2012-08-08 Thread Robert Greenwalt
http://en.wikipedia.org/wiki/Wi-Fi_Protected_Setup On Tue, Aug 7, 2012 at 11:35 PM, Meena Rengarajan wrote: > Do I need Router's IP address including those username and password to use > Wireless connection methods like Wifi protected setup to detect Wifi > devices ? Can anyone help me here ? >

[android-developers] Is it a launcher problem or I do something wrong.

2012-08-08 Thread bt
Hi, I create an 4x4 appwidget with minWidth and minHeight set to "250dp" as it is suggested in App Widget Design Guidelines: http://developer.android.com/guide/practices/ui_guidelines/widget_design.html It is ok on every phones and phone-sized emulator I have tried but if I test it on a table

Re: [android-developers] Re: ReverseGeocoding NullPointerException

2012-08-08 Thread Kristopher Micinski
You can actually request a single update, which is probably what you want in this situation. kris On Wed, Aug 8, 2012 at 10:50 AM, bob wrote: > I would say move a lot of your code to your LocationListener in this > function: > > onLocationChanged(Location location) > Called when the location has

Re: [android-developers] Error at setting up a larger library project Android

2012-08-08 Thread Kostya Vasilyev
You've got a crash: 08-08 12:44:31.607: E/AndroidRuntime(780): Caused by: java.lang.NullPointerException 08-08 12:44:31.607: E/AndroidRuntime(780): at org.androidsoft.games.puzzle. kids.AbstractMainActivity.onCreate(AbstractMainActivity.java:81) Set a breakpoint in AbstractMainActivity onCreate,

[android-developers] Error at setting up a larger library project Android

2012-08-08 Thread Xtreme
Want to start a standalone android project with a button in another project. First made a simple main app with a button that was referring to another project with Hello World with "is Library in Preferences". All according http://developer.android.com/tools/projects/projects-eclipse.html#Settin

[android-developers] Re: ReverseGeocoding NullPointerException

2012-08-08 Thread bob
I would say move a lot of your code to your LocationListener in this function: onLocationChanged(Location location) Called when the location has changed. On Wednesday, August 8, 2012 7:13:26 AM UTC-5, Ece Osmanağaoğlu wrote: > > I wanna get current location. > There is null pointer exception i

[android-developers] Re: open content on click of button

2012-08-08 Thread bob
You can add this method to your Activity to handle the pressing of the back button on the device: @Override public void onBackPressed() { super.onBackPressed(); // handle back button press } On Wednesday, August 8, 2012 9:37:41 AM UTC-5, pankajdev wrote: > > @bob thanks your reply is corr

[android-developers] Re: open content on click of button

2012-08-08 Thread pankajdev
@bob thanks your reply is correct but i am now little step ahead and look forward for further help , please see On Wednesday, 8 August 2012 19:40:28 UTC+5:30, bob wrote: > > Button b = findViewById(R.id.button); > > b.setOnClickListener(new OnClickListener() { > > @Override > > public void onCl

[android-developers] Re: Android Emulator not starting up

2012-08-08 Thread bob
FWIW, I always set the SD card size to 100MB. Also, the emulator is very buggy, and, if you are serious about Android development, you should get a real device… like the Galaxy Tab. On Wednesday, August 8, 2012 3:31:22 AM UTC-5, Shivdeep Roy wrote: > > still not working tried all options k

Re: [android-developers] open content on click of button

2012-08-08 Thread pankajdev
hey parthi, thanks but actually i look forward for where to pass , if u have sample code do share else see the below code is used to achieve is this right , now can you suggest if i have loaded another layout how can i come back to the previous one or the main one , i am now trying with the bac

Re: [android-developers] How to make activate from sms ?

2012-08-08 Thread Kristopher Micinski
what does it mean to 'kick' an app? Activate sounds better, from an English point of view, anyway. But I'm surprised, because you already have an answer, you look an SMS broadcast receiver. kris On Wed, Aug 8, 2012 at 2:31 AM, ono wrote: > I would like to change this subject to ' How to kick t

[android-developers] Re: Passing Numeric value from one activity to another through shered preference

2012-08-08 Thread Mario Bat
> > If you want to pass it through Sahred Preference then do something like > this. In activity A put your value in the shared preference: SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); Editor editor = prefs.edit(); editor.putString("key", "value"); editor.

  1   2   >