2840 Commits

Author SHA1 Message Date
Michael Jurka
cf9234eba1 am 0962d372: am 1f3c11b7: Merge "Add more logging for bug 6499508 (getting warmer!)" into jb-dev
* commit '0962d3729bc241f23bb2adbd066b46caa28db12d':
  Add more logging for bug 6499508 (getting warmer!)
2012-06-02 15:36:37 -07:00
Michael Jurka
0e0efa5e5d am 586a119c: am e766e1f5: Merge "Reduce recents memory usage" into jb-dev
* commit '586a119c6f30e8a69f910200afacf1ced6ef44b3':
  Reduce recents memory usage
2012-06-02 15:36:34 -07:00
Michael Jurka
0962d3729b am 1f3c11b7: Merge "Add more logging for bug 6499508 (getting warmer!)" into jb-dev
* commit '1f3c11b7952d92ebbafa71bf0904b8137edfd440':
  Add more logging for bug 6499508 (getting warmer!)
2012-06-02 15:32:50 -07:00
Michael Jurka
586a119c6f am e766e1f5: Merge "Reduce recents memory usage" into jb-dev
* commit 'e766e1f57b00910442b52d7d11ba808a6b212459':
  Reduce recents memory usage
2012-06-02 15:32:49 -07:00
Michael Jurka
1f3c11b795 Merge "Add more logging for bug 6499508 (getting warmer!)" into jb-dev 2012-06-02 15:30:54 -07:00
Michael Jurka
e766e1f57b Merge "Reduce recents memory usage" into jb-dev 2012-06-02 15:30:26 -07:00
Jim Miller
988edcd423 am a8c42f1a: am 94a8ae09: Merge "Fix 6592932: add means to replace assist icon from given package" into jb-dev
* commit 'a8c42f1aaa184ed9b30c747ca03b5d7159a3fb20':
  Fix 6592932: add means to replace assist icon from given package
2012-06-02 08:40:28 -07:00
Jim Miller
a8c42f1aaa am 94a8ae09: Merge "Fix 6592932: add means to replace assist icon from given package" into jb-dev
* commit '94a8ae09bea03ec2ca5563601e28a196d41bb6b6':
  Fix 6592932: add means to replace assist icon from given package
2012-06-02 08:35:33 -07:00
Justin Ho
1024846ea5 am 7cca871d: am 5caa24fd: Merge "Temporarily disable FakeOemFeatures from userdebug or higher builds" into jb-dev
* commit '7cca871de1f9ed649d671f327e4bb3d30ba11cca':
  Temporarily disable FakeOemFeatures from userdebug or higher builds
2012-06-02 08:20:54 -07:00
Daniel Sandler
a54f056bfe am 1f199f1d: am 0a19dba5: Merge "Present a one-time chooser when sharing screenshots." into jb-dev
* commit '1f199f1d04e6ab8929a9cdcf8d5fc5583e735879':
  Present a one-time chooser when sharing screenshots.
2012-06-02 08:20:45 -07:00
Raph Levien
50f4dca8ca am dcf1251c: am 79f7381f: Merge "Fix bug 6596440: NPE when pulling down notification window" into jb-dev
* commit 'dcf1251c92eb1920c4f955c893f9fa36a7ae67fb':
  Fix bug 6596440: NPE when pulling down notification window
2012-06-02 08:20:28 -07:00
Jim Miller
94a8ae09be Merge "Fix 6592932: add means to replace assist icon from given package" into jb-dev 2012-06-01 20:34:43 -07:00
Justin Ho
7cca871de1 am 5caa24fd: Merge "Temporarily disable FakeOemFeatures from userdebug or higher builds" into jb-dev
* commit '5caa24fd3eb12edbc75f35dba831166b8ebe603f':
  Temporarily disable FakeOemFeatures from userdebug or higher builds
2012-06-01 19:02:11 -07:00
Daniel Sandler
1f199f1d04 am 0a19dba5: Merge "Present a one-time chooser when sharing screenshots." into jb-dev
* commit '0a19dba545d25760839399e4bc8ece6d9cc888da':
  Present a one-time chooser when sharing screenshots.
2012-06-01 19:01:45 -07:00
Raph Levien
dcf1251c92 am 79f7381f: Merge "Fix bug 6596440: NPE when pulling down notification window" into jb-dev
* commit '79f7381f8b4e9a462d012740c2a902ae3de8a6b0':
  Fix bug 6596440: NPE when pulling down notification window
