Re: [android-developers] Sending GPS coordinates to a server

2012-03-26 Thread Bhuvan Chandra
I have seen those links, Iam not sure how they can be much of a help to me, I just want to know How to develop an application(i.e. How to program in android eclipse) which could recieve the Location coordiantes(geo locations- Latitude and longitude) and send them directly to a server . Iam very

[android-developers] Re: Modify a textview value in a custom listview after clicking

2012-03-26 Thread Jason Tian
Hi, Justin May I ask why we shouldn't modify the view after it has been displayed? Cause I've been doing this a lot in my app... Thanks, Jason On Mar 26, 9:12 am, Justin Anderson magouyaw...@gmail.com wrote: Modify the data in the adapter and then call notifyDataSetChanged().  Once the view

[android-developers] Re: Arduino vs Io-Io

2012-03-26 Thread al
The ioio is a controller board with USB host and a firmware designed to communication with android devices (the android devices work as usb devices in this case). I.e. the ioio is kind of a replacement for android accessory boards that works with android = 1.6 (?) while android accessories need

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread James Su
But the problem is that the code of library A and B are not owned by us, we can't simply change their source code, though we can access them. I'm just wondering if it's a change made in R17, as the code works with R16? 2012/3/26 Nikolay Elenkov nikolay.elen...@gmail.com On Mon, Mar 26, 2012 at

[android-developers] Re: Calendar edit event force close error....

2012-03-26 Thread Ali Chousein
Hhmmm, as Michael mentioned above, you should provide your stack trace or the crash message from your LogCat. But, you say that event.put(allDay,0) is causing a crash, while event.put(allDay,1) works fine. Could it be the case that '0' is an invalid index in event.put(allDay,0)? To be sure, you

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread Nikolay Elenkov
On Mon, Mar 26, 2012 at 4:10 PM, James Su james...@gmail.com wrote: But the problem is that the code of library A and B are not owned by us, we can't simply change their source code, though we can access them. I'm just wondering if it's a change made in R17, as the code works with R16? I'm

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread James Su
The code works again by adding project B into A's Java Build Path. Not sure if it's the correct solution. 2012/3/26 James Su james...@gmail.com But the problem is that the code of library A and B are not owned by us, we can't simply change their source code, though we can access them. I'm

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread Nikolay Elenkov
On Mon, Mar 26, 2012 at 4:15 PM, James Su james...@gmail.com wrote: The code works again by adding project B into A's Java Build Path. Not sure if it's the correct solution. It's not. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Modify a textview value in a custom listview after clicking

2012-03-26 Thread Danny D
Does the no modification rule apply to moving the views around? I've got a ListView object, where I'm using the TouchListView.java adaption to allow the user to resort the items Does this movement qualify as a modification? I'm performing data changes within the Adapter, but the actual view

[android-developers] Re: Sending GPS coordinates to a server

2012-03-26 Thread Ali Chousein
recieve the Location coordiantes http://stackoverflow.com/questions/1513485/how-do-i-get-the-current-gps-location-programmatically-in-android (The guidance provided by CommonsWare is simply excellent) send them directly to a server This depends what type of interface you have at the server

[android-developers] Re: Broadcast receiver execution.

2012-03-26 Thread Ali Chousein
For anything which works asynchronously (BroadcastReceivers work asynchronously) I wouldn't make any assumptions that you are going to receive messages in order. - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1

[android-developers] Re: Calendar edit event force close error....

2012-03-26 Thread Jast Vacaty
Well.I don't know what is stack trace. and I can't understand what this message mean... 03-26 15:53:22.707: W/dalvikvm(2065): threadid=1: thread exiting with uncaught exception (group=0x2aac8578) 03-26 15:53:22.707: E/AndroidRuntime(2065): FATAL EXCEPTION: main 03-26 15:53:22.707:

Re: [android-developers] Re: Notifications when App in background!

2012-03-26 Thread Jagruti Sangani
Hello All, I have the same problem but in different application.I am making the sip calling application.I have also use the broadcastreceiver class in which the incomingcall is handle.When my application is running in the background and the call is come then the alert dialogbox is not popup and

