summaryrefslogtreecommitdiff
path: root/core/java/android/widget/ArrayAdapter.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-08-02 17:30:33 -0700
committerDianne Hackborn <hackbod@google.com>2010-08-03 11:18:23 -0700
commitb1ad5977bc8178b6d350ebe9099daded4c1ef603 (patch)
tree89acc2cb818bf5acbb18a4614c6313df95c013f0 /core/java/android/widget/ArrayAdapter.java
parentee9907b4619ea9f3551ee7f5a2c5a803e3ee636c (diff)
New two-pane mode for PreferenceActivity.
This introduces a whole new way to use PreferenceActivity, as a container for PreferenceFragments that the user can switch between from a list of headers. Change-Id: I1c79b7c78b86790dc460a1414a999aba5de80628
Diffstat (limited to 'core/java/android/widget/ArrayAdapter.java')
-rw-r--r--core/java/android/widget/ArrayAdapter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/widget/ArrayAdapter.java b/core/java/android/widget/ArrayAdapter.java
index 03ada94d667e..b4ece241ec03 100644
--- a/core/java/android/widget/ArrayAdapter.java
+++ b/core/java/android/widget/ArrayAdapter.java
@@ -30,17 +30,17 @@ import java.util.Comparator;
import java.util.Collections;
/**
- * A ListAdapter that manages a ListView backed by an array of arbitrary
+ * A concrete BaseAdapter that is backed by an array of arbitrary
* objects. By default this class expects that the provided resource id references
* a single TextView. If you want to use a more complex layout, use the constructors that
* also takes a field id. That field id should reference a TextView in the larger layout
* resource.
*
- * However the TextView is referenced, it will be filled with the toString() of each object in
+ * <p>However the TextView is referenced, it will be filled with the toString() of each object in
* the array. You can add lists or arrays of custom objects. Override the toString() method
* of your objects to determine what text will be displayed for the item in the list.
*
- * To use something other than TextViews for the array display, for instance, ImageViews,
+ * <p>To use something other than TextViews for the array display, for instance, ImageViews,
* or to have some of data besides toString() results fill the views,
* override {@link #getView(int, View, ViewGroup)} to return the type of view you want.
*/