2012-06-01 19:01:03 -07:00
Justin Ho
5caa24fd3e Merge "Temporarily disable FakeOemFeatures from userdebug or higher builds" into jb-dev 2012-06-01 14:51:49 -07:00
Daniel Sandler
0a19dba545 Merge "Present a one-time chooser when sharing screenshots." into jb-dev 2012-06-01 14:29:07 -07:00
Justin Ho
569ca8b7dd Temporarily disable FakeOemFeatures from userdebug or higher builds
Change-Id: I452d079f60a087a36c20e984b38b8354327e1d5a
2012-06-01 14:09:26 -07:00
Jim Miller
3294b6b09b Fix 6592932: add means to replace assist icon from given package
This provides the means to replace the assist icon shown in keyguard and the
navigation gesture for assist.  It's done by adding metadata called
"com.android.systemui.action_assist_icon" to the activity that handles
android.intent.action.ASSIST.  It should point to a StateListDrawable
in that package with the required states.  For example:

<meta-data android:name="com.android.systemui.action_assist_icon"
    android:resource="@drawable/ic_android_systemui_action_assist" />

And then something like this in drawable/ic_android_systemui_action_assist.xml :

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="true"
        android:state_active="false"
        android:state_focused="false"
        android:drawable="@drawable/ic_action_assist_normal" />
    <item android:state_enabled="true"
        android:state_active="true"
        android:state_focused="false"
        android:drawable="@drawable/ic_action_assist_activated" />
    <item android:state_enabled="true"
        android:state_active="false"
        android:state_focused="true"
        android:drawable="@drawable/ic_action_assist_focused" />
</selector>

Change-Id: Ibc29360e179fed68253ff06a07b1bb2b982d0dab
2012-06-01 14:08:28 -07:00
Daniel Sandler
046fddff5b Present a one-time chooser when sharing screenshots.
Bug: 6561747
Change-Id: I0ee98d10e6927a9166e643a4a965285a62379a9b
2012-06-01 16:26:46 -04:00
Raph Levien
79f7381f8b Merge "Fix bug 6596440: NPE when pulling down notification window" into jb-dev 2012-06-01 13:02:36 -07:00
Raph Levien
311a961a9a Fix bug 6596440: NPE when pulling down notification window
Pulling down the notification window set the navigation bar view to
"slippery", but this view is NULL on some devices such as Crespo.
The fix simply makes it a no-op in this case.

Change-Id: I720a257c1715febda5932d50906c5dddbca2b312
2012-06-01 12:02:13 -07:00
Andrew Flynn
d4354cb562 am 4ba77f16: am ef3a8021: Merge "Refresh signal cluster for airplane switch." into jb-dev
* commit '4ba77f165c0814dbb4a4bce7fdffef160912ae41':
  Refresh signal cluster for airplane switch.
2012-06-01 09:07:32 -07:00
Andrew Flynn
4ba77f165c am ef3a8021: Merge "Refresh signal cluster for airplane switch." into jb-dev
* commit 'ef3a8021e412b33db817789a9c1869022b5c901b':
  Refresh signal cluster for airplane switch.
2012-06-01 09:04:23 -07:00
Andrew Flynn
ef3a8021e4 Merge "Refresh signal cluster for airplane switch." into jb-dev 2012-06-01 09:00:46 -07:00
Michael Jurka
4f500b8592 Add more logging for bug 6499508 (getting warmer!)
Change-Id: Id55c6e9641508804d7f4a1b83e1251ea960d4aa5
2012-06-01 05:06:01 -07:00
Michael Jurka
261277e178 Reduce recents memory usage
Change-Id: I7e50bc1987dd75b1fbbe4e91d13490ae1faa6cb8
2012-06-01 04:52:03 -07:00
Andrew Flynn
0fa9d2d03f Refresh signal cluster for airplane switch.
This fixes a bug where if Airplane mode on/off is the only icon
that is changing in the signal cluster (for example, someone on
a wifi-only device has wifi turned on in airplane mode, so wifi
icon is not changing), this will refresh the signal cluster.

Bug: 6531918
Change-Id: I7a440b84c9dfa0b300b81d14426b99fd48fad06c
2012-05-31 16:44:12 -07:00
Jim Miller
ddf18061d7 am 359822c5: am 593b4446: Merge "Fix 6583164: Make navbar slippery when shade is open" into jb-dev
* commit '359822c586afb667b7ef51a2786cdd33bd4a3942':
  Fix 6583164: Make navbar slippery when shade is open
2012-05-31 13:54:38 -07:00
Jim Miller
359822c586 am 593b4446: Merge "Fix 6583164: Make navbar slippery when shade is open" into jb-dev
* commit '593b4446fd5cac974b86988cbd03f5a8c1a4862d':
  Fix 6583164: Make navbar slippery when shade is open
