[android-developers] Your Opinion between android native app or HTML-5 Web App.

2011-06-13 Thread Ishwar Chawla
I just want your opinion which option is better I am about to start a project looking at ease of coding and UI which according to you is better native app or HTML-5 Web App. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Android - SQLLite

2011-06-13 Thread Sivaprakash
It is like this, - I am creating database in default way hence it will be created in my application private storage and other applications will not get access to it. Still I the user login as root user he would right? Anyways to prevent this? - What is the best mechanism to store secret data

[android-developers] Re: Android - SQLLite

2011-06-13 Thread Zsolt Vasvari
- I am creating database in default way hence it will be created in my application private storage and other applications will not get access to it. Still I the user login as root user he would right? Anyways to prevent this? No, of course, not. Given access to the hardware, no software

[android-developers] How to protect the selection of vibrate mode or silent mode?

2011-06-13 Thread shanmu nathan
Hi guys, I develop one application in android. i need ur help. i want protect to select the Silent and vibration mode in android.. i dnt knw how to do that.. can anybody help me? -- With Regards, SHANMUGANATHAN. A Software Engineer Trainee, Citrisys Solution, Phone: +91.44.22311173

[android-developers] Working with Activities

2011-06-13 Thread Felix Garcia Lainez
Hi, The case is that i need to create an activity that will download some data via http rest API. This activity will be launched from a main activity included in a tabwidget. Really i don't have any technical problem on how to implement it, it is not really difficult. I have doubts on what is

