[android-developers] Re: How trigger intent to execute a specific method from a specific activity

2010-06-16 Thread a2ronus
1. Register a BroadcastReceiver that listens for a specific Intent. 2. When the user clicks on the Notification, the PendingIntent will be launched. You can put extra's in this Intent. You can use the extra's to determine which method will be launched in the Service. Good luck, a2ronus On Jun 16

[android-developers] Re: setContentView() twice on an activity?

2010-04-15 Thread a2ronus
Mark, another problem with your approach might be that when the user presses the back button, you go back to the previous activity, but the user might expect to go back to the previous ContentView state. Good luck. On 14 apr, 21:44, Wayne Wenthin wa...@fuligin.com wrote: Why not just make the

[android-developers] Re: EditText functionality

2010-04-08 Thread a2ronus
Concerning the EditText with a single line in XML: adding this XML code to your EditText should work: android:singleLine=true On 7 apr, 14:54, Nandan . bhavesh2...@gmail.com wrote: yaa you can do this using coding in java EditText1.setSingleLine(true); Regards** Bhavesh kumar **

[android-developers] Re: (Update) Re: Talking to wpa_supplicant for TTLS / PEAP / TLS (Runtime+wpa_cli / JNI / LocalSocket(Unix domain socket) / wpa_supplicant.conf?)

2010-04-08 Thread a2ronus
/9a267a5020735de6?q=a2ronus#9a267a5020735de6. I still want to talk to wpa_supplicant for WPA2 Enterprise. I'm also trying a new approach: using Runtime and Process to be able to talk to wpa_cli, the command line interface program for talking to wpa_supplicant. When I run wpa_cli from adb shell

[android-developers] Re: (Update) Re: Talking to wpa_supplicant for TTLS / PEAP / TLS (Runtime+wpa_cli / JNI / LocalSocket(Unix domain socket) / wpa_supplicant.conf?)

2010-04-08 Thread a2ronus
certificate/key) this leads to a failure when installing: INSTALL_FAILED_UPDATE_INCOMPATIBLE. Apparently something else is at play here too. So, my question: Is it possible to give an app wifi user permissions? On 8 apr, 11:49, a2ronus a...@theipcompany.nl wrote: Ok, I realize now that my post

[android-developers] Re: browse via usb

2010-04-06 Thread a2ronus
Have you tried the adb shell command? Still, this might be limited. On 5 apr, 21:53, ~ TreKing treking...@gmail.com wrote: On Sun, Apr 4, 2010 at 2:23 AM, justin justinnrroeb...@gmail.com wrote: Is their a way to browse/edit the phones files via usb? If you mean the files stored locally on

[android-developers] Re: application installer

2010-04-06 Thread a2ronus
For installing applications, you might want to take a look at Aptoide as well. http://www.aptoide.com http://www.aptoide.org On 5 apr, 23:13, rhardy rha...@austin.polycom.com wrote: My company is developing a new device that will run on Android.  I'm tasked to develop the software

[android-developers] Re: Application as root

2010-03-29 Thread a2ronus
Hello Dianne, I have a question related to this. Is it possible to use sharedUserId=android.uid.system in combination with (re-)signing a (newly) built Android and the app with the same key to achieve having more permissions for an app? Thanks in advance. On 26 mrt, 22:10, Dianne Hackborn

[android-developers] Re: Avoid Black Screen on starting application?

2010-03-22 Thread a2ronus
More details on Mark Murphy's reply can be found here: http://developer.android.com/resources/articles/window-bg-speed.html On 22 mrt, 13:01, Mark Murphy mmur...@commonsware.com wrote: javame_android wrote: Hi, Below is the code that I am using in onCreate() method.     /** Called when

[android-developers] Re: Basic program structure questions

2010-03-18 Thread a2ronus
Interesting indeed that it freezes. Could you copy-paste the adb logcat output? Furthermore, you might wanna take a look at http://www.warriorpoint.com/blog/2009/05/24/android-how-to-switch-between-activities/ On Mar 17, 8:30 am, Andreas andreas.bex...@gmail.com wrote: I think it is

[android-developers] Re: on configuration change landscape to portrait it always start activity from beginning.

2010-03-11 Thread a2ronus
Maybe you can use the information in http://android-developers.blogspot.com/2009/02/faster-screen-orientation-change.html to save the current image information (but not the current image)? Good luck, Aaron Jansen On Mar 10, 8:23 am, nomi nomeshga...@gmail.com wrote: hi , i have written code

[android-developers] Re: WiFi roaming and handoff

2010-02-25 Thread a2ronus
I assume your dev phones are running wpa_supplicant? If so, try the website and mailinglist of wpa_supplicant as well. http://hostap.epitest.fi/wpa_supplicant/ Good luck, Aäron On 25 feb, 18:26, BenYL blon...@gmail.com wrote: We are setting up a WiFi VoIP network in the office, but are

[android-developers] (Update) Re: Talking to wpa_supplicant for TTLS / PEAP / TLS (Runtime+wpa_cli / JNI / LocalSocket(Unix domain socket) / wpa_supplicant.conf?)

2010-02-23 Thread a2ronus
help would be greatly appreciated. Thanks in advance, a2ronus -- Met vriendelijke groet, Aäron Jansen -- 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] Re: How to disable the Android device (android.permission.BRICK?)

2010-02-22 Thread a2ronus
to find it in the public API. Perhaps take a look at how the various lock screen apps work. Thanks for the suggestion. I'll take a look. Kind regards, a2ronus On Fri, Feb 19, 2010 at 9:49 PM, a2ronus aaron.jan...@gmail.com wrote: Hi, (I'm new to posting questions on Google Groups

[android-developers] Re: Expanding the status bar from an app (android . permission . EXPAND_STATUS_BAR?)

2010-02-22 Thread a2ronus
Hello TreKing, Thanks for the reply. On 22 feb, 01:15, TreKing treking...@gmail.com wrote: On Fri, Feb 19, 2010 at 3:59 PM, a2ronus aaron.jan...@gmail.com wrote: Hi, for good usability in an app that I'm developing I would like to expand the status bar to show the user the first time

[android-developers] Expanding the status bar from an app (android . permission . EXPAND_STATUS_BAR?)

2010-02-21 Thread a2ronus
://developer.android.com/reference/android/Manifest.permission.html#EXPAND_STATUS_BAR. I'm looking for a code example on how to expand the status bar. I hope somebody would be able to enlighten me by providing some answers or pointers on where to look. Thanks in advance, a2ronus -- You received

[android-developers] Talking to wpa_supplicant for TTLS / PEAP / TLS (Runtime+wpa_cli / JNI / LocalSocket(Unix domain socket) / wpa_supplicant.conf?)

2010-02-21 Thread a2ronus
so good). I really need some help on this. Is there somebody with some more experience on this topic? I hope somebody would be able to enlighten me by providing some answers or pointers on where to look. Any help would be greatly appreciated. Thanks in advance, a2ronus -- You received

[android-developers] Code example on possibilities of android . permission . STATUS_BAR?

2010-02-21 Thread a2ronus
/Manifest.permission.html#STATUS_BAR: Allows an application to open, close, or disable the status bar and its icons.. I'm looking for code examples to use this permission. I hope somebody would be able to enlighten me by providing some answers or pointers on where to look. Thanks in advance, a2ronus -- You

[android-developers] How to disable the Android device (android.permission.BRICK?)

2010-02-21 Thread a2ronus
, or is there still a way to restore the phone, so you don't have to throw it away? I hope somebody would be able to enlighten me by providing some answers or pointers on where to look. Thanks in advance, a2ronus -- You received this message because you are subscribed to the Google Groups