User Reto Meier - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:29:25Zhttp://stackoverflow.com/feeds/user/822http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1619133/hidden-features-of-android-development/1665926#166592619Answer by Reto Meier for Hidden features of Android development?Reto Meier2009-11-03T08:19:03Z2009-11-03T09:33:11Z<p>Hopefully there aren't too many hidden, hidden features - but here's some of the less well known and non-intuitive features available for Android that will definitely make your life easier and your apps better.</p>
<ul>
<li>All the source code for the platform and all the non-Google native apps is available for you to browse, download, borrow, or steal from the <a href="http://source.android.com/download" rel="nofollow">Android Open Source project</a>.</li>
<li>Using the <a href="http://developer.android.com/guide/topics/resources/resources-i18n.html#AlternateResources" rel="nofollow">resources framework</a>, creating localized versions of your app is as simple as adding a new annotated subfolder (Eg. values-fr) that contains an XML file with strings in a different language (Eg. French). Android will choose the right folder at runtime for you.
<ul>
<li>The same resources framework lets you use alternate layouts for different hardware configurations, screen pixel densities, and input devices just by dropping them in named folder.</li>
</ul></li>
<li>Since Android 1.6, your app can produce results that will appear in the results from a homescreen <a href="http://developer.android.com/guide/samples/SearchableDictionary/index.html" rel="nofollow">Quick Search Box</a> search.</li>
<li>Using <a href="http://developer.android.com/guide/topics/fundamentals.html#ifilters" rel="nofollow">Intents and Intent Filters</a> your apps can make and service anonymous requests for an action to be completed (Eg. <a href="http://blog.opentable.com/2009/opentable-for-android-now-available/" rel="nofollow">Where requesting a table booking from Open Table</a>).
<ul>
<li>They can request an unknown application to complete an action without needing to know which application(s) can fulfill that request </li>
<li>Your app can fulfill requests from unknown apps to complete actions without needing to know which apps will make the requests. Play this right and you can create the 'default' Twitter app, or booking app, etc.</li>
</ul></li>
<li>Using <a href="http://developer.android.com/reference/android/app/AlarmManager.html" rel="nofollow">Alarms</a> you can set your app to complete tasks at predetermined times, even if your app isn't running.
<ul>
<li>You can save a lot of battery life using the <a href="http://developer.android.com/reference/android/app/AlarmManager.html" rel="nofollow">setInexactRepeating</a> method to schedule regular events (like server polling or updates). It will synchronize alarms from multiple apps to occur at the same time rather than adhoc. </li>
</ul></li>
<li>Using the <a href="http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/app/AdvancedPreferences.html" rel="nofollow">Preferences</a> framework you can create settings screens for your apps in the same style as the system settings. You can even incorporate system settings screens (Eg. Security and Location) into your application's settings hierarchy.</li>
<li>Using the <a href="http://emeadev.blogspot.com/2009/09/raw-audio-manipulation-in-android.html" rel="nofollow">AudioTrack and AudioRecord</a> APIs, you can stream audio data directly from and to the PCM audio buffers.</li>
</ul>
http://stackoverflow.com/questions/10256/android-development/10867#1086730Answer by Reto Meier for Android DevelopmentReto Meier2008-08-14T10:29:28Z2009-10-27T12:36:16Z<p>I haven't done any Android development in Linux, so my answer is based on my Windows experience, so to answer your first question last, yes. It can be done in Windows.</p>
<p>From what I've read / heard the following should be applicable to Linux as well.</p>
<p>Eclipse is definitely where you want to be building your Android applications from. Google have released a plugin (Android Developer Toolkit) that automagically integrates all the debugging tools, emulator, compiler, new project wizard, etc. You don't need it, but it makes everything much easier.</p>
<p>Both Eclipse and the SDK are download-unzip-run installations that should be straight forward to get running. If you haven't already, start by getting the latest Android SDK from [<a href="http://code.google.com/android/download.html" rel="nofollow">http://code.google.com/android/download.html</a>'], just unzip it into a new development sandbox and take note of where you put it.</p>
<h2>Getting Eclipse Setup</h2>
<p>You can download a compatible Eclipse with all the libraries and tools you need for Android from here:
[<a href="http://www.eclipse.org/downloads/packages/" rel="nofollow">http://www.eclipse.org/downloads/packages/</a>']</p>
<p>The 'Eclipse IDE for Java Developers' package has everything you'll need. To install just unzip it into a new folder and run the <code>Eclipse.exe</code> executable, let it create a new workspace wherever you like. Once you're in you'll want to install the Android plugin to make your life easier. </p>
<p>Select <strong>Help</strong> > <strong>Install New Software...</strong>, and in the dialog box the comes up enter <code>https://dl-ssl.google.com/android/eclipse/.</code> into the 'work with' text entry box. </p>
<p>Hit OK and accept all the prompts until it's installed. Restart Eclipse and you're almost ready to rock.</p>
<p>Select <strong>Window</strong> > <strong>Preferences</strong>... and select Android, then put the folder where you unzipped the SDK into the <strong>SDK Location</strong> text box. Hit <strong>Apply</strong> then <strong>OK</strong> and you're done.</p>
<h2>Getting Started</h2>
<p>The Plugin creates a new <em>Android</em> project type in the <strong>New</strong> > <strong>Project...</strong> menu. Every new project is actually an implementation of 'Hello World' that can help get you started.</p>
<p>Before you can use the emulator you need to create a virtual device. An Android virtual device lets you specify a target Android platform, screen resolution, and hardware settings.</p>
<p>To create a Virtual Device select <strong>Window</strong> > <strong>Android SDK and AVD Manager</strong>. Click the 'New' button and select a name and target platform. In most cases you'll want to select the latest API Level with the Google APIs (Eg. Google APIs (Google Inc.) - API Level 4). Enter an SD Card size greater than 8M and select a skin / screen resolution depending on the device you wish to emulate. Select the 'Create AVD' button.</p>
<p>To run it up in the emulator hit the <strong>Run</strong> > <strong>Open Debug Window...</strong> menu option. The defaults should work just fine, so hit Debug and the default AVD should launch and show your new application.</p>
http://stackoverflow.com/questions/1129644/how-to-make-a-file-hidden-in-android-sd-card/1131082#11310822Answer by Reto Meier for how to make a file hidden in android sd cardReto Meier2009-07-15T12:25:42Z2009-07-15T12:25:42Z<p>Any file stored on the SD card is accessible both by applications running on the phone, and by users who have mounted the SD card (both while it's in the phone and otherwise).</p>
<p>You can change the file properties to make it 'hidden', but it will still be easily found. There is no way to make a file on a public partition like an SD Card 'secure' in the manner you describe - users will always be able to copy, delete, and potentially change the file.</p>
<p>The best solution to your problem is to look into ways to encrypt your database to record it securely. You won't be able to prevent users from deleting or copying the file, but you should be able to make it difficult for them to read data from it or modify its contents.</p>
http://stackoverflow.com/questions/1124548/how-to-pass-the-values-from-one-activity-to-previous-activity/1124988#11249886Answer by Reto Meier for How to pass the values from one activity to previous activityReto Meier2009-07-14T12:14:00Z2009-07-14T12:14:00Z<p>To capture actions performed on one Activity within another requires three steps.</p>
<p>Launch the secondary Activity (your 'Edit Text' Activity) as a subactivity by using <code>startActivityForResult</code> from your main Activity.</p>
<pre><code>Intent i = new Intent(this,TextEntryActivity.class);
startActivityForResult(i, STATIC_INTEGER_VALUE);
</code></pre>
<p>Within the subactivity, rather than just closing the Activity when a user clicks the button, you need to create a new Intent and include the entered text value in its extras bundle. To pass it back to the parent call <code>setResult</code> before calling <code>finish</code> to close the secondary Activity.</p>
<pre><code>resultIntent = new Intent(null);
resultIntent.putExtra(PUBLIC_STATIC_STRING_IDENTIFIER, enteredTextValue);
setResult(Activity.RESULT_OK, resultIntent);
finish();
</code></pre>
<p>The final step is in the calling Activity, override <code>onActivityResult</code> to listen for callbacks from the text entry Activity. Get the extra from the returned Intent to get the text value you should be displaying.</p>
<pre><code>@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch(requestCode) {
case (STATIC_INTEGER_VALUE) : {
if (resultCode == Activity.RESULT_OK) {
String newText = data.getStringExtra(PUBLIC_STATIC_STRING_IDENTIFIER);
// TODO Update your TextView.
}
break;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1114287/good-book-for-beginning-android-development/1116006#11160063Answer by Reto Meier for Good book for beginning android developmentReto Meier2009-07-12T13:01:59Z2009-07-12T15:44:26Z<p>There's a lot of excellent resources both online and in printed form. I've listed a bunch of them in answer to another Stack Overflow question: <a href="http://stackoverflow.com/questions/949818/how-can-i-learn-android/952617#952617">How Can I Learn Android?</a></p>
<p>I'd start with the <a href="http://developer.android.com/guide/index.html" rel="nofollow">Developer's Guide</a> on the Android Developers site. It explains all the fundamentals and includes several worked examples that can help introduce you to how the various Android features fit together. The <a href="http://developer.android.com/guide/samples/index.html" rel="nofollow">sample Code</a> section provides a bunch of working Android applications that should help you get a feel for Java and Android.</p>
<p>If books are more your thing there's a bunch of Android titles, though most assume at least a working knowledge of Java syntax. I'll take the opportunity to personally vouch for my own title, <a href="http://rads.stackoverflow.com/amzn/click/0470344717" rel="nofollow">Professional Android Application Development</a>.</p>
http://stackoverflow.com/questions/1113606/does-anyone-know-whether-the-android-addproximityalert-on-the-locationmanager-is/1115998#11159981Answer by Reto Meier for Does anyone know whether the Android addProximityAlert on the LocationManager is battery intensive.Reto Meier2009-07-12T12:57:35Z2009-07-12T12:57:35Z<p>This will definitely eat your battery real quick. You never want to be setting more than a couple of proximity alerts in any case, the use-case you describe isn't really catered for in Proximity Alerts. </p>
<p>Proximity Alerts should switch between GPS and Network as required, but in my experience they tend to stick to GPS whenever it's available, and your battery will suffer as a result.</p>
<p>A better alternative would be to use an Alarm and a Service to check your current location against your set of 20 to 80 locations as required. This will let you manage the LBS you want to use (GPS or Cell ID), as well as the frequency of checks, all in one place. Doing it this way will let you manage your battery use much more effectively.</p>
http://stackoverflow.com/questions/1109022/how-to-close-hide-the-android-soft-keyboard/1109108#11091089Answer by Reto Meier for How to close/hide the Android Soft Keyboard?Reto Meier2009-07-10T11:52:00Z2009-07-10T11:52:00Z<p>You can force Android to hide the virtual keyboard using the <a href="http://developer.android.com/reference/android/view/inputmethod/InputMethodManager.html" rel="nofollow">InputMethodManager</a>, calling <code>hideSoftInputFromWindow</code>, passing in the token of the window containing your edit field.</p>
<pre><code>InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
</code></pre>
<p>This will force the keyboard to be hidden in all situations. In some cases you will want to pass in <code>InputMethodManager.HIDE_IMPLICIT_ONLY</code> as the second parameter to ensure you only hide the keyboard when the user didn't explicitly force it to appear (by holding down menu).</p>
http://stackoverflow.com/questions/1088810/how-to-communicate-between-android-tabs/1090800#10908002Answer by Reto Meier for How to communicate between Android tabsReto Meier2009-07-07T07:17:31Z2009-07-07T07:17:31Z<p>You <em>definitely</em> want to reconsider using Activities as the content of your tabs. The more standard approach is to use one Activity that uses Tabs to only show part of the layout when a particular tab is selected.</p>
<p>The Android documentation has an excellent worked example, check out <a href="http://developer.android.com/guide/tutorials/views/hello-tabwidget.html" rel="nofollow">Hello, TabWidget</a>.</p>
<p><strong>Alternative</strong></p>
<p>If for some reason you do need to use Activities, you can pass information between them by either adding values to the extras bundle within the Intent your using to open each Activity, or by extending the <a href="http://developer.android.com/reference/android/app/Application.html" rel="nofollow">Application</a> class. </p>
<p>By extending the Application class (and implementing it as a Singleton) you get an object that will exist whenever any of your application components exist, providing a centralized place to store and transfer complex object data between application components.</p>
http://stackoverflow.com/questions/1068121/android-how-to-release-resources-when-the-application-terminates/1079940#10799401Answer by Reto Meier for Android: How to release resources when the application terminates?Reto Meier2009-07-03T15:55:03Z2009-07-03T15:55:03Z<p>It sounds as though your application is never calling release on the <code>Wakelock</code> - is it possible that it's throwing an exception earlier in <code>onStop</code> or <code>onPause</code>? I'd include some logging where you're calling release to confirm it's being executed.</p>
<p>In any case, you'll definitely want to move the <code>acquire</code> and <code>release</code> methods into <code>onResume</code> and <code>onPause</code> respectively. The code you've got will only acquire the WakeLock the first time your application is started. </p>
<p>Thanks the Android's background processing your code has a potential imbalance. If the user presses the home key to switch applications the lock will be released. If they switch back to your app onCreate won't be called, so the lock will never be acquired.</p>
<p>Your best bet is to construct the WakeLock in onCreate (as you have), acquire the lock in onResume and release it in onPause (including the call to isHeld). This will guarantee that the lock will be held whenever your application is in the foreground.</p>
http://stackoverflow.com/questions/1079475/showing-dialog-from-run-method/1079777#10797772Answer by Reto Meier for showing dialog from run methodReto Meier2009-07-03T15:06:43Z2009-07-03T15:06:43Z<p>It's hard to tell from the code snippet you've provided, but I think you're using the Handler incorrectly.</p>
<p>What you need to do is initialize a new <code>Handler</code> object on them main thread, for example by defining it as a field variable.</p>
<pre><code>private Handler handler = new Handler();
</code></pre>
<p>Then create a new <code>Runnable</code> that includes the instructions you want to execute on the GUI thread (but which will be called from your background thread's <code>run</code> method).</p>
<pre><code>private Runnable runOnGUI = new Runnable() {
private void run() {
showDialog(DIALOG1_KEY);
}
};
</code></pre>
<p>Then within your run method you need use the handler object to post your <code>runOnGUI</code> method on the GUI thread.</p>
<pre><code>private Runnable runInBackground = new Runnable() {
private void run() {
handler.post(runOnGUI);
// Do processing
}
};
</code></pre>
http://stackoverflow.com/questions/1077357/can-the-android-drawable-directory-contain-subdirectories/1078988#10789882Answer by Reto Meier for Can The Android drawable directory contain subdirectories?Reto Meier2009-07-03T11:37:26Z2009-07-03T11:37:26Z<p>No, the resources mechanism doesn't support subfolders in the drawable directory, so yes - you need to keep that hierarchy flat.</p>
<p>The directory layout you showed would result in none of the images being available.</p>
<p>From my own experiments it seems that having a subfolder with any items in it, within the <code>res/drawable</code> folder, will cause the resource compiler to fail -- preventing the <code>R.java</code> file from being generated correctly.</p>
http://stackoverflow.com/questions/1077688/how-to-do-client-server-communication-in-android/1078534#10785341Answer by Reto Meier for How to do Client server communication in Android?Reto Meier2009-07-03T09:22:11Z2009-07-03T09:22:11Z<p>What sort of information do you want to send between the emulators?</p>
<p>You can transmit SMS messages, or simulate phone calls, from one emulator to another using the target emulator's console port number as the number to dial. The Android Developer Site describes the process in more detail under "<a href="http://developer.android.com/guide/developing/tools/emulator.html#calling" rel="nofollow">Sending a Voice Call or SMS to Another Emulator Instance</a>"</p>
<p>If you want to transmit data, unfortunately Android doesn't currently provide any P2P or Instant Messaging APIs, so there's no generic technique available through the SDK you can use. </p>
<p>Your best alternative is to create your own server-based solution (or your own P2P API, though that might be a little more complicated).</p>
http://stackoverflow.com/questions/1043322/why-do-i-get-access-denied-to-data-folder-when-using-adb/1043722#10437221Answer by Reto Meier for Why do I get access denied to data folder when using adb?Reto Meier2009-06-25T12:50:31Z2009-06-25T12:50:31Z<p>There are two things to remember if you want to browse everything on your device.</p>
<ol>
<li>You need to have a phone with root access in order to browse the data folder on an Android phone. That means either you have a developer device (<a href="http://android.brightstarcorp.com/" rel="nofollow">ADP1</a> or an <a href="http://www.engadget.com/2009/05/27/google-ion-hands-on-and-unboxing/" rel="nofollow">ION</a> from Google I/O) or you've found a way to 'root' your phone some other way.</li>
<li>You need to be running ADB in root mode, do this by executing: <code>adb root</code></li>
</ol>
http://stackoverflow.com/questions/987072/using-application-context-everywhere/987503#9875033Answer by Reto Meier for Using Application context everywhere?Reto Meier2009-06-12T16:00:30Z2009-06-12T16:00:30Z<p>There are a couple of potential problems with this approach, though in a lot of circumstances (such as your example) it will work well.</p>
<p>In particular you should be careful when dealing with anything that deals with the GUI that requires a Context. For example, if you pass the application Context into the <code>LayoutInflator</code> you will get an Exception. Generally speaking, you're approach is excellent: it's good practice to use an Activity's Context within that Activity, and the Application Context when passing a context beyond the scope of an Activity to <a href="http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks.html" rel="nofollow">avoid memory leaks</a>.</p>
<p>Also, as an alternative to your pattern you can use the shortcut of calling <code>getApplicationContext()</code> on a Context object (such as an Activity) to get the Application Context.</p>
http://stackoverflow.com/questions/985793/does-android-cupcake-already-use-skyhook-wireless-for-localization/985857#9858573Answer by Reto Meier for Does Android (Cupcake) already use Skyhook Wireless for localization?Reto Meier2009-06-12T09:40:28Z2009-06-12T09:40:28Z<p>It isn't Skyhook but it does the same sort of thing.</p>
<p>Android uses a Google technology similar to what Skyhook offer to calculate your current location using Cell ID and WiFi hotspots. They've been using the same technology to power the 'My Location' option in Google Maps for Mobile for a while (<a href="http://googlemobile.blogspot.com/2008/06/google-enables-location-aware.html" rel="nofollow">more details on their blog</a>).</p>
<p>One of the advantages of using the native Android Location-Based Services is that you can write your app so that it uses either GPS or 'Wireless' depending on your choice, user preferences, available hardware, or a set of <a href="http://developer.android.com/reference/android/location/LocationManager.html#getProviders%28android.location.Criteria,%20boolean%29" rel="nofollow">criteria you specify</a> (including power-cost or accuracy).</p>
http://stackoverflow.com/questions/961944/overlapping-views-in-android/965641#9656413Answer by Reto Meier for Overlapping Views in AndroidReto Meier2009-06-08T15:59:36Z2009-06-08T16:09:17Z<p>Android handles transparency across views and drawables (including PNG images) natively, so the scenario you describe (a partially transparent <code>ImageView</code> in front of a Gallery) is certainly possible.</p>
<p>If you're having problems it may be related to either the layout or your image. I've replicated the layout you describe and successfully achieved the effect you're after. Here's the exact layout I used.</p>
<pre><code><RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallerylayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery
android:id="@+id/overview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/navigmaske"
android:background="#0000"
android:src="@drawable/navigmask"
android:scaleType="fitXY"
android:layout_alignTop="@id/overview"
android:layout_alignBottom="@id/overview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<RelativeLayout/>
</code></pre>
<p>Note that I've changed the parent <code>RelativeLayout</code> to a height and width of <code>fill_parent</code> as is generally what you want for a main Activity. Then I've aligned the top and bottom of the <code>ImageView</code> to the top and bottom of the <code>Gallery</code> to ensure it's centered in front of it. </p>
<p>I've also explicitly set the background of the <code>ImageView</code> to be transparent, </p>
<p>As for the image drawable itself, if you put the PNG file somewhere for me to look at I can use it in my project and see if it's responsible.</p>
http://stackoverflow.com/questions/959969/trouble-installing-the-new-android-sdk/961678#9616780Answer by Reto Meier for Trouble Installing the new Android SDKReto Meier2009-06-07T10:41:55Z2009-06-07T10:41:55Z<p>Once you've installed the ADT plugin for Eclipse, you need to tell it where the SDK is.</p>
<p>From the menu bar select <em>Eclipse</em> > <em>Preferences</em>, then pick the <em>Android</em> item on the left panel and enter the path to the SDK installation in the text box before hitting the <em>Apply</em> button.</p>
http://stackoverflow.com/questions/954249/can-anyone-give-sample-code-for-tabhost-in-android/954526#9545261Answer by Reto Meier for can anyone give sample code for TabHost in Android?Reto Meier2009-06-05T06:37:55Z2009-06-05T06:37:55Z<p>The Android Developer site has an excellent fully worked code sample for creating tabs in Android using the <code>TabWidget</code> and <code>TabHost</code>.</p>
<p>Check out <a href="http://developer.android.com/guide/tutorials/views/hello-tabwidget.html" rel="nofollow">Hello, TabWidget</a>. </p>
http://stackoverflow.com/questions/949818/how-can-i-learn-android/952617#9526176Answer by Reto Meier for How can I learn Android??Reto Meier2009-06-04T19:25:54Z2009-06-04T19:25:54Z<p>If you're a relatively experienced developer it shouldn't take too much effort to migrate to Android / Java. Android uses Java language, but runs on a custom Dalvik VM rather than a Java VM, so knowing Java really just gives you a headstart on the language syntax and common libraries.</p>
<p>Practically speaking, with Android being available for over a year now there's a bunch of useful resources available.</p>
<p>I'd start with the <a href="http://developer.android.com/guide/index.html" rel="nofollow">Developer's Guide</a> on the Android Developers site. It explains all the fundamentals and includes several worked examples that can help introduce you to how the various Android features fit together. The <a href="http://developer.android.com/guide/samples/index.html" rel="nofollow">Sample Code</a> section provides a bunch of working Android applications that should help you get a feel for Java and Android.</p>
<p>If books are more your thing there's a bunch of Android titles, though most assume at least a working knowledge of Java syntax, including:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0470344717" rel="nofollow">Professional Android Application Development</a>*</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0596521472" rel="nofollow">Android Application Development: Programming with the Google SDK</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0981678009" rel="nofollow">The Busy Coder's Guide to Android Development</a></li>
</ul>
<p>** DISCLAIMER: I wrote this particular book.*</p>
<p>If that's all too much Java, it's worth <a href="http://www.google.com/search?q=java%2Bfor%2Bc%2B%2B%2Bprogrammers" rel="nofollow">scouting the net</a> for some C/C++ to Java sites. Alternatively there are <a href="http://www.amazon.com/s/ref=nb%5Fss%5Fb?url=search-alias%3Dstripbooks&field-keywords=java&x=0&y=0" rel="nofollow">hundreds of titles on Amazon</a> the give a good introduction to Java including <a href="http://rads.stackoverflow.com/amzn/click/0596009208" rel="nofollow">Head First Java</a> that seems to be very popular and gets some very good reviews.</p>
<p>My style for learning new languages is to create working applications in that language, so there's no particular reason you can't do that with an Android project. Personally, my background before Android was C# .NET, with a little Java knowledge from my University days, and I found the transition quite straight forward.</p>
http://stackoverflow.com/questions/906684/android-get-highest-value-in-column/947986#9479862Answer by Reto Meier for Android: Get highest value in columnReto Meier2009-06-04T00:20:11Z2009-06-04T00:20:11Z<p>If you're querying an Android content provider, you should be able to achieve this by passing <code>MAX(COLUMN_NAME)</code> in to the selection parameter of <code>ContentResolver.query</code>:</p>
<pre><code>getContentResolver().query(uri, projection, "MAX(COLUMN_NAME)", null, sortOrder);
</code></pre>
<p>Where Uri is the address of the content provider. This should return the single row with the highest value in COLUMN_NAME.</p>
http://stackoverflow.com/questions/906850/addproximityalert-doesnt-work-neither-does-requestlocationupdates-android/947859#9478590Answer by Reto Meier for addProximityAlert doesn't work (neither does requestLocationUpdates) - AndroidReto Meier2009-06-03T23:38:47Z2009-06-03T23:38:47Z<p>I think the problem is how you define you Intent / PendingIntent. There are two ways to start an Activity using an Intent, and the code you've included looks like a cross between the two.</p>
<p>The standard way of starting an Activity is to use the Intent constructor that takes the current context and the Activity's class and use the <code>getActivity</code> method on <code>PendingIntent</code> to create the PendingIntent:</p>
<pre><code>Intent intent = new Intent(this, ProximityAlert.class);
PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent, 0);
</code></pre>
<p>Alternatively, you can add an <code>IntentReceiver</code> to your Activity in the Manifest, with an IntentFilter that listens for a particular action (like "eu.mauriziopz.gps.ProximityAlert"). However, in that case you need to use <code>PendingIntent.getBroadcast</code> to create the PendingIntent.</p>
<pre><code>Intent intent = new Intent("eu.mauriziopz.gps.ProximityAlert");
PendingIntent pIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
</code></pre>
<p>In all cases you need to make sure you've got the correct permissions for location-based services defined in your manifest:</p>
<pre><code><uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
</code></pre>
<p><hr /></p>
<p>Also, rather than using the string "gps", you might consider using the static constant <code>LocationManager.GPS_PROVIDER</code>.</p>
http://stackoverflow.com/questions/920306/sending-data-back-to-the-main-activity-in-android/947560#9475601Answer by Reto Meier for Sending data back to the Main Activity in androidReto Meier2009-06-03T22:14:57Z2009-06-03T22:14:57Z<p>There are a couple of ways to achieve what you want, depending on the circumstances. </p>
<p>The most common scenario (which is what yours sounds like) is when a child Activity is used to get user input - such as choosing a contact from a list or entering data in a dialog box. In this case you should use <code>startActivityForResult</code> to launch your child Activity.</p>
<p>This provides a pipeline for sending data back to the main Activity using <code>setResult</code>. The setResult method takes an int result value and an Intent that is passed back to the calling Activity.</p>
<pre><code>Intent resultIntent = new Intent();
// TODO Add extras or a data URI to this intent as appropriate.
setResult(Activity.RESULT_OK, resultIntent);
finish();
</code></pre>
<p>To access the returned data in the calling Activity override <code>onActivityResult</code>. The requestCode corresponds to the integer passed in in the <code>startActivityForResult</code> call, while the resultCode and data Intent are returned from the child Activity.</p>
<pre><code>@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch(requestCode) {
case (MY_CHILD_ACTIVITY) : {
if (resultCode == Activity.RESULT_OK)
// TODO Extract the data returned from the child Activity.
}
break;
}
}
}
</code></pre>
http://stackoverflow.com/questions/922819/when-should-i-use-each-of-androids-different-messaging-types/947440#9474401Answer by Reto Meier for When should I use each of Android's different messaging types?Reto Meier2009-06-03T21:44:17Z2009-06-03T21:44:17Z<p>This is a pretty open ended question, but let me take a shot at describing how I see the intra/inter application communication working best.</p>
<p>One of the key aspects of Android messaging is the concept of all application components being loosely bound. Because all applications run in a separate process, and one 'app' may actually consist of several applications (responsible for providing different Activities or Services), the messaging techniques are all based around the idea of marshaling messages across process boundaries.</p>
<p><strong>Intents</strong></p>
<p>The preferred technique for messaging, always try to use an Intent whenever possible. It is the most 'native' way to transfer messages within Android.</p>
<p><em>Advantages</em></p>
<p>Using Intents for messaging maintains the loose binding of application components, letting you transfer messages seamlessly between several applications. Intents are used heavily within the core system to start Activities and Services, and to broadcast and receive system events.</p>
<p>Using extras Bundles you can include key/value pairs of primitives as payload data within Intents to easily pass information from one application component to another - even if those components are running in different processes.</p>
<p><em>Disadvantages</em></p>
<p>Because Intents are designed to go between processes, the extras payload only supports primitive types. If you need to send an object using an Intent you'll need to deconstruct it into primitives at one end and reconstruct it at the other.</p>
<p><strong>Application Class</strong></p>
<p>If you only want to communicate within a single application running in a single process this is a handy solution. </p>
<p><em>Advantages</em></p>
<p>By extending the <code>Application</code> class (and implementing it as a Singleton) you get an object that will exist whenever any of your application components exist, providing a centralized place to store and transfer complex object data between application components.</p>
<p><em>Disadvantages</em></p>
<p>This technique limits your messaging to components within a single application.</p>
<p><strong>Service Binding, IPC, and AIDL</strong></p>
<p>Binding to a service lets you access its methods and exchange objects with it. AIDL is a way of defining how to serialize an object into OS primitives so that it can be marshalled across process boundaries if the Service you're binding to is running in a separate application.</p>
<p><em>Advantages</em></p>
<p>When you bind to a Service you have access to it as though it was an object within the calling class. That means you can execute methods on the Service and exchange rich objects with it.</p>
<p>Note that if you're binding to a Service in a different application process you'll need to create the AIDL definitions that tell Android how to seralize / deserialize any objects you want to pass between applications.</p>
<p><em>Disadvantages</em></p>
<p>Creating the AIDL classes for IPC is a bit of extra work, and binding creates additional dependencies between Services and Activities which can make it harder for the kernel to clean up resources when other applications are being starved.</p>
<p>Marshelling messages across process boundaries is expensive though. So if you're not executing methods on a Service, using binding and IPC is probably overkill - see if you can achieve the same thing using Intents.</p>
<p><strong>Sockets</strong></p>
<p>If you're resorting to sockets to communicate within or between applications running on a single device, it's either because there's no other way or you've missed a trick somewhere. If your messages are leaving the device then sockets are a good, fast, alternative. If you're staying on the device chances are Intents or IPC is going to be a better option.</p>
http://stackoverflow.com/questions/930458/complete-way-to-compile-complex-native-applications-to-android-arm/946522#9465221Answer by Reto Meier for Complete Way to Compile Complex Native Applications to Android ARMReto Meier2009-06-03T18:58:46Z2009-06-03T18:58:46Z<p>At Google I/O they talked about introducing an "NDK" -- native development kit -- that should simplify the process of creating applications that use native (C) code.</p>
<p>It's worth noting a couple of things before you go too far down this route:</p>
<ol>
<li>The NDK will provide limited functionality. It will be primarily intended to offer a way to run extremely time-sensitive code natively, but won't have access to the full system, nor will it provide an alternative application development model (you'll still need to write most of your app for Dalvik).</li>
<li>You can write native apps without the NDK, but you won't be able to distribute them to end-users using the conventional APK application package supported by the app store. It's really only a viable option if your app is being distributed as part of the carrier / OEM build - and even then isn't recommended.</li>
</ol>
http://stackoverflow.com/questions/937307/in-an-expandablelistview-how-can-i-show-one-additional-line-at-the-end-of-the-ch/946425#9464251Answer by Reto Meier for In an ExpandableListView, how can I show one additional line at the end of the child results?Reto Meier2009-06-03T18:40:53Z2009-06-03T18:40:53Z<p>Perhaps you could try a slightly different approach. </p>
<p>Rather than trying to add an extra item to the ListView directly, maybe try adding an 'AlternateChild' object to the underlying data source using a 'isAlternateChild' flag (or subclassing <code>NormalChild</code> or creating an <code>IChild</code> interface that you extend with <code>NormalChild</code> and <code>AlternateChild</code>. </p>
<p>Then within <code>getChildView</code> you can check to see if the object being displayed within the view is normal or alernate and create or populate the appropriate View-type accordingly.</p>
<p>By adding your extra object to the underlying data/list directly you can let the ExtendedListView do it's thing normally. As an added bonus this means you can make the AlternateChild data dynamic and easily make changes to the data displayed in the view by modifying the corresponding object.</p>
http://stackoverflow.com/questions/939170/resources-openrawresource-issue-android/945879#9458790Answer by Reto Meier for Resources.openRawResource() issue AndroidReto Meier2009-06-03T17:03:54Z2009-06-03T17:03:54Z<p>Yes, you should be able to use <code>openRawResource</code> to copy a binary across from your raw resource folder to the device.</p>
<p>Based on the example code in the API demos (content/ReadAsset), you should be able to use a variation of the following code snippet to read the db file data.</p>
<pre><code>InputStream ins = getResources().openRawResource(R.raw.my_db_file);
int size = ins.available();
// Read the entire resource into a local byte buffer.
byte[] buffer = new byte[size];
ins.read(buffer);
ins.close();
</code></pre>
<p>A copy of your file should now exist in <code>buffer</code>, so you can use a <code>FileOutputStream</code> to save the buffer to a new file.</p>
<pre><code>FileOutputStream fos = new FileOutputStream("mycopy.db");
fos.write(buffer);
fos.close();
</code></pre>
http://stackoverflow.com/questions/943944/two-color-horizontal-line-in-android/945683#9456832Answer by Reto Meier for Two-color horizontal line in AndroidReto Meier2009-06-03T16:23:07Z2009-06-03T16:23:07Z<p>The best approach here is to convert the image you have shown as a <a href="http://developer.android.com/guide/developing/tools/draw9patch.html" rel="nofollow">9-patch</a>, add it to the res/drawable folder as a resource and display it within your layout using an <code>ImageView</code>, setting <code>android:width="fill_parent"</code>.</p>
<p>9-patch images let you specify an area of the image to stretch when the image is resized (in this case the entire image - though you may want to consider 'fading out' the line at its edges to conform to some of the native Android styles).</p>
<p>Within your layout file the ImageView definition would look something like this:</p>
<pre><code><ImageView
android:src="@drawable/my_separater_nine_patch"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
/>
</code></pre>
http://stackoverflow.com/questions/876082/what-are-the-pros-and-cons-to-use-iphone-android-phones-to-write-scripts/877887#8778872Answer by Reto Meier for What are the pros and cons to use iPhone/Android phones to write scripts?Reto Meier2009-05-18T14:01:08Z2009-05-18T14:01:08Z<p>It's possible to <a href="http://developer.android.com/reference/java/io/FileOutputStream.html" rel="nofollow">create files on the file system</a> using the Android SDK - without root access - both within your application sandbox or on the SD card.</p>
<p>It would theoretically be possible to write a program that compiles or executes those files, though trying to create a reasonable development environment for Android applications on an Android device is probably stretching your luck.</p>
http://stackoverflow.com/questions/866769/how-to-call-android-contacts-list/867828#8678287Answer by Reto Meier for How to call Android contacts list?Reto Meier2009-05-15T09:59:25Z2009-05-15T09:59:25Z<p>I'm not 100% sure what your sample code is supposed to do, but the following snippet should help you 'call the contacts list function, pick a contact, then return to [your] app with the contact's name'.</p>
<p>There are three steps to this process.</p>
<p><strong>1) Permissions</strong></p>
<p>Add a permission to read contacts data to your application manifest.</p>
<pre><code><uses-permission android:name="android.permission.READ_CONTACTS"/>
</code></pre>
<p><strong>2) Calling the Contact Picker</strong></p>
<p>Within your Activity, create an Intent that asks the system to find an Activity that can perform a PICK action from the items in the Contacts URI.</p>
<pre><code>Intent intent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI);
</code></pre>
<p>Call <code>startActivityForResult</code>, passing in this Intent (and a request code integer, <code>PICK_CONTACT</code> in this example). This will cause Android to launch an Activity that's registered to support <code>ACTION_PICK</code> on the <code>People.CONTENT_URI</code>, then return to this Activity when the selection is made (or canceled).</p>
<pre><code>startActivityForResult(intent, PICK_CONTACT);
</code></pre>
<p><strong>3) Listening for the Result</strong></p>
<p>Also in your Activity, override the <code>onActivityResult</code> method to listen for the return from the 'select a contact' Activity you launched in step 2. You should check that the returned request code matches the value you're expecting, and that the result code is <code>RESULT_OK</code>.</p>
<p>You can get the URI of the selected contact by calling <code>getData()</code> on the <em>data</em> Intent parameter. To get the name of the selected contact you need to use that URI to create a new query and extract the name from the returned cursor.</p>
<pre><code>@Override
public void onActivityResult(int reqCode, int resultCode, Intent data) {
super.onActivityResult(reqCode, resultCode, data);
switch (reqCode) {
case (PICK_CONTACT) :
if (resultCode == Activity.RESULT_OK) {
Uri contactData = data.getData();
Cursor c = managedQuery(contactData, null, null, null, null);
if (c.moveToFirst()) {
String name = c.getString(c.getColumnIndexOrThrow(People.NAME));
// TODO Whatever you want to do with the selected contact name.
}
}
break;
}
}
</code></pre>
http://stackoverflow.com/questions/785973/what-is-the-most-appropriate-way-to-store-user-settings-in-android-application/786588#7865885Answer by Reto Meier for What is the most appropriate way to store user settings in Android applicationReto Meier2009-04-24T16:20:35Z2009-04-24T16:20:35Z<p>In general SharedPreferences are your best bet for storing preferences, so in general I'd recommend that approach for saving application and user settings.</p>
<p>The only area of concern here is what you're saving. Passwords are always a tricky thing to store, and I'd be particularly wary of storing them as clear text. The Android architecture is such that your application's SharedPreferences are sandboxed to prevent other applications from being able to access the values so there's some security there, but physical access to a phone could potentially allow access to the values.</p>
<p>If possible I'd consider modifying the server to use a negotiated token for providing access, something like <a href="http://code.google.com/p/oauth/" rel="nofollow">OAuth</a>. Alternatively you may need to construct some sort of cryptographic store, though that's non-trivial. At the very least, make sure you're encrypting the password before writing it to disk.</p>
http://stackoverflow.com/questions/10256/android-development/10867#10867Comment by Reto Meier on Android DevelopmentReto Meier2009-10-27T11:07:34Z2009-10-27T11:07:34ZGood point. Updated.http://stackoverflow.com/questions/866769/how-to-call-android-contacts-list/961386#961386Comment by Reto Meier on How to call Android contacts list?Reto Meier2009-07-30T21:40:41Z2009-07-30T21:40:41ZIt's probably worth asking this as a separate question.http://stackoverflow.com/questions/1077924/multiple-toggle-buttonsComment by Reto Meier on Multiple Toggle Buttons.Reto Meier2009-07-03T09:28:04Z2009-07-03T09:28:04ZAny chance you can share some code with us? It sounds like you're using the same event listener for all the button clicks - can you show us 'all the methods' for two buttons?http://stackoverflow.com/questions/1077415/is-android-development-restrictive-in-any-way-like-iphone/1077522#1077522Comment by Reto Meier on Is Android development restrictive in any way like iphone?Reto Meier2009-07-03T09:25:12Z2009-07-03T09:25:12ZYou don't need to use adb to install APKs. If you point the Android browser at an APK file hosted on a website it will let you download and install it directly.http://stackoverflow.com/questions/990217/android-app-with-service-only/990797#990797Comment by Reto Meier on android app with service onlyReto Meier2009-06-14T09:30:41Z2009-06-14T09:30:41ZIt could, but it's unnecessary. If Android kills a service it will automatically restart it once the resources become available - so there's no need to manually restart it.http://stackoverflow.com/questions/987072/using-application-context-everywhere/987486#987486Comment by Reto Meier on Using Application context everywhere?Reto Meier2009-06-12T16:01:47Z2009-06-12T16:01:47ZThe approach you're suggesting is pretty likely to cause the memory leaks the blog post you link to describes. The context returned by the View object will be for the Activity rather than the Application.http://stackoverflow.com/questions/961944/overlapping-views-in-androidComment by Reto Meier on Overlapping Views in AndroidReto Meier2009-06-07T17:09:06Z2009-06-07T17:09:06ZWhat you've got should work -- Are you sure the Gallery has visible contents and that the navigmaske drawable is a PNG with transparency?http://stackoverflow.com/questions/939170/resources-openrawresource-issue-android/945879#945879Comment by Reto Meier on Resources.openRawResource() issue AndroidReto Meier2009-06-04T04:30:42Z2009-06-04T04:30:42ZNo problem! Accept the answer and we're even :)http://stackoverflow.com/questions/925415/how-do-i-create-an-auto-run-dialog-themed-activity-in-android-1-5-cupcakeComment by Reto Meier on How do I create an auto-run Dialog themed Activity in Android 1.5 (Cupcake)?Reto Meier2009-06-03T21:08:44Z2009-06-03T21:08:44ZI'm not seeing similar behaviour (setting the theme in the manifest works fine for me). Could you maybe post the Layout file for the popup Activity? http://stackoverflow.com/questions/623225/android-go-to-settings-screen/623399#623399Comment by Reto Meier on android - go to settings screenReto Meier2009-03-09T09:48:27Z2009-03-09T09:48:27ZExecuting the Intent statement will let the user set the ringtone -- your app won't have to do anything to handle it separately.http://stackoverflow.com/questions/621216/android-override-explicit-intentComment by Reto Meier on Android Override Explicit IntentReto Meier2009-03-08T11:20:36Z2009-03-08T11:20:36ZI'm not quite sure what you're trying to achieve Isaac. Could you try and explain further what you need the Intent-Filter to do?http://stackoverflow.com/questions/540461/android-baseadapter-how-toComment by Reto Meier on Android : BaseAdapter how to?Reto Meier2009-02-12T11:26:10Z2009-02-12T11:26:10ZCould you provide a little more detail on what you're trying to achieve / what's not working as you expect. What does the code you've shown do when you run it? How is that different from what you're trying to do?http://stackoverflow.com/questions/472313/android-reverse-geocoding-getfromlocation/475001#475001Comment by Reto Meier on Android: Reverse geocoding - getFromLocationReto Meier2009-01-24T11:40:11Z2009-01-24T11:40:11ZCould be a permissions problem. The geocoder uses the internet to do the lookups so you need an Internet uses-permission. Updated the answer with details.http://stackoverflow.com/questions/472313/android-reverse-geocoding-getfromlocation/472463#472463Comment by Reto Meier on Android: Reverse geocoding - getFromLocationReto Meier2009-01-23T16:58:33Z2009-01-23T16:58:33ZNo worries, I didn't spot it first time either :)http://stackoverflow.com/questions/472313/android-reverse-geocoding-getfromlocation/472873#472873Comment by Reto Meier on Android: Reverse geocoding - getFromLocationReto Meier2009-01-23T13:33:05Z2009-01-23T13:33:05ZThis might be a typo, but have you missed out the 'new' keyword? I've updated my answer to explain what I mean.