active questions tagged android - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T18:58:12Z http://stackoverflow.com/feeds/tag/android http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850771/how-to-refresh-a-listview-to-requery-its-cursor-to-repopulate-its-data-and-its-vi 0 How to refresh a ListView to requery its cursor to repopulate its data and its views hap497 2009-12-05T01:33:32Z 2009-12-05T16:21:25Z <p>Hi,</p> <p>I have a ListView which as a CursorAdatper as its adatper. I would like to have the list view to * requery its data * refresh its view once the requery is done.</p> <p>I tried:</p> <pre><code>CursorAdapter adapter = (CursorAdapter)listView.getAdapter(); adapter.notifyDataSetChanged(); </code></pre> <p>And i tried: CursorAdapter adapter = (CursorAdapter)listView.getAdapter(); adapter.getCursor().requery();</p> <p>both do not work. I have set up a break point in my ContentProvider's query method, but I don't see the requery is being called and my ListView is refreshed with new data.</p> <p>Can you please tell me what is the solution to my problem?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1784786/mathml-and-java 3 MathML and Java Tom R 2009-11-23T17:45:20Z 2009-12-05T16:12:02Z <p>Hi all.</p> <p>I've been doing some research for a mathematical Android related project I'd like to embark upon and I stumbled across for the first time MathML. </p> <p>Does anyone know of any Java libraries which can do any (preferably all) of the following things?</p> <ol> <li>Parse MathML</li> <li>Output MathML by parsing standard mathematical notation</li> <li>Render MathML (particularly important)</li> <li>Do any other cool maths-ey things (like re-arrange equations in terms of different things)</li> </ol> <p>Number 3 is probably the most important, and number 4 the least.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1852374/does-android-provide-widget-like-the-iphone-uipickerview 0 Does Android provide widget like the iPhone UIPickerView Robin 2009-12-05T14:45:27Z 2009-12-05T14:45:27Z <p>I feeling that the UIPickerView of iPhone is good idea and easy to use on touchable mobile phone. I am strange that why Android SDK do not provide the same effect widget ?</p> <p>or maybe coder have to clone it on Android ?</p> <p>any help ... thanks ...</p> http://stackoverflow.com/questions/1840091/getting-screen-height-before-first-display 0 Getting screen height before first display? Mark 2009-12-03T14:12:52Z 2009-12-05T14:23:46Z <p>Hi,</p> <p>I have a ListView. I populate it with 8 items, that's all that fits vertically on the G1. Some of my users are saying the Droid has a taller screen height, and so I can probably add one or two more items to the ListView to take up the additional space provided.</p> <p>How could I measure the available height the screen offers at startup, before the UI is displayed? If I see the height can fit more than 8 items, I'd like to add one or two more rows,</p> <p>Thanks</p> http://stackoverflow.com/questions/1850412/android-parse-xml-string 0 Android - Parse XML string ruigoncalves 2009-12-04T23:44:36Z 2009-12-05T14:07:32Z <p>Hi there!</p> <p>Is there any way to parse a xml string using Android SAX?</p> <p>Thanks in advance, Best regards!</p> http://stackoverflow.com/questions/1435875/android-book-recommendations 1 Android Book Recommendations Davie 2009-09-16T22:35:53Z 2009-12-05T14:01:33Z <p>Hi,</p> <p>I am looking for a book that will inform me about the development, implementation, and testing of an application for android devices.</p> <p>I have no experience with android as a platform.</p> <p>I have looked around for a book but they all seem very similar making it difficult to decide what one to buy. Does anyone have any recommendations? </p> http://stackoverflow.com/questions/1852248/is-there-an-android-testing-service-i-can-use-to-give-me-real-debug-information-f 0 Is there an Android Testing Service I can use to give me real debug information from a device? unknown (google) 2009-12-05T13:51:42Z 2009-12-05T13:53:26Z <p>I need test my Android app on a Motorola Cliq but don't have one. Is there a testing service that will let me make a debug connection to that device so I can run some tests and find out where the code is failing. Video connections won't tell me that.</p> http://stackoverflow.com/questions/1346558/android-sms-mms-outgoing-count-in-1-5 1 Android SMS MMS outgoing count in 1.5 Dam 2009-08-28T11:55:56Z 2009-12-05T13:00:01Z <p>Hi </p> <p>Any one Help me the coding to get Out going SMS / MMS count in the Android 1.5. it means my code will know automatically, when the SMS or MSS will be sent from the Mobile </p> <p>please help me any one to find the solution</p> <p>thank you </p> http://stackoverflow.com/questions/1507814/how-to-load-data-in-expandable-list-adapter 0 How to load data in expandable List Adapter raj 2009-10-02T05:11:23Z 2009-12-05T12:00:04Z <p>How to load data in expandable List Adapter</p> <p>through Scroll .</p> <p>Means I want to add data as per Scrolling in Run time.</p> <p>Thanks in advance Raj Android Developer. </p> http://stackoverflow.com/questions/1851633/how-to-add-button-dynamically-in-android 0 how to add button dynamically in android? deepthi 2009-12-05T08:57:03Z 2009-12-05T10:36:48Z <p>how to add button dynamically in android?</p> http://stackoverflow.com/questions/1851634/load-file-from-resource 0 Load file from resource Quentin 2009-12-05T08:57:17Z 2009-12-05T09:54:55Z <p>Good morning,</p> <p>To sumup : in order to add easily unit tests for a SAX parser I would like to load XML from a file.</p> <p>Now, I have my XML in a static string inside my unit test class, but it is not very convenient for large XML. This is why I would like to add some XML files to my project and load them in my unit test. How can I do ?</p> <p>Regards, Quentin</p> http://stackoverflow.com/questions/456211/activity-restart-on-rotation-android 4 Activity restart on rotation Android Isaac Waller 2009-01-19T00:28:29Z 2009-12-05T06:54:32Z <p>In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of initial setting up in the onCreate method, so I need either:<br /> 1. Put all the initial setting up in another function so it's not all lost on device rotation or<br /> 2. Make it so onCreate is not called again and the layout just adjusts or<br /> 3. Limit the app to just portrait so that onCreate is not called.</p> http://stackoverflow.com/questions/1844560/parsing-html-like-document-with-xmlpullparser 0 Parsing html-like document with xmlpullparser? gsmd 2009-12-04T02:54:01Z 2009-12-05T01:09:19Z <p>So I've got to parse ugly files that contain nested tags like</p> <pre><code>&lt;p&gt;blah&lt;strong&gt;lah&lt;/strong&gt;blah&lt;/p&gt; </code></pre> <p>The nested tags are defined and I don't care about them. But they make XmlPullParser fail:</p> <pre><code>XmlPullParser parser = XmlPullParserFactory.newInstance().newPullParser(); parser.setInput(some_reader); while (parser.next() != XmlPullParser.END_DOCUMENT) { if (XmlPullParser.START_TAG == event) { String tag = parser.getName(); if (tag != null) { tag = tag.toLowerCase(); } else { continue; } if ("p".equals(tag)) { String text = parser.nextText(); // and here we go // org.xmlpull.v1.XmlPullParserException: expected: /p read: strong } } } </code></pre> <p>Question: any chance I could get away w/o preprocessing the file stripping all the unnecessary tags or using a third-party library?</p> <p>EDIT: Updated the snippet to actually make sense.</p> http://stackoverflow.com/questions/1759183/is-it-possible-to-stream-to-an-android-phone-with-microsoft-media-server 0 Is it possible to stream to an Android phone with Microsoft Media Server? Bryan Denny 2009-11-18T21:24:03Z 2009-12-04T20:50:30Z <p>Let's say that I have Microsoft Media Server stream (i.e. mms://[some ip address here]). This stream contains both audio and video. Is it possible to stream this to an Android phone? How would I go about doing this? Preferably with video, but if it is an audio stream only that would also be okay.</p> http://stackoverflow.com/questions/1848886/jni-c-library-passing-byte-ptr 0 JNI / C library: passing byte ptr John 2009-12-04T18:42:23Z 2009-12-04T19:39:38Z <p>I have an unsigned char* in my C library, and Im calling a JNI exported function that needs to set a java object with this data... preferably in a byte[].</p> <p>But this function will be called very often, and it's quite a lot of data to be copied.. Is it possible to use a ByteBuffer and assign the pointer of that bytebuffer to my unsigned char*? Or does it only work the other way round</p> <p>Can I even do this without copying the data? What would be the best way to access it? Thanks</p> <p>edit: The size of the data in the unsigned char* is known.</p> http://stackoverflow.com/questions/1848567/adb-samsung-galaxy 0 ADB + Samsung Galaxy mobilekid7 2009-12-04T17:48:42Z 2009-12-04T17:48:42Z <p>Has anyone been successful with hooking up a Samsung Galaxy with ADB running on Win XP Pro SP3? Links to already existing threads or tutorials related to this would be much appreciated! Thanks!</p> http://stackoverflow.com/questions/1845460/activity-history-stack-wrong-upon-first-install-on-device 1 Activity history stack wrong upon first install on device? mark 2009-12-04T07:46:31Z 2009-12-04T17:21:08Z <p>Hi,</p> <p><strong>Edit / Update:</strong></p> <p>As an update to the below problem, I found the exact action which causes it to happen.</p> <ol> <li>Download an apk from a url through the android browser</li> <li>Install the app.</li> <li>After install, the app gives you two choices: "Open" or "Done".</li> <li>If you choose "Open", the quirky behavior described below starts.</li> <li>If you choose "Done", then launch the app from the app tray, it works fine.</li> </ol> <p>So it seems like this problem is caused by using the "Open" button the browser provides you after installing the APK.</p> <p><hr></p> <p>I'm experiencing an error in the history stack of applications upon first install. I made a test app to demonstrate this.</p> <p>The test app is simply two activities, A and B. Activity A launches B. That's all it does. Rest is wizard generated template code from eclipse.</p> <p>When the user installs the app (via web url apk), and runs it for the <em>first</em> time, I get an out-of-order activity stack:</p> <p>-User starts the app, A is on top.<br> -They make A launch B by clicking a button. B is on top of the stack.<br> -User hits the home screen button.<br> -User returns to the app, A is displayed, instead of B.<br> -User hits the back key, B is shown!<br> -User hits the back key again, A is shown!<br> -User hits the back key again, home screen shown.<br> -Now the stack is clean, and app behaves "normally" from now on! </p> <p>Is any one else seeing this? This is almost exactly like this known bug, however my users are not installing from eclipse: <a href="http://code.google.com/p/android/issues/detail?id=2373&amp;q=first%20%20i" rel="nofollow">http://code.google.com/p/android/issues/detail?id=2373&amp;q=first%20%20i</a>...</p> <p>I can provide the test app/source if anyone wants to try. This is the manifest, which does not have any special customizations made to it.</p> <pre><code>&lt;activity android:name=".ActivityA" android:label="ActivityA" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="ActivityB" android:label="ActivityB" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; </code></pre> <p>as far as I know, this should definitely not be happening, and works fine after you clear the history stack the first time.</p> <p>Thanks</p> http://stackoverflow.com/questions/1847818/android-listener-or-handler-for-video-finish 0 Android - Listener (or handler) for video finish ruigoncalves 2009-12-04T15:46:54Z 2009-12-04T16:26:40Z <p>Hi there!</p> <p>I have implement the following code in order to test playing a video from a remote web server through it´s URL.</p> <pre><code>videoView = (VideoView)this.findViewById(R.id.videoView); MediaController mc = new MediaController(this); videoView.setMediaController(mc); videoView.setVideoURI(Uri.parse("http://sayedhashimi.com/downloads/android/movie.mp4")); videoView.requestFocus(); </code></pre> <p>The code is working just fine, even in the Android emulator. I just would like to know if there's any listener (or handler) to detect the finish of the video that is being reproduced?</p> <p>Thanks in advance for the help, Best regards!</p> http://stackoverflow.com/questions/1845285/how-to-block-virtual-keyboard-while-clicking-on-edittext-in-android 0 how to block virtual keyboard while clicking on edittext in android? deepthi 2009-12-04T06:52:39Z 2009-12-04T15:35:22Z <p>How to block virtual keyboard while clicking on edittext in android</p> http://stackoverflow.com/questions/1847008/measuring-real-phone-signal-strength-on-a-mobile-phone 1 Measuring "real" phone signal strength on a mobile phone Serafeim 2009-12-04T13:40:04Z 2009-12-04T15:10:51Z <p>I want to programmatically measure the phone signal strength in a mobile phone. I don't actually care about the mobile phone or the programming environment: It can be based on android or windows mobile or even J2ME and can be from any manufacturer (please no iPhone). However, it needs to be a real, commercial mobile phone and not a special measurement device.</p> <p>This problem is not as easy as it seems with a first look. I am aware that there already exist a number of methods that claim to return the phone signal strength. Some of these are:</p> <ul> <li>SystemState.PhoneSignalStrength for WM6</li> <li>RIL_GetCellTowerInfo for WinCe (dwRxLevel member of returned RILCELLTOWERINFO struct)</li> <li>android.telephony.NeighboringCellInfo.getRssi() for android</li> </ul> <p>The problem with the above is that they only return a few (under 10) discrete values, meaning that, for instance, the return values of SystemState.PhoneSignalStrength can only be translated to (for instance) -100 dbm, -90 dbm, -80 dbm, -70 dbm and -60 dbm, something that is not useful for my application, since I'd like to have as much precision as possible.</p> <p>It doesn't matter if there is an undocumented solution that only works on only one phone, if you can tell me a way I'd be grateful.</p> <p>Thanks in advance </p> http://stackoverflow.com/questions/1754713/android-sms-api 4 Android SMS API Roger 2009-11-18T09:23:51Z 2009-12-04T13:28:37Z <p>I know that the SMS content provider is not part of the public API (at least not documented), but if I understand correctly it's still possible to use many of the SMS features as long as you know how to use the API(?).</p> <p>E.g it's pretty straightforward to insert an SMS into your inbox:</p> <pre><code> ContentValues values = new ContentValues(); values.put("address", "+457014921911"); contentResolver.insert(Uri.parse("content://sms"), values); </code></pre> <p>Unfortunately this does not trigger the standard "new-SMS-in-your-inbox" notification. Is it possible to trigger this manually? </p> <p><strong>Edit</strong>: AFAIK the "standard mail application (Messaging)" in Android is listening for incoming SMSes using the android.permission.RECEIVE_SMS permission. And then, when a new SMS has arrived, a status bar notification is inserted with a "special" notification id. So one solution to my problem (stated above) could be to find, and send the correct broadcast intent; something like "NEW SMS HAS ARRIVED"-intent.</p> <p><strong>Edit</strong>: Downloaded a third party messaging application (<a href="http://www.chompsms.com/" rel="nofollow">chompsms</a>) from Android market. This application satisfies my needs better. When i execute the code above the chompsms notice the new sms and shows the "standard status bar notification". So I would say that the standard Android Messaging application is not detecting sms properly? Or am I wrong?</p> http://stackoverflow.com/questions/1838083/android-how-do-i-know-if-activity-onstop-is-being-called-because-the-user-is-g 0 Android: How do I know if Activity.onStop() is being called because the user is going back to Home? FlySwat 2009-12-03T06:34:43Z 2009-12-04T12:19:20Z <p>I need be able to tell if Activity.onStop() was called because my application is moving to a new activity, or if it was closed because the user pressed the "Home" key or hit the back button from the bottom of the activity stack.</p> <p>The reason is because I need to know when it is appropriate to shut off music that is playing in my application (A game). There is nothing more annoying than hitting home and having something playing music in the background.</p> <p>However, Activity.OnStop() is called for each activity change, and I don't want to suspend music when moving between multiple activities in my app. I just can't find a way to differentiate between going home and going to a internal activity.</p> <p>Am I perhaps hooking into the wrong events?</p> <p>Any advice?</p> http://stackoverflow.com/questions/1843911/android-detect-when-another-activity-is-launched-or-your-activity-loses-focus 1 Android: Detect when another Activity is launched (or your activity loses focus) FlySwat 2009-12-03T23:44:59Z 2009-12-04T12:10:27Z <p>Like the title says, I need to detect when my app loses focus because another app is launched (Phone call comes in, or user hits Home etc).</p> <p>Overriding Activity.OnStop does not work because that is called even when switching activities within my app.</p> http://stackoverflow.com/questions/1769618/android-intent-sms 0 Android intent (sms) Roger 2009-11-20T10:32:24Z 2009-12-04T11:30:29Z <p>I want to react (receive a callback) to the following intent:</p> <pre><code>INFO/ActivityManager(62): Starting activity: Intent { action=android.intent.action.VIEW data=content://mms-sms/conversations/1 comp={com.android.mms/com.android.mms.ui.ComposeMessageActivity} } </code></pre> <p>I've tried some different alternatives, both runtime (programmatically) and declarative (AndroidManifest.xml), without any success.</p> <p>edit: is it possible?</p> http://stackoverflow.com/questions/1723412/android-and-protocol-buffers 4 Android and Protocol Buffers spaceboy2000 2009-11-12T16:14:07Z 2009-12-04T10:50:03Z <p>I am writing an Android application that would both store data and communicate with a server using protocol buffers. However, the <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">stock implementation</a> of protocol buffers compiled with the LITE flag (in both the JAR library and the generated .java files) has an overhead of ~30 KB, where the program itself is only ~30 KB. In other words, protocol buffers doubled the program size.</p> <p>Searching online, I found a <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/c7b68765a02f74df/978cd88517a5fc25?#978cd88517a5fc25" rel="nofollow">reference</a> to an <a href="http://android.git.kernel.org/?p=platform/external/protobuf.git;a=tree;f=src/com/google/common/io/protocol;h=44814a7cc40a99cf6a866e219793976de8f283a7;hb=HEAD" rel="nofollow">Android specific implementation</a>. Unfortunately, there seems to be no documentation for it, and the code generated from the standard .proto file is incompatible with it. Has anyone used it? How do I generate code from a .proto file for this implementation? Are there any other lightweight alternatives?</p> http://stackoverflow.com/questions/1109022/how-to-close-hide-the-android-soft-keyboard 4 How to close/hide the Android Soft Keyboard? PHP Jedi 2009-07-10T11:27:17Z 2009-12-04T10:01:27Z <p>Im having an EditText and a Button in my layout. After writing inside the edit field and click on the Button, i want to hide the virtual keyboard. I guess there should be a simple, one or two liner to make this happen, but cant find any example of it.</p> <p>Anyone with a suggestion?</p> http://stackoverflow.com/questions/1845990/how-to-get-the-speed-with-android-sdk 0 How to get the speed with Android SDK? Robin 2009-12-04T10:01:01Z 2009-12-04T10:01:01Z <p>as topic , I want got the current Android holder speed, I see the GPS location class provide the property , but not sure whether it is available ...</p> <p>any help ? thanks.</p> http://stackoverflow.com/questions/1845678/android-ui-thread 1 android UI thread Arutha 2009-12-04T08:44:25Z 2009-12-04T09:34:33Z <p>How can I know if the running code is executed in the main thread (UI thread). With Swing I use the isEventDispatchThread method...</p> http://stackoverflow.com/questions/995719/android-trial-applications 4 Android Trial Applications Tom 2009-06-15T11:57:52Z 2009-12-04T08:09:27Z <p>Hello, I have a application which I want to hit the market as a Paid app. I would like to have other version which would be a "trial" version with a time limit of say, 5 days?</p> <p>How can I go about doing this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1844816/svn-and-syntax-highlighting-on-android 0 SVN and syntax highlighting on Android unknown (yahoo) 2009-12-04T04:17:17Z 2009-12-04T06:30:18Z <p>Anyone know of a Subversion client for Android OS? Same goes for a syntax highlighting text editor on there.</p>