Re: [android-developers] Re: Arduino vs Io-Io

2012-03-26 Thread Daniel Hoeggi
there is also a comparison of some board over @xda http://forum.xda-developers.com/showthread.php?t=1371750 On Mon, Mar 26, 2012 at 9:02 AM, al achim.leub...@googlemail.com wrote: The ioio is a controller board with USB host and a firmware designed to communication with android devices (the

Re: [android-developers] Set Layout Background Image and change color of the image dynamically

2012-03-26 Thread Dusk Jockeys Android Apps
Seems simple enough. The original poster has a LinearLayout, and he wants to set the background of said layout to be an image. Which you can do, using LinearLayout.setBackgroundDrawable() So he can just the image to be the drawable. He then wants to change the colour of the image. That is

[android-developers] Re: Broadcast receiver execution.

2012-03-26 Thread Put_tiMe
Hmm, that is actually quite surprising to me. Especially if I want to do something on screen-on and off. So in the above case, if I get the intents in this order Off, On, On, Off instead of the right sequence Off, On, Off, On, then all my logic will go horribly wrong. Are you sure about

[android-developers] Exception in Logcat

2012-03-26 Thread B.Arunkumar
Hi, I have got the following exception when an activity was opened. The activity window finished unexpectedly with the following error in Logcat. What does this mean? E/InputDispatcher( 3102): channel '4093840976580ef8 com.example.OnVRViewer/com.example.OnVRViewer.OnVRViewer (server)' ~

Re: [android-developers] Re: Change the theme in android

2012-03-26 Thread Jagruti Sangani
at where the theme is store? On Fri, Mar 23, 2012 at 5:04 PM, Juned Khan jkhan6...@gmail.com wrote: setTheme(android.R.style.Theme_Dialog); -- 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 : passing data between activities

2012-03-26 Thread vivek elangovan
hi members, I am having two activities in my project, In my Ist activity i m getting two values from my loop (for eg : Violation : WITHOUT HELMET and Violation : USING CELLULAR PHONE WHILE DRIVING(H) ) using putExtra i am passing these values to my IInd activity,what i need

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-26 Thread David Griffiths
As well as multiplying twice by 1.0E6 (instead of multiplying and then dividing), another error is ​smoothingCoor[i] = smoothingCoor [i] +alpha * (coor[i] - smoothingCoor[i]); This should be smoothingCoor[i] = (smoothingCoor [i] * (1.0 - alpha)) + alpha * (coor[i] - smoothingCoor[i]);

Re: [android-developers] Re : passing data between activities

2012-03-26 Thread Farhan Tariq
Google intents , putExtra and getExtras keywords On Mon, Mar 26, 2012 at 2:33 PM, vivek elangovan elangovan.vi...@gmail.comwrote: hi members, I am having two activities in my project, In my Ist activity i m getting two values from my loop (for eg : Violation : WITHOUT

Re: [android-developers] Re : passing data between activities

2012-03-26 Thread Jagruti Sangani
Please clearlly explain what you need.If you want to pass data between two activity each other then use the setactivityresulton() like this method and alos use the put extra for passing data. On Mon, Mar 26, 2012 at 3:52 PM, Farhan Tariq farhan@gmail.com wrote: Google intents , putExtra and

Re: [android-developers] Re: Broadcast receiver execution.

2012-03-26 Thread Mark Murphy
On Mon, Mar 26, 2012 at 5:00 AM, Put_tiMe putt...@gmail.com wrote: Are you sure about the system intents being delivered not in the sequence they were generated? AFAIK, there is nothing in the documentation that guarantees the delivery order for events like this. Hence, it is risky to assume a

[android-developers] working on web view

2012-03-26 Thread chowdary nani
Hi All, I am working on opening the php page in my web view Here my php page is redirecting to another php page when the page is redirecting to another php page the java script in the redirected php are not loading i am using public void onPageFinished(WebView view, String url) method in

Re: [android-developers] Re: Calendar edit event force close error....

2012-03-26 Thread Ralph Bergmann | the4thFloor.eu
A stack trace is this long error log which you have posted :-) The error is a NullPointerException which means: the app try to access a field which has no value. And the error appears here: java.util.TimeZone.getTimeZone(TimeZone.java:286) One possible solution: public static final String

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread James Su
Thanks a lot for your information. Is there any document describing the difference between adding a library into Java Build Path or as an android Library? 2012/3/26 Nikolay Elenkov nikolay.elen...@gmail.com On Mon, Mar 26, 2012 at 4:15 PM, James Su james...@gmail.com wrote: The code works

