diff options
author | Adam Powell <adamp@google.com> | 2010-02-22 15:18:14 -0800 |
---|---|---|
committer | Adam Powell <adamp@google.com> | 2010-02-22 15:18:14 -0800 |
commit | 8e4e7263e5abdb83567ddff8fc09a21948ad21c8 (patch) | |
tree | ae4abb5335467762f6fa9d57e7b56cac62e0bad2 | |
parent | 33285c37abee6d95d0ac55cd7e9889cdc8d96d14 (diff) | |
download | frameworks_base-8e4e7263e5abdb83567ddff8fc09a21948ad21c8.zip frameworks_base-8e4e7263e5abdb83567ddff8fc09a21948ad21c8.tar.gz frameworks_base-8e4e7263e5abdb83567ddff8fc09a21948ad21c8.tar.bz2 |
Standard alert dialogs overscroll only when content scrolls
-rw-r--r-- | core/res/res/layout/alert_dialog.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/res/res/layout/alert_dialog.xml b/core/res/res/layout/alert_dialog.xml index 7ae68f9..25a41f8 100644 --- a/core/res/res/layout/alert_dialog.xml +++ b/core/res/res/layout/alert_dialog.xml @@ -80,7 +80,8 @@ android:paddingTop="2dip" android:paddingBottom="12dip" android:paddingLeft="14dip" - android:paddingRight="10dip"> + android:paddingRight="10dip" + android:overscrollMode="ifContentScrolls"> <TextView android:id="@+id/message" style="?android:attr/textAppearanceMedium" android:layout_width="match_parent" |