-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jb aokp #76
Open
speedydaniel
wants to merge
633
commits into
AOKP:jb
Choose a base branch
from
IceColdJelly:jb-aokp
base: jb
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Jb aokp #76
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Change-Id: I5c3c2a4556764f14d354ea0431b6cba175b2c49f Auto-generated-cl: translation import
Change-Id: If814238c8fa017ce10e7fe770826a1e162fe5e87
Change-Id: Ibaf20b014465df91fecfaccd79e778000fdbc90f
Change-Id: Ic2ca7a3ae1d8283d2b101028c5782159d822d98f
Bug #6836448 External bug: http://code.google.com/p/android/issues/detail?id=34946 DO NOT MERGE DisplayListRenderer::drawPath was not invoking quickReject() properly, passing x,y,width,height instead of left,top,right,bottom. A path could thus get rejected when it should be drawn instead. While working on this change I found a similar issue with another drawing command, drawBitmapData(). Change-Id: I8306faf72db14d71b54ecb7de295c9a6957d9494
Change-Id: I61e80e843db09b748417f2a234600edad922cdc5
Change-Id: Ib53dce17ef99b62e7de5b6ef716ab5a4a8617800
An odd little bit of logic (attempting to defend against the status bar getting stuck on orientation change) was ironically causing it to get stuck if the bar was closed twice in very rapid succession (which can happen if you manage to click the settings button as the panel is about to close). Other tweaks to help defend against this sort of problem in the future: - When the screen goes off, immediately collapse the notification panel (without animation) - When completing panel collapse, force the height of the expanded view to 0 (in case it ended up some other way by this point). - Reduce a weird little glitch when you start animateCollapse() in the middle of a reveal animation. (The panel would jump to full height.) Bug: 6765842 Change-Id: I233467c73e130f64401333319943289cbf3daa56
…0n tutorial Change-Id: I445a5ef7513749ab55537c16dac2ee00aee0859d
Change-Id: I5077a3d3cb71f2dff0f460174134bdc49663e27b Auto-generated-cl: translation import
Change-Id: I5faf0f5d1fdf76a5b4bd1cff37aa58df79d18e85 related-to-bug: 6785452
Change-Id: If859991b64492d2b334271038c854342771566e4
The code added attributes android:name and class to a KeyedVector under the same key (fragment) so the 2nd add (android:name) removed class with was never checked. This replace the value type in the KeyedVector to be Vector<NamespaceAttributePair> instead of just NamespaceAttributePair. Change-Id: I009b8a8cca878191661c2a63bb14c967d230498d
Change-Id: I66cfcb46c5f8a4825f1a12640dacc3c2c42ff348
Change-Id: I9adbacf5d5b3cdc47f9e8ff2f280e481b6a047b5
…t and Tools 20 Change-Id: I247d2bfd549a48dcaaa1c5668559e3d5d2cd6fc5
This reverts commit 04364be Change-Id: I7d0c9c7a4e876de8e44c4f46578b8e5d60c488e6
…Project setup in eclipse Change-Id: I57c02676fbc2886872c2d294c5517b458e8751c5
bug: 6852515 Change-Id: I80681a06e87aad3de8243bb731d7513e5aa29d08
bug:6481578 Change-Id: Ie9f6e33c49307ddd884015a400f90e5477cc551e
…rn "0" for attendeeIdentity & attendeeIdNamespace instead of the actual string. Bug: 6798688 Change-Id: Ia3b6ee33110ecc8035c24d6340593160748849fd
Change-Id: I223db230887b17e452df2cacd35160e1fcaea5d1
That, plus a few other permissions. Bug: 6860828 Change-Id: I69f0360471e4fd46e689388cd993e18c1e0bfb02
…nge-Id: I66cfcb46c5f8a4825f1a12640dacc3c2c42ff348 Change-Id: I590028c0eebc5d3142c63036e3fffb1a53cb55a6
Change-Id: I11b9bdf59d10fad2dc49ccda47078e273fe064f7
This fixes a bug where keyguard would always change orientation when enabled from config_enableLockScreenRotation. Now it follows the user preference. Change-Id: I0437d11e1984d22cdadddc57deb47d800fb86aa1
…3395788f7b0d072 Bug: 5942358 Change-Id: Ib15f96f267aa0a713fbd03b3bf5dced8c37da12e
-> When the RemoteViewsFactory violates the getViewTypeCount() contract we detect it, and prevent the AdapterView from crashing -> Also made RemoteViewsCache a static inner class, since we may need that down the road, and there's no reason it shouldn't be Change-Id: I872a255167aac94513e522924179de61286b995a
Bug: 6802065 Change-Id: I403b02ca7c78bb90eed712b3b6f846a4a6d68f8b
This moves the NavBar widgets out of the NavigationBarView class and into it's own class. It is instantiated in basestatusbar so should be useable by all devices now, even if they don't have the NavBar enabled. Patch Set 2: Whitespace and tabulation cleanup Change-Id: I310102e1fc3bc36cef887f58dfefc2beca3774d6 Signed-off-by: Zaphod <[email protected]>
Several changes relating to Lefty & NavRing mode introduced a condition for Non-NavBar related devices that caused SysUI FC's at boot and during every rotation. A simple null check for NavBarView should fix that. Change-Id: I2e2883f283fee5aea34c2580e874c37f884a0c35 Signed-off-by: Zaphod <[email protected]>
This is currently highly depended on and older patch set of the lefty mode. it is fully fuctional however will not be ready for merge until lefty mode is complete and I can rebase off of it. this also requires RC and Phone commits as we made changes to the glowpadview. Also this gives us new options when using Glowpad where we can now add actions or events based on locking on targets. So start thinking of cool options using this. Change-Id: I2e18ce4dbd2a15f419782d1e00f722df939f4d59
This reverts commit 9e44b74.
- Settings: Add auto-retrieval and auto-retrieval-on-roaming strings - GsmDataConnectionTracker: Gets settings and auto-connects APN_TYPE_MMS Patch set 2 : Fix NPE when the preference was not yet set to a defaulted value : Add @hide's : Set proper defaults Change-Id: I9c4ea47cd39cd017fba3d5b0649d0e84aaf78b4e Conflicts: core/java/android/provider/Settings.java
Change-Id: I0f49355d87a29d0d24f51e4de4f0c3f2a107caa0 Signed-off-by: Gergely Szell (sethyx) <[email protected]>
This reverts commit 883bc9c.
…key) method parameter." This reverts commit 1277d92.
Change-Id: Icefa576a511e733e6ae0fb5952ddd0d86084a96b
… after inflation. Change-Id: I8414b7002af1a51a10db95758e36c471b51e6355 Signed-off-by: Tim Hutt <[email protected]>
Many media files and source code files were marked as executable in Git. Remove those. Also a shell script and python script were not marked as executable. Change-Id: Ieb51bafb46c895a21d2e83696f5a901ba752b2c5
use common unlock methods. Change-Id: I9c5b3cc82b89843695eac21e6d3a930df67dbf50
Recolor to better match status bar. Resize to be easier on the eyes and hopefully fix the issues on small drawing on mdpi. Change-Id: I91372a6a001f4f1c3d7c7de43f3b7250f4283281 Signed-off-by: Kyle Teague <[email protected]>
Change-Id: I294128bd93065856ef3fe0817ed2ddd9061bc1cd Conflicts: core/java/com/android/internal/widget/multiwaveview/CirclesView.java
Incorporates updates to the Bluetooth MAP profile from Code Aurora's Android Enablement Project since we initially pulled in from their gingerbread to CM7 last year. This patch addresses bugs with the current MAP profile, adds a UI request for message access approval when pairing, and adds additional error checking and logging. Confirmed to fix date and "Download" function of Ford SYNC Gen1. Pulled in from the codeaurora jb branch. Change-Id: I5c7e7396e0e97760bba9bdf4bf848b6bfa58e62c
… or silent" This reverts commit 65756b5.
Change-Id: I99bee8ff8ade98b7968ee1d7292dae97e994d698
If starting window is added to arrays like mViews in WindowManagerImpl.java, but not accepted by WindowManagerService, we leak starting windows. To avoid leaking, remove the view from WindowManager. Change-Id: I4d98b883e9dfaf5e71bdece385643ba1b59b2633
Display the complete text including attempts remaining to unlock PIN on SimUnlockScreen if user entered incorrect PIN. On some devices the display text is ellipsized when trying to display on a single line. Change-Id: Ica6ac53be1b9c24084ec0389461eb5550864a41a
Change-Id: I8e2cf5d839e907344e83c29846bbcb59dfbeabca
The shortcut label isn't updated to the current language if the phone's language has changed. The problem was that the shortcut label is stored in a static variable which is set once and kept throughout the life time of the process. Change-Id: I89c5875fbf28fb82e073166c472ca205d28674fb
- Excessive JNI global reference in AudioEffects. - Global references created during native setup are not deleted. - Global references are deleted in setup failure and during native release. Change-Id: I302b7f8de7189f85fd07167b950f85795ffc5ef1 CRs-fixed: 413633
While removing the top activities of crashed process from the history stack sometimes it was leading to race condition and decrementing history stack index twice. because of this index out of bound issue was coming Change-Id: I2a5667d36aaa7c3b7adac347db6c9bc7429d9444 CRs-fixed: 381904
Change-Id: If7f27ea35f5a1d1dd7c98fbe5f92729ab9ba0257
FindBugs description: There is an apparent recursive loop at IntProperty.java in method set(Object, Integer) This method unconditionally invokes itself. This would seem to indicate an infinite recursive loop that will result in a stack overflow. Change-Id: I3e85911802c54c7a88e0b966e5e0e1896821edf6
This reverts commit 2e39691d11a6559950f05ef8220c57909840675b.
This speeds up certain workloads considerably, particularly those involved in buildling apps via the SDK. Windows-based use should particularly benefit from the change. Change-Id: I29f4b3a77400b201ee219729cc28a5e359c0c5e8
Based on commit 7036d66bec7697160ba1b2e255f1e7fae0c8c435 from CAF, branch ics_chocolate. Change-Id: I8a60668b18980fd5e6f9dd341db5a8a63deb99d0
Updated white spaces Change-Id: I80c7a698de183691094352367913cc73f2863810
Thanks so much to Zaph for the help. I can't test this last attempt... But I'm doing this for me, mostly. Learning ftw? PS2 : Fix Major Derps. Still not working...lost now. PS3 : No Change - Impatient Liar, I am. Works! Signed-off-by: Jubakuba <[email protected]> Change-Id: Ia421e785081e53514d1e346f9e7f79c900562cbc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
please delete
I wanted to make that to another framework, sry.