[android-developers] Re: Re : passing data between activities

2012-03-26 Thread vivek elangovan
Hi, This is how my xml looks like remarks offense violationWITHOUT HELMET/violation rule177-A/rule amnt100/amnt date26-3-2012/date placechetpet signal/place /offense offense

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-26 Thread David Griffiths
Sorry, my mistake. The line smoothingCoor[i] = smoothingCoor [i] +alpha * (coor[i] - smoothingCoor[i]); is correct as it stands. However my comment on your nearing smoothing not taking into account the 359 degrees problem is correct. Two other problems with the code you have posted: I

[android-developers] Re: Re : passing data between activities

2012-03-26 Thread vivek elangovan
Using DOMParser i m getting values and passing it to my IInd activity.In my IInd activity i need to display like this Violation : USING CELLULAR PHONE WHILE DRIVING(H) Place : chetpet signal Violation : WITHOUT HELMET Place : Tnagar signal On Monday, March 26, 2012 4:20:26 PM UTC+5:30,

[android-developers] how to get SMS center number in android

2012-03-26 Thread android developer
Hi all, Please help me on this issue how to get SMS center number in android Thank you 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@googlegroups.com To unsubscribe from this

[android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread ravindra bhavsar
Hi, I want to sent Text Message from my android emaulator to any email address. How to i do that Plz anybody Help me? -- 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] How to sent SMS text message to any email address.

2012-03-26 Thread asheesh arya
this is not possible via emulator you can do this whrn you test your application on real device. -- 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] Highlight Text in Webview

2012-03-26 Thread Satya
Hi All, I need to highlight the text in webview can any one give me the solution. Thanks Satya -- 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

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 4:40 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Hi, I want to sent Text Message from my android emaulator to any email address. How to i do that Plz anybody Help me? You need to configure your emulator with your gmail account in order to

[android-developers] android.permission.ACCESS_WIFI_STATE or android.permission.WAKE_LOCK for wifi lock

