User Will - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:22:55Zhttp://stackoverflow.com/feeds/user/53498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/891141/is-it-possible-to-programmatically-uninstall-a-package-in-android3Is it possible to programmatically uninstall a package in AndroidWill2009-05-21T02:18:22Z2009-10-18T19:03:31Z
<p>Can a package uninstall itself? Can a package uninstall another package if they share the same userId and signature?</p>
http://stackoverflow.com/questions/1471501/on-studying-android/1474892#14748922Answer by Will for On studying AndroidWill2009-09-25T00:45:02Z2009-09-25T00:45:02Z<p>I learned Android with the Google tutorials located <a href="http://developer.android.com/guide/index.html" rel="nofollow">here</a>.</p>
<p>Scroll down on the left side and look for "Tutorials and Sample Code"</p>
http://stackoverflow.com/questions/1387830/does-the-android-market-work-on-the-emulator/1389641#13896413Answer by Will for Does the android market work on the emulator?Will2009-09-07T14:21:49Z2009-09-10T01:43:35Z<p>Android Market is not available through the emulator for similar reasons it is not available through the developer phone. Allowing people to buy applications with an unlocked phone (or the emulator) would make it easier for those paid apps to be redistributed as freee apps.</p>
http://stackoverflow.com/questions/1361983/how-to-install-the-same-application-more-than-once-on-android/1364646#13646460Answer by Will for How to install the same application more than once on Android?Will2009-09-01T21:03:16Z2009-09-01T21:03:16Z<p>You can change the package name (and icon) for each different language version, if you really wanted to have multiple languages of the same app on the same device.</p>
http://stackoverflow.com/questions/1355217/android-marketplace-changing-applications-package/1355372#13553724Answer by Will for Android Marketplace: Changing application's packageWill2009-08-31T00:54:13Z2009-08-31T00:54:13Z<p>It's not that the saved preferences will be lost, it's just that Android will set it as a completely new and seperate program which cannot access the old application's preferences.</p>
<p>However, if you sign your applications with the same signature and and give them the same <a href="http://developer.android.com/reference/android/R.attr.html#sharedUserId" rel="nofollow">userId</a> then they can share information and you could migrate the original application's information to the new one.</p>
http://stackoverflow.com/questions/1319473/java-calendar-setcalendar-dayofweek-calendar-sunday-will-it-roll-backwards1Java Calendar.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY), will it roll backwards, forwards or unknown?Will2009-08-23T20:30:03Z2009-08-23T20:40:20Z
<p>Suppose the following code is executed on the 22nd of August 2009 (a Saturday)</p>
<pre><code> Calendar c = Calendar.getInstance();
c.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
</code></pre>
<p><code>c.get(Calendar.DAY_OF_MONTH)</code> will return 23. I'm interested in the conditions is would return 14 (last Sunday, rather than the next Sunday).</p>
<p>Are there any rules associated with the direction Calendar will roll the <code>DAY_OF_MONTH/YEAR</code> when <code>DAY_OF_WEEK</code> is set? If so what are they?</p>
http://stackoverflow.com/questions/599324/how-to-make-a-hint-wrap-in-an-android-edittext1How to make a hint wrap in an Android EditTextWill2009-03-01T05:46:30Z2009-08-23T00:15:40Z
<p>My EditText hint is not wrapping. A hint isn't very useful if the last part is cut off. I am very cautious about restricting/forcing the dimensions my EditText box to ensure it looks decent regardless of screen dimensions. Here's what the relevant xml looks like:</p>
<pre><code> <EditText android:id="@+id/ET1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:hint="@string/Hint1"
android:lines="3">
</EditText>
</code></pre>
<p>I've already set <code>android:lines="3"</code> to mitigate the issue, but it isn't enough. In order to maximize compatibility with various screen dimensions I would prefer OS wrapping over me putting in line breaks and hard returns in the string. There are other things happening in the view which also compel me to not manually set the width of the box to promote good breaks.</p>
http://stackoverflow.com/questions/1285878/what-is-return-oriented-programming3What is return oriented programming?Will2009-08-17T01:55:50Z2009-08-17T02:05:39Z
<p>What is return oriented programming?</p>
http://stackoverflow.com/questions/1244524/how-to-delete-completely-the-initial-table-in-android/1275656#12756560Answer by Will for How to delete completely the initial table in androidWill2009-08-14T01:52:25Z2009-08-14T01:52:25Z<p>I have two recommendations:</p>
<ol>
<li><p>Modify your program so it runs an SQL query that DROPs table SONGS</p></li>
<li><p>adb into your device/emulator, run <code>sqlite</code> and directly type in the DROP command</p></li>
</ol>
http://stackoverflow.com/questions/1264397/how-to-get-android-application-id/1269322#12693220Answer by Will for How to get Android application id?Will2009-08-12T23:45:19Z2009-08-12T23:45:19Z<p>The <code>PackageInfo.sharedUserId</code> field will show the user Id <em>assigned in the manifest</em>.</p>
<p>If you want two applications to have the same userId, so they can see each other's data and run in the same process, then assign them the same userId in the manifest:</p>
<pre><code>android:sharedUserId="string"
</code></pre>
<p>The two packages with the same sharedUserId need to have the same signature too.</p>
<p>I would also recommend reading <a href="http://developer.android.com/guide/topics/security/security.html#userid" rel="nofollow">here</a> for a nudge in the right direction.</p>
http://stackoverflow.com/questions/1243066/does-android-support-near-real-time-push-notification/1247335#12473350Answer by Will for Does Android support near real time push notificationWill2009-08-07T22:44:04Z2009-08-07T22:44:04Z<p>I cannot find where I read it at, but I believe gmail utilizes an open TCP connection to do the e-mail push.</p>
http://stackoverflow.com/questions/1231949/android-development-resources-for-a-java-newbie/1236200#12362002Answer by Will for Android development resources for a Java newbieWill2009-08-05T22:59:23Z2009-08-05T22:59:23Z<p>For Java, since you already understand programming, I would recommend Sun's tutorial</p>
<p><a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">http://java.sun.com/docs/books/tutorial/</a></p>
<p>For Android I agree with Tom but also recommend the notepad tutorial:</p>
<p><a href="http://developer.android.com/guide/tutorials/notepad/index.html" rel="nofollow">http://developer.android.com/guide/tutorials/notepad/index.html</a></p>
http://stackoverflow.com/questions/1223552/how-to-time-bomb-an-android-application/1225310#12253102Answer by Will for How to time-bomb an Android application?Will2009-08-04T00:53:55Z2009-08-04T01:06:19Z<p>I would suggest using the Calendar class and having your application checking the current date against your expiration date in your OnResume(s).</p>
<p>The code would look something like this:</p>
<pre><code> protected void onResume()
{
super.onResume();
Calendar expirationDate = Calendar.getInstance();
expirationDate.set(2009, 7, 3); //hardcoded expiration date
Calendar t = Calendar.getInstance(); //Calendar with current time/date
if (t.compareTo(expirationDate) == 1)
finish();
}
</code></pre>
http://stackoverflow.com/questions/1217449/how-can-i-debug-this-nullpointer-exception/1218712#12187120Answer by Will for How can I debug this NullPointer Exception?Will2009-08-02T11:28:59Z2009-08-02T11:28:59Z<p>Your going in assumption should be the NPE is caused by you, not Android. The NPE may pop at <code>ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord) line: 2268</code> but that means you passed a null pointer to something and it kept on getting passed around until <code>performLaunchActivity</code> actually tried using it and crashed when it found a null pointer.</p>
<p>If we can see the full LogCat, particularly everything in red in the Eclipse LogCat it would help for debugging. I've turned myself inside out looking for an NPE only for someone else to find a very subtle resource initializing line out of place.</p>
http://stackoverflow.com/questions/1215548/is-it-legal-to-call-the-start-method-twice-on-the-same-thread3Is it legal to call the start method twice on the same Thread?Will2009-08-01T01:15:39Z2009-08-01T18:21:12Z
<p>The following code leads to "java.lang.IllegalThreadStateException: Thread already started." the <strong>second</strong> time it is run through on the program.</p>
<pre><code>updateUI.join();
if (!updateUI.isAlive())
updateUI.start();
</code></pre>
<p>This happens the <strong>second</strong> time <code>updateUI.start()</code> is called. I've stepped through it multiple times and the thread is called and completly runs to completion before hitting <code>updateUI.start()</code>.</p>
<p>Calling <code>updateUI.run()</code> avoids the error but causes the thread to run in the UI thread (the calling thread, as mentioned in other posts on SO), which is not what I want.</p>
<p>Can a Thread be <em>started</em> only once? If so than what do I do if I want to run the thread again? This particular thread is doing some calculation in the background, if I don't do it in the thread than it's done in the UI thread and the user has an unreasonably long wait.</p>
http://stackoverflow.com/questions/1204881/schedule-update-after-app-installed/1208043#12080431Answer by Will for Schedule update after app installedWill2009-07-30T17:19:46Z2009-07-30T17:19:46Z<p>If you want the update to run once upon the initial install I would check for a flag saved as a Preference. If the flag isn't there then you know it's the first run and you should get the update and then set the flag. If the flag is there then you know it isn't the initial run and you can skip the update.</p>
<p>Help for preferences is <a href="http://developer.android.com/guide/topics/data/data-storage.html#pref" rel="nofollow">here</a> and <a href="http://developer.android.com/reference/android/content/SharedPreferences.html#getBoolean%28java.lang.String,%20boolean%29" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1203555/update-integrated-progress-bar-in-original-activity/1203716#12037160Answer by Will for Update integrated progress bar in original activityWill2009-07-29T23:51:49Z2009-07-29T23:51:49Z<p>Without doing anything special your program runs in one thread, the UI thread, the OS's UI thread. Anything done in your program is running in the UI thread unless you create another thread for it to run in. That thread needs to communicate the task's progress back to the UI thread (use Runnable, Handler, and Thread classes). Then the main UI thread updates what the user sees on the ProgressBar.</p>
<p>This best thing to do is take an hour and work through the SDK thread examples.</p>
<p>Good places to start are <a href="http://developer.android.com/guide/appendix/faq/commontasks.html#threading" rel="nofollow">here</a> and <a href="http://developer.android.com/guide/practices/design/responsiveness.html#avoiding" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1175620/in-java-what-is-a-shallow-copy0In Java, what is a shallow copy?Will2009-07-24T03:32:44Z2009-07-24T05:10:29Z
<p>java.util.Calendar.clone() returns "...a new Calendar with the same properties" and returns "a shallow copy of this Calendar".</p>
<p>This does not appear to be a shallow copy as answered <a href="http://stackoverflow.com/questions/184710/what-is-the-difference-between-a-deep-copy-and-a-shallow-copy">here</a> on SO. That question is tagged <strong>language-agnostic,</strong> Java does not seem to follow the language agnostic definition. As I step through the code I notice that the structure and the elements are copied to this new object, more than the language agnostic structure only.</p>
<p>In Java, what is a shallow copy?</p>
<p>How does it differ from a Java deep copy (if that exists)?</p>
http://stackoverflow.com/questions/1171988/sound-processing-beat-matching-music-player-on-android/1174936#11749360Answer by Will for Sound Processing - Beat Matching Music Player on AndroidWill2009-07-23T22:52:10Z2009-07-23T22:52:10Z<p>Changing the audio speed on the fly is definetly doable; I'm not sure if it's doable on the G1.</p>
<p>Rather than writing your own source I would recommend looking at the MythTV source and/or the mplayer source code. They both support speeding up video playback while compensating the audio.</p>
http://stackoverflow.com/questions/1151664/how-to-make-validation-on-edit-text/1152878#11528782Answer by Will for How to make validation on Edit TextWill2009-07-20T10:56:39Z2009-07-21T14:08:20Z<p>Rather than make a pop-up I would integrate a hint into the EditText and I would make it so the user could only type numbers into the EditText (android:numeric, android:hint):</p>
<pre><code> <EditText android:layout_height="wrap_content"
android:numeric="integer"
android:hint="@string/numberHint"
android:gravity="left"
android:id="@+id/name"
android:layout_width="wrap_content"
android:maxWidth="60dp"
android:textSize="6pt">
</EditText>
</code></pre>
<p>More information is available here:
<a href="http://developer.android.com/reference/android/widget/EditText.html" rel="nofollow">http://developer.android.com/reference/android/widget/EditText.html</a></p>
http://stackoverflow.com/questions/1151960/how-do-i-pass-the-selected-items-id-from-a-listview-to-an-alertdialog-in-android/1156845#11568450Answer by Will for How do I pass the selected item's ID from a ListView to an AlertDialog in Android?Will2009-07-21T01:19:46Z2009-07-21T01:19:46Z<p>You might want to consider storing the information in Preferences. They are a good way to store more persistent information. By checking what in the preferences on your onCreate/onResume/onRestart you can figure out where to resume your application.</p>
<p><a href="http://developer.android.com/guide/topics/data/data-storage.html" rel="nofollow">http://developer.android.com/guide/topics/data/data-storage.html</a></p>
http://stackoverflow.com/questions/1122679/android-sqllite-tips/1128941#11289410Answer by Will for Android SQLlite tipsWill2009-07-15T01:29:41Z2009-07-15T01:29:41Z<p>I tested a lot of my SQL in SQLite before copying them over to Android as strings. It's easier for me to debug when I can directly interact with the command line.</p>
<p>Another technique I use is saving as much of my queries as possible as string constants or string resources.</p>
<p>You also don't need SQL such as <code>INTEGER NOT NULL</code> since SQLite uses duck typing/manifest typing. It does help for type affinity though..</p>
http://stackoverflow.com/questions/1123971/why-is-there-no-cancel-button-in-androids-progress-dialogs/1128919#11289190Answer by Will for Why is there no cancel button in Android's progress dialogs ?Will2009-07-15T01:20:30Z2009-07-15T01:20:30Z<p>I can't speak for other apps, but in mine anything that might cause the UI thread to wait is executed in a seperate thread. The most I'll do is show a small progress spinner in the titlebar to let the user know something is going on in the background.</p>
http://stackoverflow.com/questions/1124548/how-to-pass-the-values-from-one-activity-to-previous-activity/1124728#11247283Answer by Will for How to pass the values from one activity to previous activityWill2009-07-14T11:11:46Z2009-07-14T11:11:46Z<p>startActivityForResult()</p>
<p>And here's a link from the SDK with more information:</p>
<p><a href="http://developer.android.com/guide/appendix/faq/commontasks.html#opennewscreen" rel="nofollow">http://developer.android.com/guide/appendix/faq/commontasks.html#opennewscreen</a></p>
<p>and scroll down to the part titled "Returning a Result from a Screen"</p>
http://stackoverflow.com/questions/1122768/detect-when-android-software-keyboard-is-hidden/1123224#11232241Answer by Will for Detect when Android software keyboard is hiddenWill2009-07-14T02:54:09Z2009-07-14T02:54:09Z<p>Would forcing the sof tkeyboard to always be visible help?</p>
<p>You can add this to your Activity's xml file to ensure the softkeyboard is always visible in that Activity:</p>
<pre><code>android:windowSoftInputMode="stateAlwaysVisible"
</code></pre>
<p><a href="http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft" rel="nofollow">http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft</a></p>
http://stackoverflow.com/questions/1122570/can-the-android-handset-led-be-maniuplated-without-using-a-notification-object/1122949#11229490Answer by Will for Can the Android handset LED be maniuplated without using a Notification object?Will2009-07-14T00:55:27Z2009-07-14T00:55:27Z<p>I haven't tried this in code, but the SDK shows this:</p>
<ul>
<li>To turn the LED off, pass 0 in the alpha channel for colorARGB or 0 for both ledOnMS and ledOffMS.</li>
<li><strong>To turn the LED on, pass 1 for ledOnMS and 0 for ledOffMS.</strong></li>
<li>To flash the LED, pass the number of milliseconds that it should be on and off to ledOnMS and ledOffMS.</li>
</ul>
<p>And then you could use NotificationManager.cancel() to arbitrarily turn the notification off.</p>
<p><a href="http://developer.android.com/reference/android/app/Notification.html#FLAG%5FSHOW%5FLIGHTS" rel="nofollow">http://developer.android.com/reference/android/app/Notification.html#FLAG_SHOW_LIGHTS</a></p>
http://stackoverflow.com/questions/1117960/how-to-change-the-focusable-color/1122893#11228931Answer by Will for How to change the focusable color..Will2009-07-14T00:35:43Z2009-07-14T00:35:43Z<p>Yes, you can change the focus color of a button (this an open source OS). I poked around the SDK and could not find a direct way to change the focus color of a button. I did find this tantalizing xml file...</p>
<pre><code>widget_button.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:color="#ff000000"/>
<item android:color="#ff000000"/> <!-- unfocused -->
</selector>
</code></pre>
<p>...but I'm having a hard time figuring out where to adjust things. Button extends TextView, and based on the TextView source that's where the focus color is defined.</p>
<p>If you <em>really</em> want to this you need to make your own class from source.</p>
<p>PS: Since this is so hard I suspect it's discouraged by the Andoird team. It makes for a less consistent user interface.</p>
http://stackoverflow.com/questions/1117641/how-to-use-a-tab-widget-in-android/1122697#11226972Answer by Will for How to use a tab widget in Android?Will2009-07-13T23:35:19Z2009-07-13T23:35:19Z<p>Here's the ste-by-step from the SDK:</p>
<p><a href="http://developer.android.com/guide/tutorials/views/hello-tabwidget.html" rel="nofollow">http://developer.android.com/guide/tutorials/views/hello-tabwidget.html</a></p>
http://stackoverflow.com/questions/1115413/android-emulator-vs-real-device/1116857#11168571Answer by Will for Android Emulator vs Real DeviceWill2009-07-12T20:36:42Z2009-07-12T20:36:42Z<p>With the 1.5 SDK the following limitations exists (from the <a href="http://developer.android.com/guide/developing/tools/emulator.html#limitations" rel="nofollow">SDK website</a>):</p>
<ul>
<li>No support for placing or receiving
actual phone calls. You can simulate
phone calls (placed and received)
through the emulator console,
however.</li>
<li>No support for USB connections</li>
<li>No support for camera/video capture
(input).</li>
<li>No support for device-attached
headphones</li>
<li>No support for determining connected
state</li>
<li>No support for determining battery
charge level and AC charging state</li>
<li>No support for determining SD card
insert/eject</li>
<li>No support for Bluetooth</li>
</ul>
<p>Based on experience I've noticed the following differences in actual developemnt:</p>
<ul>
<li>There are bugs you'll be able to ignore in the emulator that will
crash the device (not closing Cursors
for example)</li>
<li>You interact with the device differently than the emulator. I use
landscape mode a lot more with the<br />
real device than I do with the<br />
emulator.</li>
<li>There's a different CPU. Things that
are fast on your emulator will be
slower on the real device.</li>
<li>You can dogfood with the device. It
is harder to dogfood with the<br />
emulator.</li>
</ul>
<p>There is a google group <a href="http://groups.google.com/group/android-app-distribution" rel="nofollow">here</a> if you need real device testers.</p>
http://stackoverflow.com/questions/1102050/how-to-navigate-from-one-screen-to-another-screen/1107543#11075435Answer by Will for How to navigate from one screen to another screenWill2009-07-10T03:33:50Z2009-07-10T03:33:50Z<pre><code>Button x.setOnClickListener(new View.OnClickListener() {
public void onClick(View v)
{
Intent i = new Intent(y.this, Activity.class);
startActivity(i);
}
});
</code></pre>
<p>Here we've defined a listener for Button x. The OS will call this method and start the Activity referenced in Intent i.</p>
<p>Here's the official tutorial example:
<a href="http://developer.android.com/guide/tutorials/notepad/notepad-ex2.html" rel="nofollow">http://developer.android.com/guide/tutorials/notepad/notepad-ex2.html</a></p>
http://stackoverflow.com/questions/1458047/why-isnt-view-invalidate-immediately-redrawing-the-screen-in-my-android-game/1458121#1458121Comment by Will on Why isn't view.invalidate immediately redrawing the screen in my android gameWill2009-09-22T23:14:09Z2009-09-22T23:14:09ZJust to add...unless you make your own threads all your code executes in the UI thread. If you sleep or do a lot of computation in this thread the will experience a less responsive UI and eventually you'll get an Application Not Responding (ANR) box. http://stackoverflow.com/questions/1387830/does-the-android-market-work-on-the-emulator/1389641#1389641Comment by Will on Does the android market work on the emulator?Will2009-09-10T01:43:16Z2009-09-10T01:43:16ZSounds like a good recommendation for the Google/T-Mobile folks.http://stackoverflow.com/questions/1355217/android-marketplace-changing-applications-package/1355372#1355372Comment by Will on Android Marketplace: Changing application's packageWill2009-09-01T00:11:44Z2009-09-01T00:11:44ZNope. You can have multiple applications with the same signature. You could remove the old application from Market, but you'll still have the installed base.http://stackoverflow.com/questions/1223552/how-to-time-bomb-an-android-application/1225310#1225310Comment by Will on How to time-bomb an Android application?Will2009-08-29T22:11:47Z2009-08-29T22:11:47ZI believe that should be correct.http://stackoverflow.com/questions/1223552/how-to-time-bomb-an-android-application/1225310#1225310Comment by Will on How to time-bomb an Android application?Will2009-08-29T03:47:37Z2009-08-29T03:47:37ZThe Java Calendar class month numbering start at 0, not 1.http://stackoverflow.com/questions/1264397/how-to-get-android-application-id/1269322#1269322Comment by Will on How to get Android application id?Will2009-08-14T00:15:31Z2009-08-14T00:15:31ZNo. If two applications have the same shareUserId AND are signed with the same signature the can share data. Package name is not an issue.http://stackoverflow.com/questions/1215548/is-it-legal-to-call-the-start-method-twice-on-the-same-thread/1215553#1215553Comment by Will on Is it legal to call the start method twice on the same Thread?Will2009-08-01T01:51:03Z2009-08-01T01:51:03ZThanks. I checked the documentation with the IDE and the Java tutorial for threads (and google too). I'll check the API spec in the future. That critical "..never legal to start more than once.." is not in the other readings.http://stackoverflow.com/questions/1175620/in-java-what-is-a-shallow-copyComment by Will on In Java, what is a shallow copy?Will2009-07-24T16:45:49Z2009-07-24T16:45:49ZOkay. It looks like the takeaway is that a Java shallow/deep copy is the same as the rest of the programming worlds, it's just the android 1.5 java.util.Calendar.clone() documentation is just wrong. clone() is a deep copy, not a shallow copy.http://stackoverflow.com/questions/1175620/in-java-what-is-a-shallow-copy/1175632#1175632Comment by Will on In Java, what is a shallow copy?Will2009-07-24T03:43:02Z2009-07-24T03:43:02ZThe documentation is from the latest Android 1.5 SDKhttp://stackoverflow.com/questions/1123194/unix-tar-commandComment by Will on UNIX tar commandWill2009-07-14T02:55:57Z2009-07-14T02:55:57Zor superuser....http://stackoverflow.com/questions/1117960/how-to-change-the-focusable-color/1122893#1122893Comment by Will on How to change the focusable color..Will2009-07-14T00:36:14Z2009-07-14T00:36:14ZIf anybody has a better method than above I'd love to see it!http://stackoverflow.com/questions/1108820/android-emulator-outputComment by Will on Android emulator OutputWill2009-07-10T19:44:31Z2009-07-10T19:44:31ZThere are a lot of reasons you may not be seeing output. Does the Emulator start? Does the OS load? Can you navigate within the Android Emulator (say start the web browser)? Does program's icon show up in the launcher? If you narrow doens what's happening and isn't happening we may be able to help you out.http://stackoverflow.com/questions/1107165/android-nullpointerexception-at-android-app-activitythreadpackageinfoservicediComment by Will on Android: NullPointerException at android.app.ActivityThread$PackageInfo$ServiceDispatcher.doConnected(ActivityThread.java:1012)Will2009-07-10T09:28:17Z2009-07-10T09:28:17ZCan we see a code snippet of you trying to connect to the service?http://stackoverflow.com/questions/1068121/android-how-to-release-resources-when-the-application-terminates/1070541#1070541Comment by Will on Android: How to release resources when the application terminates?Will2009-07-03T01:41:43Z2009-07-03T01:41:43ZGreat comment. I looked at the Android source code. It looks like the only way you can't get a lock is if you malform your call, in which case it logs an error but doens't throw an exception.
If you call release() without acquiring a lock it will throw a "WakeLock under-locked " exception.
The documentation of acquire() leads one to think if you ask for the lock, you'll get the lock. But if you should check, then you should check right after the acquire(), not after the program has been running and you're about to exit.http://stackoverflow.com/questions/1077412/what-is-an-idempotent-operationComment by Will on What is an idempotent operation?Will2009-07-03T01:07:18Z2009-07-03T01:07:18ZI know how to google/wikipedia the answer. The point of this question is to put the best answer in stackoverflow.