Re: [android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-13 Thread rich friedel
I am only throwing the permissions thing out there as it was the easiest to illustrate my point. I fully understand the implications of an app having the ability to take a screenshot. However, sometime this is a reasonable need by a user. What I was trying to say is that there must be a better

[android-developers] Data Access

2011-06-13 Thread Sivaprakash
Hi I want to transfer data between Mobile client and Server application through web service. Can I use normal object serialization? Any specific recommendation given to use processor effectively? -- - Prakash. -- You received this message because you are subscribed to the Google Groups

[android-developers] Nexus S,how to exchange ndef data via p2p.

2011-06-13 Thread Tommy
Hi all: I have some questions about android2.3 NFC of p2p. 1. i send the ndef data by the enableForegroundNdefPush(this, mMessage)function in onResume,but how can i known that the mMessage is send over,can i got the notification or Intent? 2. As i know,in p2p module there have two

[android-developers] Re: How to get Map on signed Android application?

2011-06-13 Thread Bost
Hallo, you need another map api key with the fingerprint of your private key store. s. http://code.google.com/android/add-ons/google-apis/mapkey.html#getfingerprint Regards Bost On Jun 13, 6:29 am, Sivasankar K sivasanka...@greatinnovus.com wrote: in my i have a map application. I have got my

[android-developers] Re: etting SIGNAL 11 error

2011-06-13 Thread vmalykhin
In our case the cause of bug is invocation of _byteChannel.close(); // java.nio.channels.ByteChannel In our app we use a library which uses java.nio.* package a lot (channels, sockets, selectors etc). We researched code of that library. Commenting the code line where channel are closing resolved

Re: [android-developers] Re: etting SIGNAL 11 error

2011-06-13 Thread Daniel Drozdzewski
On Mon, Jun 13, 2011 at 11:01 AM, vmalykhin vladimir.malyk...@gmail.com wrote: In our case the cause of bug is invocation of _byteChannel.close(); // java.nio.channels.ByteChannel In our app we use a library which uses java.nio.* package a lot (channels, sockets, selectors etc). We

Re: [android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-13 Thread Mark Murphy
On Mon, Jun 13, 2011 at 4:26 AM, rich friedel rich.frie...@gmail.com wrote: And you address that here: If/when we do have an API for an application to take a screenshot, this will probably be something along the lines of making a request for the screenshot, resulting in the system taking the

[android-developers] How to customize the list view...list view resource id is invalid???

2011-06-13 Thread Atik
HI All, i m developing a list view and on top, it will have a auto complete textview, when user clicks on a certain item from the list, i want to display it in that auto complete text field. but i m getting some error..pls advice me..my codes are right now i m unable to load the view..so i have

Re: [android-developers] How to customize the list view...list view resource id is invalid???

2011-06-13 Thread νιנαソkum
ListView lv= (ListView) findViewById(R.id.listview); lv.setAdapter(new ArrayAdapterString(this, R.id.listview, COUNTRIES)); android.R.layout.simple_list_item_1 remove* R.id.listiew* add this one* android.R.layout.simple_list_item_1* On Mon, Jun 13, 2011 at 4:24 PM, Atik

[android-developers] bottom stroke on a shape

2011-06-13 Thread ABSOLUT
Hello to all, I'd like to know if it is possible to declare stroke only for the bottom of a shape? Many thanks and sorry for my english! -- 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] Layout problem: equal margins in XML

2011-06-13 Thread Mark Murphy
On Sun, Jun 12, 2011 at 10:23 PM, Ted Hopp ted.h...@gmail.com wrote: I thought I had addressed that. Assuming that the smaller margins are at least the minimum, then the larger margins should shrink (the ListView should expand in that dimension) until they are equal all around. I think you are

[android-developers] opening a url in browser with post data from an activity

2011-06-13 Thread Shashidhar
Hi, I need to open a browser with a URL when I click on a button in my activity. The URL has some parameters which I need to send it using HTTP POST method. I am able to get it working with the GET request where we append the parameters to the end of the URL. But, I need the POST method way. Any

[android-developers] Force close in example taken from book Inflation Error

2011-06-13 Thread Raghav Sood
Hi I was trying out an example from one of the android books I have. It worked fine earlier but when I tried to modify the textview and list view it started force closing. The logcat output is as follows (relevant part): 06-13 15:48:33.338: ERROR/AndroidRuntime(453):

Re: [android-developers] Force close in example taken from book Inflation Error

2011-06-13 Thread Mark Murphy
On Mon, Jun 13, 2011 at 7:53 AM, Raghav Sood raghavs...@gmail.com wrote: I was trying out an example from one of the android books I have. It worked fine earlier but when I tried to modify the textview and list view it started force closing. The logcat output is as follows (relevant part):

Re: [android-developers] Force close in example taken from book Inflation Error

2011-06-13 Thread Raghav Sood
That occurred to me. I opened it up and decompiled the .dex file and its quite definitely there. On Mon, Jun 13, 2011 at 5:28 PM, Mark Murphy mmur...@commonsware.comwrote: On Mon, Jun 13, 2011 at 7:53 AM, Raghav Sood raghavs...@gmail.com wrote: I was trying out an example from one of the

[android-developers] How to find version of ARM on android phone

2011-06-13 Thread Bharathiraja R
Hi All, I am uninstall to sl4a application on 2.2 tablet phone. getting error: Failure [installed_failed_invalid_apk] Log show: Native ABI mismatch. it's related to ARM there in phone has an NDK shared library that is incompatible. wanted to know how to find the version of ARM on android phone.

Re: [android-developers] How to find version of ARM on android phone

2011-06-13 Thread Nikolay Elenkov
On Mon, Jun 13, 2011 at 9:20 PM, Bharathiraja R bharathiraja.andr...@gmail.com wrote: Hi All, I am uninstall to sl4a application on 2.2 tablet phone. getting error: Failure [installed_failed_invalid_apk] Log show: Native ABI mismatch. it's related to ARM there in phone has an NDK shared

[android-developers] Re: Options for Too Many Views

2011-06-13 Thread Capt Spaghetti
I am admittedly no expert on traceviewe. I'm barely a beginner but it looks like the time is spent loading the views. The file is at the following locaTION: http://www.onyoursixinc.com/gfatrace.trace Any help would be greatly appreciated. Thanks, Gene On Jun 13, 1:01 am, Dianne Hackborn

[android-developers] file transfer trough xmpp in android?

2011-06-13 Thread Hitendrasinh Gohil
Hi, I am using asmack lib for chatting.its works fine for chatting.but dont know how can i do file transfer with asmack. can anybody give me some ideas or links? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] How to find version of ARM on android phone

2011-06-13 Thread Max Lv
try this: cat /proc/cpuinfo On Mon, Jun 13, 2011 at 8:28 PM, Nikolay Elenkov nikolay.elen...@gmail.comwrote: On Mon, Jun 13, 2011 at 9:20 PM, Bharathiraja R bharathiraja.andr...@gmail.com wrote: Hi All, I am uninstall to sl4a application on 2.2 tablet phone. getting error: Failure

[android-developers] Re: Can't write to sdcard

2011-06-13 Thread Mike
check the file name and be sure it's ok. Running a modified version of your code on a 2.3.3 emulator File sdDir = Environment.getExternalStorageDirectory(); sdDir.mkdirs(); String currentTripName = testtrip; File file = new

Re: [android-developers] opening a url in browser with post data from an activity

2011-06-13 Thread Kumar Bibek
AFAIK, you cant do it. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 13, 2011 at 5:11 PM, Shashidhar shashi.zep...@gmail.com wrote: Hi, I need to open a browser with a URL when I click on a button in my activity. The URL has some

[android-developers] Re: Android Layoutinflator for embedding WebView objects created on the fly

2011-06-13 Thread redVirus
Thanks for your reply. For inflating a web view on demand, I'm using a ViewStub in my current project, and it works without any issues. A ViewStub lets you only instantiate a view if needed, and yet still specify layout paramters in the XML. I am able to inflate WebView using a view

Re: [android-developers] opening a url in browser with post data from an activity

2011-06-13 Thread Shashidhar
On Mon, Jun 13, 2011 at 6:32 PM, Kumar Bibek coomar@gmail.com wrote: AFAIK, you cant do it. I have tried the below code. WebView webview = new WebView(this); setContentView(webview); byte[] post = EncodingUtils.getBytes(un=us...@gmail.com, BASE64);

[android-developers] design of accessing to system service

2011-06-13 Thread Tomas Prochazka
I still can't understand some aspects of Android API design or reason to use this design. For example why Android use this: AlarmManager am = (AlarmManager)getSystemService(Context.ALARM_SERVICE); instead of much easier: AlarmManager am = getSystemService(AlarmManager.class);

Re: [android-developers] opening a url in browser with post data from an activity

2011-06-13 Thread Mark Murphy
HTTP POST requests are not normally encoded in Base64. They are normally encoded as application/x-www-form-urlencoded. On Mon, Jun 13, 2011 at 9:07 AM, Shashidhar shashi.zep...@gmail.com wrote: On Mon, Jun 13, 2011 at 6:32 PM, Kumar Bibek coomar@gmail.com wrote: AFAIK, you cant do it.

Re: [android-developers] opening a url in browser with post data from an activity

2011-06-13 Thread Daniel Drozdzewski
On Mon, Jun 13, 2011 at 2:07 PM, Shashidhar shashi.zep...@gmail.com wrote: On Mon, Jun 13, 2011 at 6:32 PM, Kumar Bibek coomar@gmail.com wrote: AFAIK, you cant do it. I have tried the below code.         WebView webview = new WebView(this);         setContentView(webview);        

Re: [android-developers] Force close in example taken from book Inflation Error (SOLVED)

2011-06-13 Thread Raghav Sood
Problem solved. The app didn't re-install correctly on the emulator. The one I was checking was the new apk. Sorry to bother you. Thanks On Mon, Jun 13, 2011 at 5:34 PM, Raghav Sood raghavs...@gmail.com wrote: That occurred to me. I opened it up and decompiled the .dex file and its quite

Re: [android-developers] Force close in example taken from book Inflation Error

2011-06-13 Thread Raghav Sood
I seem to have fixed that problem but now my app is force closing again but the error is different: 06-13 15:48:33.338: ERROR/AndroidRuntime(453): android.view.InflateException: Binary XML file line #2: Error inflating class com.raghavsood.listdroid.ListDroidItemView 06-13 15:48:33.338:

[android-developers] When will android automatically launch a process when force closed?

2011-06-13 Thread gunanar...@gmail.com
I tried killing an app's process, and expected it to destroy all the activities contained in it, but what I do see is that the app gets launched again automatically. Can you please let me know under what conditions will android automatically start the process after force close, and if there is a

[android-developers] .SWF file not opening in WebView Android

2011-06-13 Thread subrat kumar panda
Hi all, i have a problem, i would like to open .swf file in webview in android. i have stored the file locally in asset folder. but i am not able to access it . when i try to open it the screen looks white , sometimes it looks like encoded dada. anybody have knowlwdge please help me. Thanks in

[android-developers] Re: Saving as Bitmap .BMP in android

2011-06-13 Thread Streets Of Boston
Maybe it is faster to compress and un-compress than to read a bigger file from the SD-card/network -- 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: Your Opinion between android native app or HTML-5 Web App.

2011-06-13 Thread Streets Of Boston
That depends on sooo many factors. Are you a company that has many Web developers and no or few Java developers? Does you app need background processing or tight integration with native elements (e.g. contacts)? Do your customers want a native look and feel or a web/html look and feel? You

[android-developers] Diagram of Android internals

2011-06-13 Thread Constantine
Hi Android developers, I am designing detailed diagram of Android internals. You can find it here: http://www.makelinux.net/android/internals/ What do you think about it? Have you any ideas how to improve it? Thank you in advance. -- You received this message because you are subscribed to the

[android-developers] Mobile App Testing at www.testing4success.com

2011-06-13 Thread JamesT
Hello, We thought you might like to know that we have now expanded our Mobile App Testing services to include Android, Blackberry and Nokia devices. We have a variety of App testing solutions available to suit any budget. Our list of test devices now includes: Apple - iPhone 4, iPhone 3GS,

[android-developers] Image gallery, folders view

2011-06-13 Thread Rich
I have installed a number of apps that have their own image gallery functionality (not using another app via intents). The default view is usually a list of the folders in my SD card that contain images (usually with some kind of thumbnail representing the folder), and then when I drill down

[android-developers] Re: Galaxy S2 problems / tester wanted

2011-06-13 Thread Andy
my game crashes on the galaxy s2 without any usable Stacktrace, any hint would be very helpful -- 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] Mobile App Testing at www.testing4success.com