2012-03-26 Thread DraganA
Hi there, the documentation (http://developer.android.com/reference/android/net/ wifi/WifiManager.WifiLock.html) clearly says that in order to acquire and lock Wifi state android.permission.WAKE_LOCK is needed in the manifest. Now, in Dev. console I'm getting errors from some users that goes

Re: [android-developers] Highlight Text in Webview

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 4:47 PM, Satya satya...@gmail.com wrote: Hi All, I need to highlight the text in webview can any one give me the solution. Refer the link as follows: http://stackoverflow.com/questions/5294562/android-webview-highlight-a-specific-word-in-a-page-using-javascript --

[android-developers] Re: Merchant Account no longer available

2012-03-26 Thread Terry
I do some work on my Galaxy Tab, and it is pretty annoying that this account is no longer available on it. Can Google PLEASE read this, and fix it asap? Terry On Mar 25, 2:54 pm, Mickey reliagil...@gmail.com wrote: Same problem here.  Can access it from a pc, but on the phone I can't On Mar

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread ravindra bhavsar
Thanks for reply Narendra, can u tell me how do i configure my emulator with gmail? On Mon, Mar 26, 2012 at 4:49 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Mon, Mar 26, 2012 at 4:40 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Hi, I want to sent Text

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 5:31 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Thanks for reply Narendra, can u tell me how do i configure my emulator with gmail? Well Ravindra, I haven't tried it yet. But may the following link help you out.

[android-developers] Multiselection

2012-03-26 Thread chimouch
In my project, i'm implementing a grid whose cells are linearlayouts, and i want to use the cells multiselection. so i have used OnTouchListener event, but i don't know what action to use when i press on a cell and i move my finger. If someone has an idea please help me !!! -- You received this

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread ravindra bhavsar
i configure my gmail account with emulator.How to send sms to perticular email address.? On Mon, Mar 26, 2012 at 5:46 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Mon, Mar 26, 2012 at 5:31 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Thanks for reply Narendra,

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 5:59 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: i configure my gmail account with emulator.How to send sms to perticular email address.? Hi Ravindra, as I told you earlier, I haven't tried it yet. Just google out and you may find an appropriate answer.

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread ravindra bhavsar
k thank you. On Mon, Mar 26, 2012 at 6:02 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Mon, Mar 26, 2012 at 5:59 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: i configure my gmail account with emulator.How to send sms to perticular email address.? Hi Ravindra,

Re: [android-developers] How good phonegap in security support, while developing mobile web apps?

2012-03-26 Thread Anirudh Loya
Its Excellent !! On Mon, Mar 26, 2012 at 6:19 PM, nvlakshmi vakiti lakshmi.vad...@gmail.comwrote: Hi all, How good phonegap in security support, while developing mobile web apps? -- Thanks Regards Lakshmi.V -- You received this message because you are subscribed to the Google

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread ravindra bhavsar
I used following code to send sms to destination email address but it does'nt work. 5554 is emulator port . SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(5554, null, username@domainname hello, null, null); How i resolve problem to send text message to email address?anybody

[android-developers] real streaming data in android

2012-03-26 Thread ramalakshmi
I want to send the real streaming data values into android mobile from a database. I used a webview(JSON) for this.but I achieve only static data.I want a stream of values Any body can help me -- ramalakshmi -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread Nikolay Elenkov
On Mon, Mar 26, 2012 at 7:47 PM, James Su james...@gmail.com wrote: Thanks a lot for your information. Is there any document describing the difference between adding a library into Java Build Path or as an android Library? This explains the changes in ADT17 and how libraries are handled, as

Re: [android-developers] Sending GPS coordinates to a server

2012-03-26 Thread TreKing
On Mon, Mar 26, 2012 at 1:04 AM, Bhuvan Chandra bhuvanchandr...@gmail.comwrote: I have seen those links, Iam not sure how they can be much of a help to me No? , I just want to know How to develop an application(i.e. How to program in android eclipse) That is covered in link #1. which

[android-developers] Transparent Text Overlay on Video play

2012-03-26 Thread dillipk
Hi, I have a requirement where a Transparent Text would display on a Video while playing for sometime and/or have the option to close the overlay text whenever user wants. I have seen this on youtube videos where some of the videos have transparent text overlay and get closed after certain

Re: [android-developers] Transparent Text Overlay on Video play

2012-03-26 Thread Mark Murphy
Step #1: Put the VideoView/SurfaceView/TextureView inside a RelativeLayout Step #2: Put your transparent text (whatever you think that is) inside the same RelativeLayout, as a later child (e.g., later in the XML) Step #3: Conditionally hide and show the transparent text as you see fit On Mon,

Re: [android-developers] Re: Merchant Account no longer available

2012-03-26 Thread Justin Anderson
I do some work on my Galaxy Tab, and it is pretty annoying that this account is no longer available on it. Can Google PLEASE read this, and fix it asap? The people who would be fixing this problem are most likely not in this group... You might have more luck here:

Re: [android-developers] Re: Change the theme in android

2012-03-26 Thread Justin Anderson
http://developer.android.com/guide/topics/ui/themes.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Mar 26, 2012 at 3:25 AM, Jagruti Sangani jagruti.sang...@inextrix.com wrote: at where the theme is store? On Fri, Mar 23, 2012 at 5:04

Re: [android-developers] Re: Modify a textview value in a custom listview after clicking

2012-03-26 Thread Justin Anderson
May I ask why we shouldn't modify the view after it has been displayed? Certainly... It is pretty much a basic principle for good OO design. Your adapter represents the data that needs to be displayed. Your listview item views should do nothing more than use the data it has to decide how it

Re: [android-developers] Re: Calendar edit event force close error....

2012-03-26 Thread Jast Vacaty
yeah! I get it.. It only need to join one line * event.put(eventTimezone, Time.getCurrentTimezone()); *Thank for your help Ralph Bergmann於 2012年3月26日星期一UTC+8下午6時37分15秒寫道: A stack trace is this long error log which you have posted :-) The error is a NullPointerException which means: the app

