diff options
author | Jeff Sharkey <jsharkey@android.com> | 2013-08-05 17:56:48 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2013-08-05 20:14:12 -0700 |
commit | ef7184a1aa0be5d496a5cb495a0f9e11f342af44 (patch) | |
tree | db95537171aedc73dd595ee6d09cf5433cb8697b /packages/DocumentsUI/res/layout | |
parent | dc2963aecaf38bf53d6de82957412a486049c207 (diff) | |
download | frameworks_base-ef7184a1aa0be5d496a5cb495a0f9e11f342af44.zip frameworks_base-ef7184a1aa0be5d496a5cb495a0f9e11f342af44.tar.gz frameworks_base-ef7184a1aa0be5d496a5cb495a0f9e11f342af44.tar.bz2 |
More recents work; filtering and sorting.
Update DirectoryFragment to render List<Document>, making it more
general purpose. Feed it documents either from a backend Cursor or
after resolving fields from a recents Cursor. Start in recents when
no persisted stack available. Synthesize a root for recents.
Local directory filtering and sorting using predicates and
comparators, all performed on background thread. Introduce
UriDerivativeLoader which handles ContentObserver updates while
producing a derivative work of a Cursor.
Split data model classes into separate files.
Change-Id: Idb88b4ee22c58c8e508328e678877f7e4c978533
Diffstat (limited to 'packages/DocumentsUI/res/layout')
-rw-r--r-- | packages/DocumentsUI/res/layout/activity.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/DocumentsUI/res/layout/activity.xml b/packages/DocumentsUI/res/layout/activity.xml index eb6d803..d4a01d3 100644 --- a/packages/DocumentsUI/res/layout/activity.xml +++ b/packages/DocumentsUI/res/layout/activity.xml @@ -39,7 +39,7 @@ <ListView android:id="@+id/roots_list" - android:layout_width="300dp" + android:layout_width="250dp" android:layout_height="match_parent" android:layout_gravity="start" android:background="#fff" /> |