2012-05-31 13:50:35 -07:00
Jim Miller
593b4446fd Merge "Fix 6583164: Make navbar slippery when shade is open" into jb-dev 2012-05-31 13:47:47 -07:00
Jim Miller
b490c3e64d Fix 6583164: Make navbar slippery when shade is open
Change-Id: Ie7bc726dd292b8b363c155492fb620e49a123f05
2012-05-31 13:34:16 -07:00
John Spurlock
b84814b279 am 60dbc3c0: am e857632a: Merge "Dock: Renable desk-dock apps" into jb-dev
* commit '60dbc3c05c644ae057c4946f1229387e60be8cb3':
  Dock: Renable desk-dock apps
2012-05-31 08:53:10 -07:00
John Spurlock
60dbc3c05c am e857632a: Merge "Dock: Renable desk-dock apps" into jb-dev
* commit 'e857632abd994bd1e4a649afb4231f3a97763828':
  Dock: Renable desk-dock apps
2012-05-31 08:49:24 -07:00
John Spurlock
e857632abd Merge "Dock: Renable desk-dock apps" into jb-dev 2012-05-31 08:44:47 -07:00
Daniel Sandler
6fc959f1af am 64846efd: am 43cee47d: Merge "Simpler background art for notification panels." into jb-dev
* commit '64846efd6dfeb70303caa1d495fdad08a13eadce':
  Simpler background art for notification panels.
2012-05-31 06:09:45 -07:00
Daniel Sandler
64846efd6d am 43cee47d: Merge "Simpler background art for notification panels." into jb-dev
* commit '43cee47d4f813e43a59f907bfea030f157853fd2':
  Simpler background art for notification panels.
2012-05-31 06:05:53 -07:00
Daniel Sandler
43cee47d4f Merge "Simpler background art for notification panels." into jb-dev 2012-05-31 06:02:58 -07:00
Michael Jurka
72f82ee641 am 6ac15eeb: am 67130247: Merge "Fix issue where "No recent apps" showed initially before loading thumbnails" into jb-dev
* commit '6ac15eeb8a88e0b0a7c81e8b8ec6b07099fddbc5':
  Fix issue where "No recent apps" showed initially before loading thumbnails
2012-05-30 13:46:47 -07:00
Daniel Sandler
1534a66ee9 Simpler background art for notification panels.
Bug: 6515559 // banding due to gradient
Bug: 6563738 // 9-patch self-overlap issues
Change-Id: Iab180e4ad1e92e1c780d54fd609ad8989a07c775
2012-05-30 16:43:30 -04:00
Michael Jurka
6ac15eeb8a am 67130247: Merge "Fix issue where "No recent apps" showed initially before loading thumbnails" into jb-dev
* commit '6713024727039004fa1f59a5ad4cad1f3c5f57f4':
  Fix issue where "No recent apps" showed initially before loading thumbnails
2012-05-30 13:42:24 -07:00
Michael Jurka
6713024727 Merge "Fix issue where "No recent apps" showed initially before loading thumbnails" into jb-dev 2012-05-30 13:39:39 -07:00
Eric Fischer
afeaa4eb0e am 75856e96: Merge "Import translations. DO NOT MERGE" into jb-dev
* commit '75856e969149fb2e221ece014670fdc39562747e':
  Import translations. DO NOT MERGE
2012-05-30 12:46:24 -07:00
Eric Fischer
88c934fee4 Merge "Import translations. DO NOT MERGE" 2012-05-30 12:43:15 -07:00
Eric Fischer
75856e9691 Merge "Import translations. DO NOT MERGE" into jb-dev 2012-05-30 12:43:04 -07:00
Eric Fischer
a4f480fc1c Import translations. DO NOT MERGE
Change-Id: I740b02a5e65d38c80f8f3ce9088ea00cc934a313
2012-05-30 12:25:53 -07:00
Eric Fischer
f4837c03c3 Import translations. DO NOT MERGE
Change-Id: I1b96473984d97eaef2ef616def04315674a57fca
2012-05-30 12:23:20 -07:00
Jim Miller
af65c38e86 am 1b4341a6: am a78bdd95: Merge "Fix 6578735: don\'t crash system ui when there\'s no search activity" into jb-dev
* commit '1b4341a682bf0ef191be3dbb0ee1ef08036fe075':
  Fix 6578735: don't crash system ui when there's no search activity
2012-05-30 11:00:37 -07:00
Jim Miller
1b4341a682 am a78bdd95: Merge "Fix 6578735: don\'t crash system ui when there\'s no search activity" into jb-dev
* commit 'a78bdd95b30ecdbd26e1b46c0d651b3975fea6b8':
  Fix 6578735: don't crash system ui when there's no search activity
2012-05-30 10:56:04 -07:00
Jim Miller
a78bdd95b3 Merge "Fix 6578735: don't crash system ui when there's no search activity" into jb-dev 2012-05-30 10:53:15 -07:00