From edbabeb7fabfb3c7793b565cdaaf656e5e332efe Mon Sep 17 00:00:00 2001 From: Romain Guy <> Date: Tue, 24 Mar 2009 19:46:34 -0700 Subject: [PATCH] Automated import from //branches/cupcake/...@142469,142469 --- core/java/android/app/AlertDialog.java | 11 ++++++- .../android/internal/app/AlertController.java | 32 ++++++++++++++++--- .../internal/view/menu/MenuDialogHelper.java | 11 ++++--- core/res/res/layout/select_dialog.xml | 3 +- 4 files changed, 46 insertions(+), 11 deletions(-) diff --git a/core/java/android/app/AlertDialog.java b/core/java/android/app/AlertDialog.java index f2b89c371e8ee..021dc2e39f210 100644 --- a/core/java/android/app/AlertDialog.java +++ b/core/java/android/app/AlertDialog.java @@ -763,7 +763,16 @@ public class AlertDialog extends Dialog implements DialogInterface { P.mForceInverseBackground = useInverseBackground; return this; } - + + /** + * @hide + */ + public Builder setRecycleOnMeasureEnabled(boolean enabled) { + P.mRecycleOnMeasure = enabled; + return this; + } + + /** * Creates a {@link AlertDialog} with the arguments supplied to this builder. It does not * {@link Dialog#show()} the dialog. This allows the user to do any extra processing diff --git a/core/java/com/android/internal/app/AlertController.java b/core/java/com/android/internal/app/AlertController.java index b330a1862174c..57dbb449288f6 100644 --- a/core/java/com/android/internal/app/AlertController.java +++ b/core/java/com/android/internal/app/AlertController.java @@ -17,7 +17,6 @@ package com.android.internal.app; import static android.view.ViewGroup.LayoutParams.FILL_PARENT; -import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; @@ -49,6 +48,7 @@ import android.widget.ScrollView; import android.widget.SimpleCursorAdapter; import android.widget.TextView; import android.widget.AdapterView.OnItemClickListener; +import android.util.AttributeSet; import com.android.internal.R; @@ -672,7 +672,28 @@ public class AlertController { } } } - + + public static class RecycleListView extends ListView { + boolean mRecycleOnMeasure = true; + + public RecycleListView(Context context) { + super(context); + } + + public RecycleListView(Context context, AttributeSet attrs) { + super(context, attrs); + } + + public RecycleListView(Context context, AttributeSet attrs, int defStyle) { + super(context, attrs, defStyle); + } + + @Override + protected boolean recycleOnMeasure() { + return mRecycleOnMeasure; + } + } + public static class AlertParams { public final Context mContext; public final LayoutInflater mInflater; @@ -711,7 +732,8 @@ public class AlertController { public boolean mForceInverseBackground; public AdapterView.OnItemSelectedListener mOnItemSelectedListener; public OnPrepareListViewListener mOnPrepareListViewListener; - + public boolean mRecycleOnMeasure = true; + /** * Interface definition for a callback to be invoked before the ListView * will be bound to an adapter. @@ -787,7 +809,8 @@ public class AlertController { } private void createListView(final AlertController dialog) { - final ListView listView = (ListView) mInflater.inflate(R.layout.select_dialog, null); + final RecycleListView listView = (RecycleListView) + mInflater.inflate(R.layout.select_dialog, null); ListAdapter adapter; if (mIsMultiChoice) { @@ -886,6 +909,7 @@ public class AlertController { } else if (mIsMultiChoice) { listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE); } + listView.mRecycleOnMeasure = mRecycleOnMeasure; dialog.mListView = listView; } } diff --git a/core/java/com/android/internal/view/menu/MenuDialogHelper.java b/core/java/com/android/internal/view/menu/MenuDialogHelper.java index bc51cf3a385f9..88f7b2fe81b68 100644 --- a/core/java/com/android/internal/view/menu/MenuDialogHelper.java +++ b/core/java/com/android/internal/view/menu/MenuDialogHelper.java @@ -67,6 +67,10 @@ public class MenuDialogHelper implements DialogInterface.OnKeyListener, DialogIn // Set the key listener builder.setOnKeyListener(this); + + // Since this is for a menu, disable the recycling of views + // This is done by the menu framework anyway + builder.setRecycleOnMeasureEnabled(false); // Show the menu mDialog = builder.create(); @@ -97,11 +101,8 @@ public class MenuDialogHelper implements DialogInterface.OnKeyListener, DialogIn } // Menu shortcut matching - if (mMenu.performShortcut(keyCode, event, 0)) { - return true; - } - - return false; + return mMenu.performShortcut(keyCode, event, 0); + } /** diff --git a/core/res/res/layout/select_dialog.xml b/core/res/res/layout/select_dialog.xml index 8e48ae2a48209..249b5275986b3 100644 --- a/core/res/res/layout/select_dialog.xml +++ b/core/res/res/layout/select_dialog.xml @@ -23,7 +23,8 @@ This layout file is inflated and used as the ListView to display the items. Assign an ID so its state will be saved/restored. --> -