[android-developers] How Many Android App Stores to Submit …?

2012-03-26 Thread RR
Except Google's app store, there are Samsung app store, Amazon app store, etc... As a developer, do I have to submit my app to all of the stores one by one?? Or once I submitted my app to Google, all of the other stores would find my app and publish it on their store automatically?? If I

Re: [android-developers] Force opening web URLs YouTube videos in Android phone's DEFAULT browser using Intent.

2012-03-26 Thread Chris Stratton
On Saturday, March 24, 2012 8:27:15 PM UTC-4, MagouyaWare wrote: AFAIK you can't... On Mar 23, 2012 12:40 AM, Shajahan wrote: I am trying to launch browser with the specified URL. It works fine if it's web URL, but when the URL detected to be a video(say YouTube video) then it come up with

[android-developers] How can i run C binary (executable file) in Android from Android Shell

2012-03-26 Thread A B
I have Device on which i installed Android Gingerbread 2.3.4 Here i want to run C executable file on android device I am able to run android NDK application on Device and its run perfect But i want to run only onehello.c executable file on Device. /* #includes #defines ... */ int main(){

Re: [android-developers] DexClassLoader

2012-03-26 Thread TreKing
On Sat, Mar 24, 2012 at 5:04 AM, moutaz al-azab azabk...@gmail.com wrote: I am wondering how can I use these classes. I am not expert in Android but I want to use these classes, does anyone has an idea? You should start by googling the class names. Beyond that you need to explain why you

Re: [android-developers] DexClassLoader

2012-03-26 Thread Kristopher Micinski
FYI... If you're not sure what you're doing, you really really shouldn't be using a class loader..., lest your app become infested with tons of security holes. kris On Sat, Mar 24, 2012 at 6:04 AM, moutaz al-azab azabk...@gmail.com wrote: Hi Everyone, I am trying to play with DexClassLoader

Re: [android-developers] R17: a library project cannot depend on another library project?

2012-03-26 Thread Doug
How does one downgrade to r16, or any non-latest version of the SDK at any time? Doug On Monday, March 26, 2012 6:35:18 AM UTC-7, Nikolay Elenkov wrote: The best thing you can do is update your projects, or have them updated. If you can't do it right now, use ADT16 for the time being. --

Re: [android-developers] How can i run C binary (executable file) in Android from Android Shell

2012-03-26 Thread Mark Murphy
On Mon, Mar 26, 2012 at 1:18 PM, A B saurbh...@gmail.com wrote: I have Device on which i installed Android Gingerbread 2.3.4 Here i want to run C executable file on android device I am able to run android NDK application on Device and its run perfect But i want to run only onehello.c 

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 14 Topics

2012-03-26 Thread Ekri
android-developers@googlegroups.com wrote: = Today's Topic Summary = Group: android-developers@googlegroups.com Url:

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 14 Topics

2012-03-26 Thread Ekri
android-developers@googlegroups.com wrote: = Today's Topic Summary = Group: android-developers@googlegroups.com Url:

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 14 Topics

2012-03-26 Thread Ekri
android-developers@googlegroups.com wrote: = Today's Topic Summary = Group: android-developers@googlegroups.com Url:

[android-developers] Re: Listening to a video stream and rendering it on the screen

2012-03-26 Thread MadihaKhalid
i have also same question can anyone let us know the idea.? On Thursday, 31 December 2009 11:49:17 UTC+5, indodroid wrote: Hello, *My Cases:* 1. I have a RTP stack, using which i am receiving raw audio and video streams from the network. 2. Similarly, I will be sending audio and video

[android-developers] Re: Highlight Text in Webview

2012-03-26 Thread Satya
Guys please respond need help... 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] Re: Transparent Text Overlay on Video play

