Mathias Jeppsson
190acd4dd0
Fixing memory leak in PreferenceScreen.
...
Every time the PreferenceScreen is displayed a new ListView is
created and bound to the adapter. As the same adapter is used during
the lifetime of PreferenceScreen and the listviews never gets
unbound, the adapter will contain a list of unused views. The old view
should be unbound from adapter when we create a new view.
Change-Id: I13e2d0dc79c8ff79b58efa650653e3f84c6e53c5
2011-01-18 14:34:52 +01:00
Dirk Dougherty
9a143e6641
Doc change: fix busted link to DatePicker tutorial.
...
Change-Id: I957aa3bb4c0c91f195de99405cc8e1b5a5bc82f7
2011-01-17 20:09:46 -08:00
Jim Miller
21efbc0a1c
am c6d2a767: Merge "Fix 3303606: invalidate WaveView after resetting state" into honeycomb
...
* commit 'c6d2a767ce26014fee85ecbe81e1c439898f2ebc':
Fix 3303606: invalidate WaveView after resetting state
2011-01-17 20:01:09 -08:00
Dianne Hackborn
2d6dae2f4d
am 80ad0b0a: Merge "Fix a bunch of API review bugs." into honeycomb
...
* commit '80ad0b0aeb5a55d2e62aaaf18863253501b87b60':
Fix a bunch of API review bugs.
2011-01-17 20:00:20 -08:00
Adam Powell
0a753cd481
Merge "Fix bug 3357208 - List selector shows as dark black on first pressed state" into honeycomb
2011-01-17 18:54:13 -08:00
Adam Powell
e0fd2eb2f1
Fix bug 3357208 - List selector shows as dark black on first pressed state
...
Make sure AbsListView selector drawable state gets configured on touch.
Change-Id: Ic5863ee05517b426585f59aaf52ba75b72d8c020
2011-01-17 18:37:42 -08:00
Joe Onorato
ca29bb2840
Merge "Don't crash with non-standard bitmap types." into honeycomb
2011-01-17 17:25:02 -08:00
Dianne Hackborn
f4c4b66623
Merge "Remove old APIs." into honeycomb
2011-01-17 17:23:46 -08:00
Joe Onorato
f01345e19d
Don't crash with non-standard bitmap types.
...
Bug: 3299780
Change-Id: I435c3bedda22395db1b65dc9ff488bfea9069deb
2011-01-17 17:20:09 -08:00
Dianne Hackborn
17b9b81418
Remove old APIs.
...
Change-Id: If676e4e7886ad71c4959d4253db99639b49218b8
2011-01-17 17:16:02 -08:00
Gilles Debunne
aa8d73bfc3
Added a touch up filter in text selection handles.
...
This filters the touch up event, so that in case the handles'
position is altered when the finger is lifted up, this unwanted
movement is discarded.
Bug 3282095
Change-Id: Ibfe8f49d979091ba49139449ecc13f47050608d9
2011-01-17 16:39:36 -08:00
Jim Miller
c6d2a767ce
Merge "Fix 3303606: invalidate WaveView after resetting state" into honeycomb
2011-01-17 16:35:52 -08:00
Dianne Hackborn
327fbd2c8f
Fix a bunch of API review bugs.
...
3362464 API REVIEW: android.content potpourri
3362445 API REVIEW: Fragment transaction stuff
3362428 API REVIEW: Fragment stuff
3362418 API REVIEW: Loader stuff
3362414 API REVIEW: android.content.pm.ActivityInfo
Change-Id: I6475421a4735759b458acb67df4380cc6234f147
2011-01-17 16:23:42 -08:00
Vasu Nori
be21eebb48
am 2fd90e92: Merge "bug:3362394 better documentation for DefaultDatabaseErrorHandler class" into honeycomb
...
* commit '2fd90e92ee0731fd77c2b113706c07083b9673ec':
bug:3362394 better documentation for DefaultDatabaseErrorHandler class
2011-01-17 15:40:56 -08:00
Vasu Nori
2fd90e92ee
Merge "bug:3362394 better documentation for DefaultDatabaseErrorHandler class" into honeycomb
2011-01-17 15:37:09 -08:00
Vasu Nori
58f765a45e
am 376fedf6: Merge "bug:3362635 add new public API to downloadmanager to get mxbytesovermobile" into honeycomb
...
* commit '376fedf6595188ad714022b5d1ab012dc8689c3e':
bug:3362635 add new public API to downloadmanager to get mxbytesovermobile
2011-01-17 15:36:45 -08:00
Vasu Nori
4caaf2aeca
bug:3362394 better documentation for DefaultDatabaseErrorHandler class
...
Change-Id: I85a278183eda297f72a740c9d23efa4aca58d2d3
2011-01-17 15:35:28 -08:00
Vasu Nori
376fedf659
Merge "bug:3362635 add new public API to downloadmanager to get mxbytesovermobile" into honeycomb
2011-01-17 15:34:06 -08:00
Vasu Nori
0abbf809bf
bug:3362635 add new public API to downloadmanager to get mxbytesovermobile
...
bug:3362635
Change-Id: I7380964c6098d5ca6396b17980f78457c23d1a87
2011-01-17 15:14:53 -08:00
Costin Manolache
9ec17366c1
Add back NEW_TASK flag.
...
b/2510486 suggests we remove it, but this breaks services who can't call the intent without the flag. A different solution is needed to notify when the activity is done.
Change-Id: I0b32ead69cf816e105899fdd74e99cc1e8bf5ce3
2011-01-17 15:12:57 -08:00
Scott Main
36578e308c
am 662cc7a4: add javadoc for getView method
...
* commit '662cc7a46a44af782a1f697d16b0613498312e1f':
add javadoc for getView method
2011-01-17 15:09:43 -08:00
Scott Main
662cc7a46a
add javadoc for getView method
...
Change-Id: Ia8d9516c4017319f8bcaedb3e4c451c5c3825857
2011-01-17 15:02:07 -08:00
Jim Miller
607d320c9d
Fix 3303606: invalidate WaveView after resetting state
...
This fixes a bug where the unlock state machine was in the
reset state when it awakes which caused it to ignore
the first unlock attempt. The reason for this is the state
machine didn't run again until the next user input.
We now invalidate the drawing area to ensure the unlock state
machine runs and is ready when LockScreen shows again.
Change-Id: I9f2b279d432ff634ba0b29e606cdc954718a2ad2
2011-01-17 14:52:09 -08:00
Romain Guy
d80d81bb65
am a43cfd29: Merge "Improve hardware layers rendering speed when setting a View\'s alpha." into honeycomb
...
* commit 'a43cfd2940d7c887a8130c0e972a1b398a887819':
Improve hardware layers rendering speed when setting a View's alpha.
2011-01-17 14:45:32 -08:00
Irfan Sheriff
fc6ef518e0
am 326feb89: Merge "Pick an upstream interface with valid IP config" into honeycomb
...
* commit '326feb8965e0bbd5b22479285f6d88cc840b5eed':
Pick an upstream interface with valid IP config
2011-01-17 14:42:52 -08:00
Romain Guy
d6cd572df8
Improve hardware layers rendering speed when setting a View's alpha.
...
Change-Id: Ib1275677f531c60d9919978c5538c663fdb823b5
2011-01-17 14:42:41 -08:00
Adam Cohen
dc4567d970
am 3d8e3535: Merge "Adding instance check to RemoteViewsAdapter getViewAt" into honeycomb
...
* commit '3d8e353512bedbc44e0e8c3254320ab0a76edc47':
Adding instance check to RemoteViewsAdapter getViewAt
2011-01-17 14:42:28 -08:00
Chris Yerga
825c29d72f
am e2364b09: Merge "Fix content width calculation for Spinner control. The width of the dropdown was only taking into account the width of the items and not background padding." into honeycomb
...
* commit 'e2364b098f00577aa90e63f8bb9b55a99021a5b2':
Fix content width calculation for Spinner control. The width of the dropdown was only taking into account the width of the items and not background padding.
2011-01-17 14:42:04 -08:00
Romain Guy
a43cfd2940
Merge "Improve hardware layers rendering speed when setting a View's alpha." into honeycomb
2011-01-17 14:40:35 -08:00
Irfan Sheriff
326feb8965
Merge "Pick an upstream interface with valid IP config" into honeycomb
2011-01-17 14:14:07 -08:00
Adam Cohen
181d2e3172
Adding instance check to RemoteViewsAdapter getViewAt
...
Change-Id: Ie99d5aeef6e963c89b62cfd435d1c5cbb1fb6bfa
2011-01-17 14:06:46 -08:00
Irfan Sheriff
29552095e1
Pick an upstream interface with valid IP config
...
As a work around for the issue of picking
the wrong interface, add a check for selecting
an upstream interface that has a valid IP configuration
Bug: 3362306
Change-Id: I01084517cff756c97660b2cfbfa8e9bf26673148
2011-01-17 13:50:48 -08:00
Chris Yerga
e2364b098f
Merge "Fix content width calculation for Spinner control. The width of the dropdown was only taking into account the width of the items and not background padding." into honeycomb
2011-01-17 13:30:53 -08:00
Adam Powell
dc494e1e48
am a1487347: Merge "Fix bug 3362446 - NPE in legacy menus" into honeycomb
...
* commit 'a1487347f5ba24648303bf8c9e455ca2ef0de7ea':
Fix bug 3362446 - NPE in legacy menus
2011-01-17 13:29:03 -08:00
Adam Powell
a1487347f5
Merge "Fix bug 3362446 - NPE in legacy menus" into honeycomb
2011-01-17 13:26:50 -08:00
Adam Powell
4192e38827
Fix bug 3362446 - NPE in legacy menus
...
Change-Id: Icf9a0bec46c74ace3acbc85eea45d1d769b699d1
2011-01-17 13:16:54 -08:00
Kenny Root
a33dd09b5c
am d6c54d97: Merge "Revert "Add the {get,set}PackageObbPaths calls to API"" into honeycomb
...
* commit 'd6c54d97867edd566700c535f3edf57dd4396350':
Revert "Add the {get,set}PackageObbPaths calls to API"
2011-01-17 13:05:22 -08:00
Kenny Root
d6c54d9786
Merge "Revert "Add the {get,set}PackageObbPaths calls to API"" into honeycomb
2011-01-17 13:02:48 -08:00
Kenny Root
a1cbb94dbc
Revert "Add the {get,set}PackageObbPaths calls to API"
...
This reverts commit 5d40fe9c68 .
Change-Id: Ie41010c92fb860b19a12bcf63f6fe95ffa68da81
2011-01-17 13:00:47 -08:00
Andy Stadler
d9bc2b5e9e
am 2c12c708: Merge "Add internal plumbing to DPM for encryption" into honeycomb
...
* commit '2c12c708bfb62464e75dcde292547b2d778dafce':
Add internal plumbing to DPM for encryption
2011-01-17 12:54:17 -08:00
Svetoslav Ganov
be0a092c87
am 59cce94e: Merge "Catching some edge cases while flinging/scrolling in NumberPicker" into honeycomb
...
* commit '59cce94eb8cecd484b467d7b855817116e4b13fc':
Catching some edge cases while flinging/scrolling in NumberPicker
2011-01-17 12:54:14 -08:00
Andy Stadler
2c12c708bf
Merge "Add internal plumbing to DPM for encryption" into honeycomb
2011-01-17 12:52:41 -08:00
Svetoslav Ganov
59cce94eb8
Merge "Catching some edge cases while flinging/scrolling in NumberPicker" into honeycomb
2011-01-17 12:52:18 -08:00
Andy Stadler
22dbfda976
Add internal plumbing to DPM for encryption
...
* Add code to persist per-admin setting
* Add hooks for OS-level tie-in (is supported, get / set status)
* Add 3rd API call to get OS status (irrespective of admin settings)
* Remove "REQUESTED" status, no longer relevant with 3rd API
* Fixed bug that impacted global proxy settings
* Update api/11.xml to match current.xml
Bug: 3346770
Change-Id: I56bdf9a7894f6ca4842402c7b82ddb3caf4b37b9
2011-01-17 12:47:31 -08:00
Svetoslav Ganov
6c742f1e95
Catching some edge cases while flinging/scrolling in NumberPicker
...
1. If the scroll is exactly divisible by the scroll item height
the selector wheell is one off from the current value/text input.
Change-Id: I12721e85a99f6a5b51f5ad6f13c3836cb156c9a4
2011-01-17 12:46:21 -08:00
Dianne Hackborn
74871f9c37
am db7f3867: Merge "Start renaming FragmentTransaction.openTransaction() to beginTransaction()." into honeycomb
...
* commit 'db7f38673c33ba55801019007ff18fa4c57f75e0':
Start renaming FragmentTransaction.openTransaction() to beginTransaction().
2011-01-17 12:35:59 -08:00
Dianne Hackborn
db7f38673c
Merge "Start renaming FragmentTransaction.openTransaction() to beginTransaction()." into honeycomb
2011-01-17 12:33:50 -08:00
Kenny Root
3048abffae
am f09d63a5: Re-@hide some of the other StorageManager API
...
* commit 'f09d63a52c84386a7b3539eab5b43f020f194c77':
Re-@hide some of the other StorageManager API
2011-01-17 12:31:49 -08:00
Dianne Hackborn
48e7b45869
Start renaming FragmentTransaction.openTransaction() to beginTransaction().
...
Change-Id: Ib4a6d824b33cca699b7b25159c491fb610d5f5da
2011-01-17 12:28:35 -08:00
Kenny Root
e26aa3f78a
am 34d2b41e: Revert "Add the {get,set}PackageObbPaths calls to API"
...
* commit '34d2b41e48281d1df2c844e004740f008e699093':
Revert "Add the {get,set}PackageObbPaths calls to API"
2011-01-17 12:23:43 -08:00