2011-06-13 Thread JamesT
Hello, We thought you might like to know that we have now expanded our Mobile App Testing services to include Android, Blackberry and Nokia devices. We have a variety of App testing solutions available to suit any budget, starting from just $65. Why Choose Us? We test on real devices We use

[android-developers] Re: Mobile App Testing at www.testing4success.com

2011-06-13 Thread John Coryat
Ok, now you're starting to sound like spam. -- 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] how to store places on google maps?

2011-06-13 Thread TreKing
On Sun, Jun 12, 2011 at 11:37 PM, danhpc phamcongdanh06hc...@gmail.comwrote: I don't know can I use google maps maker to do that in android? without storing on my database? You would have to look at the Google Map Maker and see if it has an API for you to do this sort of thing.

Re: [android-developers] How to protect the selection of vibrate mode or silent mode?

2011-06-13 Thread TreKing
On Mon, Jun 13, 2011 at 2:02 AM, shanmu nathan win.sha...@gmail.com wrote: i want protect to select the Silent and vibration mode in android.. i dnt knw how to do that.. can anybody help me? You might want to explain what you mean by protect.

[android-developers] Using jbcrypt in app

2011-06-13 Thread Simon
Hi, I am trying to use the jbcrypt library (http://code.google.com/p/ jbcrypt/) within my android application, but am having issues. When I try running the code as a standalone program, it works perfectly. However, once I try to incorporate it into my Android Eclipse project, it hangs when

Re: [android-developers] Android USSD

2011-06-13 Thread Tsolmon Narantsogt
Dude I don't understand I just wanna know about Android USSD . On Sun, Jun 12, 2011 at 1:11 PM, Sophie thedawg sdawgisinthebuildi...@gmail.com wrote: HEY DUDE THIS IS SDAWG. Email me wahtever I want I love emails from cool dudes like you guys I am sdawg WOOF WOOF! On Sat, Jun 11, 2011 at

Re: [android-developers] Using jbcrypt in app

2011-06-13 Thread Mark Murphy
Have you set breakpoints in their code to figure out where it is hanging? On Mon, Jun 13, 2011 at 2:58 PM, Simon simon.wilkin...@gmail.com wrote: Hi, I am trying to use the jbcrypt library (http://code.google.com/p/ jbcrypt/) within my android application, but am having issues.  When I try

[android-developers] Re: Using jbcrypt in app

2011-06-13 Thread Simon
I have. Its within the 'private byte[] crypt_raw(byte password[], byte salt[], int log_rounds)' method, within the for loop where key(password) and key(salt) are being called. It never gets past this loop. Simon On Jun 13, 3:06 pm, Mark Murphy mmur...@commonsware.com wrote: Have you set

Re: [android-developers] Working with Activities

2011-06-13 Thread TreKing
On Mon, Jun 13, 2011 at 3:19 AM, Felix Garcia Lainez fgarcialai...@gmail.com wrote: Any ideas or suggestions on how to do it? Some kind of static data holder should work just fine. In addition, if this data does not need to be updated too frequently, you can save it to your cache directory

Re: [android-developers] Emulator .ini files

2011-06-13 Thread Xavier Ducrohet
Window size can be configured only through the -scale option. You can set this from the launch config dialog. You cannot control its location. See emulator -help for the full command line options. Xav On Sun, Jun 12, 2011 at 10:17 AM, mlybrand mlybr...@gmail.com wrote: Is there a good

Re: [android-developers] Re: Using jbcrypt in app

2011-06-13 Thread Mark Murphy
On Mon, Jun 13, 2011 at 3:10 PM, Simon simon.wilkin...@gmail.com wrote: I have.  Its within the 'private byte[] crypt_raw(byte password[], byte salt[], int log_rounds)' method, within the for loop where key(password) and key(salt) are being called.  It never gets past this loop. Well, I don't

[android-developers] SoundPool and DualCore (Samsung Galaxy S2) : Random Crashes ingame

2011-06-13 Thread Andy
I have a strange Problem in my Game. I use SoundPool for my FX Sounds and it worked fine so far. But with the new Samsung Galaxy S2 some bad reviews where incoming concerning random crashes. I narrowed it down to the SoundPool but have no idea how to prevent the random HeapDumps (not even a

[android-developers] Introducing ActionBarSherlock v3

2011-06-13 Thread Jake Wharton
I would like to formally announce the release of ActionBarSherlock v3http://actionbarsherlock.com, a library built on top of the official compatibility library to extend support for the native action bar API back through Android 1.6. The library will automatically wrap your pre-3.0 activities

Re: [android-developers] Emulator .ini files

2011-06-13 Thread David Turner
On Sun, Jun 12, 2011 at 7:17 PM, mlybrand mlybr...@gmail.com wrote: Is there a good reference for what options are available for me to put in these files: avd-nam.ini config.ini emulator-user.ini The documentation shows several command line options for further controlling the emulators,

Re: [android-developers] file transfer trough xmpp in android?

2011-06-13 Thread TreKing
On Mon, Jun 13, 2011 at 7:47 AM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: I am using asmack lib for chatting.its works fine for chatting.but dont know how can i do file transfer with asmack. can anybody give me some ideas or links? This is not a asmack forum. Try Googling.

Re: [android-developers] When will android automatically launch a process when force closed?

2011-06-13 Thread TreKing
On Mon, Jun 13, 2011 at 8:44 AM, gunanar...@gmail.com gunanar...@gmail.comwrote: Can you please let me know under what conditions will android automatically start the process after force close, and if there is a way to instruct the system to not do this for my app? I believe that if an

Re: [android-developers] Emulator .ini files

2011-06-13 Thread Xavier Ducrohet
For config.ini you can look at $SDK/tools/lib/hardware-properties.ini which describe *some* prop that can go in there. (the ones that aren't describe in there are set by the AVD Manager and you really shouldn't change them anyway). Xav On Mon, Jun 13, 2011 at 1:11 PM, David Turner

[android-developers] Services and Alarm Manager

2011-06-13 Thread Simon Platten
I finally got my application to continue after a reboot, however if I use a task manager to kill the application the scheduled alarms also appear to stop. I have scheduled a repeating alarm in the alarm manager and this goes off at regular intervals, after a reboot the alarm is set-up again and

Re: [android-developers] Services and Alarm Manager

2011-06-13 Thread Mark Murphy
On Mon, Jun 13, 2011 at 4:52 PM, Simon Platten simonaplat...@googlemail.com wrote: I finally got my application to continue after a reboot, however if I use a task manager to kill the application the scheduled alarms also appear to stop. Correct. Same goes if the user force-stops you through

Re: [android-developers] Services and Alarm Manager

2011-06-13 Thread Simon Platten
Ty, makes sense I guess, but then how does the alarm clock keep its scheduled alarms? I'm sure that no alarm clock is running or at least it does appear to be... Regards,Sy On 13 Jun 2011 21:58, Mark Murphy mmur...@commonsware.com wrote: On Mon, Jun 13, 2011 at 4:52 PM, Simon Platten

[android-developers] Re: Force close in example taken from book Inflation Error

2011-06-13 Thread Bagatelle: David Lee Evans
My guess, is that you forgot to change the prefix package name in your xml file to match the new package name in your class. Maybe your new package name for your class is com.ragahvsood.listdroid-1 and in your xml file you still have com.ragahvsood.listdroid.ListDroidItemView instead of

Re: [android-developers] Services and Alarm Manager

2011-06-13 Thread Mark Murphy
On Mon, Jun 13, 2011 at 5:21 PM, Simon Platten simonaplat...@googlemail.com wrote: Ty, makes sense I guess, but then how does the alarm clock keep its scheduled alarms? I'm sure that no alarm clock is running or at least it does appear to be... Correct. A user can only task-kill or force-stop

[android-developers] Rotating a View around an arbitrary point using ViewPropertyAnimator

2011-06-13 Thread jsera
Is this possible, or are do we need to do it ourselves using a combination of rotate(), x(), and y()? -- 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] Users unable to download from the market

2011-06-13 Thread JonFHancock
Over the last couple of hours I have had an unusually high number of comments from users giving low stars and complaining that they can't download/install from the market. Haven't had any sales in the last hour either. Anybody else having the same problem? -- You received this message because

[android-developers] Re: Using jbcrypt in app

2011-06-13 Thread Simon
So after more digging, I've discovered that the library actually just runs much slower when used in my Android app. Testing it as a standalone algorithm, jbcrypt hashes several strings per second, but under the same conditions within the app its takes close to 6 minutes to run! There is a

[android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-13 Thread Indicator Veritatis
@TreKing Yet another of my typos! I meant Mark M., not Bob M. On Jun 8, 2:26 pm, TreKing treking...@gmail.com wrote: On Wed, Jun 8, 2011 at 4:14 PM, Indicator Veritatis mej1...@yahoo.comwrote: But you are wrong to deny the causal link between pressing Home and the lifecycle in turn causing

[android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-13 Thread Indicator Veritatis
But as Mark Murphy already pointed out in this thread, Do not request the HOME category unless *you are a home screen*. Mark Murphy is not only an outstanding Android programmer, one with experience from very early in Android's short history, but one of the star contributors to this forum, as

[android-developers] Re: Users unable to download from the market

2011-06-13 Thread Zsolt Vasvari
I've had slow sales for the last 3 days and 0 ratings/comments. My install stats are stuck also. Looks like the Market is not working properly. Or should I say, it's working as poorly as it usually does. On Jun 14, 8:19 am, JonFHancock jonfhanc...@gmail.com wrote: Over the last couple of  

[android-developers] Re: Using jbcrypt in app

2011-06-13 Thread Streets Of Boston
Is the slowness on an actual device or on the emulator. Anyways...it seems that you need to calculate the hash on a background thread as not to hang your app and risk an ANR force-close. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Stop Thread started by bindService

2011-06-13 Thread Eduardo Luz
Guys, With Matthew Johnson hint, I SOLVED the problem. I was not setting the boolean flag to false when my Parent Class onDestroy method. So when I was intent to unbind the service the service doesn't exists anymore. With a boolean flag my thread dont start again and the method dont call the

[android-developers] Re: Your Opinion between android native app or HTML-5 Web App.

2011-06-13 Thread Thomas
Keeping in mind that you're asking a very vague question, opinions on this subject will differ widely. Having only experience in Android native development (no HTML-5), what I can point out to you is: 1. Android Java apps are not portable at all 2. HTML-5 web apps presumably are portable to

[android-developers] Re: Users unable to download from the market

2011-06-13 Thread Kevin TeslaCoil Software
Earlier today I had a ton of Customer review in progress stalls, market comments and a user that email me asking if I was planning on doing something about the download issues people were experiencing. Oh I wish I could. Anyway now things have picked up and my total sales for the day still look

Re: [android-developers] Re: Force close in example taken from book Inflation Error

2011-06-13 Thread Raghav Sood
Nope. My old package was com.ragahvsood.listdroid and now it is com.raghavsood.listdroid The xml and class files link to the correct one. Any other ideas? Thanks On Tue, Jun 14, 2011 at 2:51 AM, Bagatelle: David Lee Evans dle.ev...@gmail.com wrote: My guess, is that you forgot to change the

Re: [android-developers] Re: Force close in example taken from book Inflation Error

2011-06-13 Thread νιנαソkum
hi, Check your manifest file package name On Tue, Jun 14, 2011 at 10:08 AM, Raghav Sood raghavs...@gmail.com wrote: Nope. My old package was com.ragahvsood.listdroid and now it is com.raghavsood.listdroid The xml and class files link to the correct one. Any other ideas? Thanks On

[android-developers] Re: Introducing ActionBarSherlock v3

2011-06-13 Thread Josh Burton
Looks very promising. I have recently been upgrading an app to honeycomb and this looks like it solves the big issue I came across with having to implement the action bar twice. I'll try it out. -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Services and Alarm Manager

2011-06-13 Thread Simon Platten
Ok, so how do you schedule an alarm in the same way the alarm clock does? So that once scheduled the application can be killed, but the alarm remains ? On ny phone I regularly kill all processes using task manager, yet my alarn continues to wake me up everyday. Regards,Sy On 13 Jun 2011 22:33,

[android-developers] Re: Introducing ActionBarSherlock v3

2011-06-13 Thread Zsolt Vasvari
Looks quite good. On Jun 14, 4:01 am, Jake Wharton jakewhar...@gmail.com wrote: I would like to formally announce the release of ActionBarSherlock v3http://actionbarsherlock.com, a library built on top of the official compatibility library to extend support for the native action bar API back

[android-developers] Stream live camera preview

2011-06-13 Thread kypriakos
Hi all, I have been trying to stream the camera preview across phones. I am using the setPreviewCallback to get notified for each frame and then tried to stream it across to other peers. I am not sure this can be done over HTTP so I am looking into SIP. I found out the SIP only works in Android

Re: [android-developers] Services and Alarm Manager

2011-06-13 Thread Simon Platten
My alarm clock just went off 6:30 am, no sign of any process left running after I dissmiss it, yet tomorrow it will go off again, thats what I want to achieve. Regards,Sy On 14 Jun 2011 06:17, Simon Platten simonaplat...@googlemail.com wrote: Ok, so how do you schedule an alarm in the same way

Re: [android-developers] Failed to register input channel?

2011-06-13 Thread Nikolay Elenkov
On Mon, Jun 6, 2011 at 11:01 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: I've been getting this error a lot in ACRA lately. Seems it happens mostly when trying to display a Toast or a progress dialog. It is only happening on 2.3.3 so far, but across different devices. Any idea what

Re: [android-developers] Re: Force close in example taken from book Inflation Error

2011-06-13 Thread Raghav Sood
Its correct. All the package names are com.raghavsood.listdroid. 2011/6/14 νιנαソkum@r iamvijayaku...@gmail.com hi, Check your manifest file package name On Tue, Jun 14, 2011 at 10:08 AM, Raghav Sood raghavs...@gmail.comwrote: Nope. My old package was com.ragahvsood.listdroid and