2012-03-26 Thread dillipk
Hi Mark, Thanks for your prompt response. Let me play around.. Thanks again for your time.. -DK On Mar 26, 10:33 am, Mark Murphy mmur...@commonsware.com wrote: Step #1: Put the VideoView/SurfaceView/TextureView inside a RelativeLayout Step #2: Put your transparenttext (whatever you think

[android-developers] i am looking job on android in banglore

2012-03-26 Thread rudraswamy mc
sir i have 6month exp on android.. -- 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] Launching default messaging app for mms

2012-03-26 Thread Farhan Tariq
I tried the smsto:uri method. It works fine, but does not allow me to attach the picture that I am passing with the intent. it.setType(image/jpeg); causes my application to crash, and without this line of code, it would not attach an image file with the intent. My client has now agreed to let a

Re: [android-developers] android.permission.ACCESS_WIFI_STATE or android.permission.WAKE_LOCK for wifi lock

2012-03-26 Thread Irfan Sheriff
What else are you doing ACCESS_WIFI_STATE is needed for most of the Wi-Fi API On Mon, Mar 26, 2012 at 4:28 AM, DraganA dand...@gmail.com wrote: Hi there, the documentation (http://developer.android.com/reference/android/net/ wifi/WifiManager.WifiLock.html) clearly says that in order to

Re: [android-developers] Wifi manager woes

2012-03-26 Thread Irfan Sheriff
if reconnect is failing - the device is likely hitting failures in driver/supplicant On Sun, Mar 25, 2012 at 10:54 PM, Put_tiMe putt...@gmail.com wrote: Based on some events, I'm trying to switch on or off wifi. Switching wifi off works well. But while switching on wifi, 95% of the time, it

RE: [android-developers] one time Registration after installation of an application??

2012-03-26 Thread Muhammad UMER
Hi TreKing, I m using this in onCreate method, but it show me error Force to close every time when the activity start, but if i use it at the end of onCreate it executed but also show force to close. what's the resone, here the code i m using. settings =

Re: [android-developers] Re: Highlight Text in Webview

2012-03-26 Thread Justin Anderson
Seriously, you already got a response... Also, those of us on this group answer questions in our spare time... Be respectful of that time. You may have to wait more than a couple hours to get a response. On Mar 26, 2012 12:16 PM, Satya satya...@gmail.com wrote: Guys please respond need

Re: [android-developers] DEAD ISSUE (WAS: XML Layout.....)

2012-03-26 Thread Jim Graham
Well, it's a dead issue now I've decided I don't like that layout anyways, and am scrapping it for a newer, better idea. :-) Now I'm off to make a drawing for my revised layout so I can build it. :-) Thanks anyways, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)

Re: [android-developers] Force opening web URLs YouTube videos in Android phone's DEFAULT browser using Intent.

2012-03-26 Thread Justin Anderson
Any app that did that to me would get installed in about half a second and get a 1 star rating... On Mar 26, 2012 11:19 AM, Chris Stratton cs07...@gmail.com wrote: On Saturday, March 24, 2012 8:27:15 PM UTC-4, MagouyaWare wrote: AFAIK you can't... On Mar 23, 2012 12:40 AM, Shajahan wrote: I

Re: [android-developers] one time Registration after installation of an application??

2012-03-26 Thread TreKing
On Mon, Mar 26, 2012 at 2:11 PM, Muhammad UMER muhammad.ume...@hotmail.comwrote: I m using this in onCreate method, but it show me error Force to close every time when the activity start, but if i use it at the end of onCreate it executed but also show force to close. what's the resone, You

