From 1480fddea874a42adb43b4bcdac6704e4c3e110b Mon Sep 17 00:00:00 2001 From: Adam Cohen Date: Wed, 25 Aug 2010 17:24:53 -0700 Subject: -> Added the ability to specify an AdapterView's empty view through RemoteViews. An empty view is the view that appears in lieu of the collection when the collection is empty. -> Made StackViews start at their last item Change-Id: Ica44e5e8f8f2a2e5589a6c74414ec4d08303887f --- core/java/android/widget/AdapterView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/java/android/widget/AdapterView.java') diff --git a/core/java/android/widget/AdapterView.java b/core/java/android/widget/AdapterView.java index 10a87295ccf5..e20fee5b38d4 100644 --- a/core/java/android/widget/AdapterView.java +++ b/core/java/android/widget/AdapterView.java @@ -228,7 +228,6 @@ public abstract class AdapterView extends ViewGroup { super(context, attrs, defStyle); } - /** * Interface definition for a callback to be invoked when an item in this * AdapterView has been clicked. @@ -629,6 +628,7 @@ public abstract class AdapterView extends ViewGroup { /** * Sets the view to show if the adapter is empty */ + @android.view.RemotableViewMethod public void setEmptyView(View emptyView) { mEmptyView = emptyView; -- cgit v1.2.3