Re: [android-developers] Broadcast receiver execution.

2012-03-26 Thread Dianne Hackborn
A particular receiver can only process one broadcast at a time. As each broadcast happens, it is processed to determine the targets it should go to, and dispatched into the message queue for each target. When a later broadcast is sent, it will generally not be moved ahead of the queue. For the

Re: [android-developers] Use marquee on notification bar

2012-03-26 Thread TreKing
On Sat, Mar 24, 2012 at 2:51 PM, Max918 max...@gmail.com wrote: i am trying to add a very long message to the notification bar. but it only show little word on the screen. Text scrolls automatically in notifications when it's too long, if you focus on the message. Unfortunately, this is not

RE: [android-developers] one time Registration after installation of an application??

2012-03-26 Thread Muhammad UMER
Hi Treking, I resolved the problem of sharedPrefrences, it work's perfect on amulator but when i install it to my device mobile, then i enter the name and phone no. and close the app and then re open it, it show me The linked program is no longer installed on your phone.

Re: [android-developers] Force opening web URLs YouTube videos in Android phone's DEFAULT browser using Intent.

2012-03-26 Thread Justin Anderson
I meant to say it would get uninstalled in about half a second... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Mar 26, 2012 at 1:39 PM, Justin Anderson magouyaw...@gmail.comwrote: Any app that did that to me would get installed in about half a

Re: [android-developers] How Many Android App Stores to Submit …?

2012-03-26 Thread Justin Anderson
You have to submit to each store individually. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Mar 26, 2012 at 9:54 AM, RR raymn...@gmail.com wrote: Except Google's app store, there are Samsung app store, Amazon app store, etc... As a

Re: [android-developers] one time Registration after installation of an application??

2012-03-26 Thread TreKing
On Mon, Mar 26, 2012 at 3:12 PM, Muhammad UMER muhammad.ume...@hotmail.comwrote: I resolved the problem of sharedPrefrences, it work's perfect on amulator but when i install it to my device mobile, then i enter the name and phone no. and close the app and then re open it, it show me The

Re: [android-developers] Update per SD-Card

2012-03-26 Thread TreKing
2012/3/24 Jürgen Kemmer jue...@googlemail.com If I install a newer Version of the App (signed and installed in the same way) I have after the Installation all 2 Versions installed. That should not happen unless they have different package names. I want a Update because in the App-Folder

Re: [android-developers] Launching default messaging app for mms

2012-03-26 Thread Erik
Unfortunately there doesn't seem to be a way to do what you want to do. The messaging app is looking for an intent with the SENDTO action and a phone number, or the SEND action and some data (such as an image), but not both a phone number and some data. -Erik On Monday, March 26, 2012

[android-developers] Strange behaviour with view pager fragments

2012-03-26 Thread Phil Bayfield
I have a view pager with 4 different fragments, each loads a separate feed and displays the results in a list. They are all an instance of the same Fragment. This works fine while my phone has internet connection but when I've been trying to test retry mechanisms I'm getting very strange results.

[android-developers] Multi-pane Layout

2012-03-26 Thread Ralph Bergmann | the4thFloor.eu
Hi, I want to know: how to design a multi pane layout with more than 2 panes? I found examples with 2 panes. But how to design the layout when I wont more panes (with different widths)? Example: Main pane a and pane b are visible. The user clicks on an entry on pane b. Pane a goes off to the

[android-developers] AsyncTask vs Thread?

2012-03-26 Thread martypantsROK
I have an operation that consumes too much time for the UI thread and need to do it in another thread. I created a thread using AsyncTask and the thread loops until it finds and answer. When its done, I use postExecute to deal with the data and update views. The problem is that the thread

Re: [android-developers] AsyncTask vs Thread?

2012-03-26 Thread Dianne Hackborn
If your thread is stopping, it is an issue in your implementation of doInBackground(), which you haven't shown. And whatever your problem is, you will have it with a Thread as well. AsyncTask is just doing work from threads, after all. On Tue, Mar 27, 2012 at 1:18 AM, martypantsROK

[android-developers] Re: putInt force closes

2012-03-26 Thread dmanpearl
JP, You must use the permission request WRITE_SETTINGS, not WRITE_SETTING. uses-permission android:name=android.permission.WRITE_SETTINGS/ - David On Sunday, July 25, 2010 11:11:14 PM UTC-7, scadaguru wrote: I am trying to write the system setting using:

Re: [android-developers] Re: putInt force closes

2012-03-26 Thread Dianne Hackborn
And if you were to look at the log, you would see an error message explicitly saying the problem is that you don't have that permission. On Tue, Mar 27, 2012 at 1:44 AM, dmanpearl dmanpe...@gmail.com wrote: JP, You must use the permission request WRITE_SETTINGS, not WRITE_SETTING.

[android-developers] Re: AsyncTask vs Thread?

2012-03-26 Thread martypantsROK
I would have thought the same, too - AsyncTask or Thread - there's something else going. Here's what is called by doInBackground() - it's a loop through possible moves until the first fit is found. My Log.d(WTF...) in the middle simply stops after a couple of columns. private Boolean

[android-developers] Re: what would be the base optimal throttle and seed for an application using monkey test?

2012-03-26 Thread droigons
Please give me some feedback to following question. On Thursday, March 22, 2012 1:32:17 AM UTC-7, droigons wrote: Dear Experts: I am running monkey test on my application using following command adb shell monkey -p com.droigons.mygps --throttle 1000 --monitor- native-crashes

Re: [android-developers] Re: AsyncTask vs Thread?

2012-03-26 Thread Dianne Hackborn
Try catching a Throwable to see if an error is happening that you are missing. On Tue, Mar 27, 2012 at 1:54 AM, martypantsROK martyg...@gmail.com wrote: I would have thought the same, too - AsyncTask or Thread - there's something else going. Here's what is called by doInBackground() - it's a

[android-developers] layout height relative to screen height

2012-03-26 Thread adev
I would like to set the height of my layout items based on the height of the screen to allow it to scale to screens of different resolution and in landscape. my current layout structure uses a relativelayout with linearlayout childeren. one of the linear layouts consists of a table layout which I

[android-developers] Re: AsyncTask vs Thread?

2012-03-26 Thread martypantsROK
No dice. Tried catching a Throwable both when I start the thread and on the inner loop of the work. Nothing. No Errors. What kinds of operations might make a thread stop? The only thing that prevents it from iterating all the loops is whether the local Boolean 'found' is set and it comes back

[android-developers] Re: AsyncTask vs Thread?

2012-03-26 Thread martypantsROK
That was itmy UI thread was updating the TileExtents from another play and caused the loop to exit. Done in again by my own doing :) Problem solved On Mar 27, 11:37 am, martypantsROK martyg...@gmail.com wrote: No dice. Tried catching a Throwable both when I start the thread and on the

[android-developers] How to load php scripts

2012-03-26 Thread chowdary nani
Hi all, I am working on opening web page in web view using web client i need to read the source code of the page i am using web crome client in my web page first page is redirecting the to second page the java script in the first page are loading and redirecting to second page but the java

[android-developers] Re: AsyncTask vs Thread?

2012-03-26 Thread scame
I had a same bug in the AsyncTask. So i prefer a Thread. вторник, 27 марта 2012 г. 5:18:01 UTC+4 пользователь martypantsROK написал: I have an operation that consumes too much time for the UI thread and need to do it in another thread. I created a thread using AsyncTask and the thread loops

[android-developers] Sizing a custom 'GridView'.

2012-03-26 Thread Put_tiMe
I have a situation where I need to have a GridView on the top part and buttons below it. If it was the other way around, then, it would have been easy. i.e. buttons on top and gridview below it. For the gridview, I could have mentioned: android:layout_width=wrap_content

[android-developers] Referring other library projects from within a library project.

2012-03-26 Thread MB
Hi, I want to refer to a library project from within another library project. Is there some way to accomplish this? Thanks, --MB. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

  1   2   >