| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* changes:
Dialog titles would sometimes use a font too large.
|
| |
| |
| |
| |
| |
| |
| | |
This was due to code in DialogTitle.java which would multiply the textSize of
the theme twice.
Change-Id: Id44e39e729ebd43b08c967a67cde0d33dd8f2efb
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Some more tweaks and fixes to wallpapers. Make sure wallpapers are
told they are not visible when the screen is off. Add some new animations
for transitions across tasks, and fiddle with many of the existing
animations. Clean up the relationship between translucent activities
and animations. Add new API to start a PendingIntent from an
activity.
Change-Id: Ie0bf45fe44081bb6982c75361257a55d9cd9d863
|
|/
|
|
|
| |
lookup filter
Change-Id: I80327febe7134ac1bdef958251943a9777879d53
|
| |
|
|\
| |
| |
| |
| | |
* changes:
Modify android.syncml.pim so that no one is going to use.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Remove android.syncml.pim.vcalendar since no one is using it.
-- We have android.pim.ICalendar.java, so handling vCalendar (== ICalendar) is possble without android.syncml.pim
- Mark android.syncml.pim.vcard and related code as obsolete.
-- Refactored version is in android.pim.vcard, which supports new Contacts database schema.
Related issue: 2110530
|
|/
|
|
|
| |
When TYPE not provided, assume a default value and check
that label isn't empty when CUSTOM is used.
|
|\
| |
| |
| |
| | |
* changes:
fix [2074427] SurfaceView doesn't disappear on GONE
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
* changes:
Increasing uninterrupted sleep quantum in SQLiteDatabase to increase transaction size.
|
| | |
| | |
| | |
| | | |
transaction size.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
* changes:
Do not die when printing empty prefs.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Addresses issue:
http://buganizer/issue?id=1974140
Change-Id: I0001d69e8d278d4ca900f5ce56ad50c0b4b6b694
|
| |_|/
|/| | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
* changes:
Make NumberPicker subclassable
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | | |
Make a few methods and member variables protected so behavior can be
overridden. In this case, Messaging app uses the control and doesn't
want wrap-around behavior.
Change-Id: Iceb34743b7d17e933400750a5de56b9ecfe8f146
|
| | |
| | |
| | |
| | |
| | |
| | | |
mInvActualScale) * mActualScale) not necessary to be viewWidth, we special case when the content exactly fit in the view case.
Fix http://b/issue?id=2099889
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fix for http://b/issue?id=2063143 . Use TypedValue's
types to set the text size properly for the screen's
density.
Change-Id: I3772035157e2a9a8a2dba00ebddbf967c42bfa99
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Deprecate BluetoothError.java.
I spent a lot of time experimenting with a class BluetoothError to enumerate
the many error codes returned by the Bluetooth API. But at the end of the day
they were never used. The vast majority of method calls only really need a
true/false error value, and often not even that.
Methods which do need more detailed error enumeration (for example, bonding
failures) can have there own enumerated error codes. But there is no need
for a common set of error codes.
Also change the IPC failed warnings in BluetoothA2dp to Log.e. These indicate
a very serious error.
Introduce BluetoothAdapter.ERROR and BluetoothDevice.ERROR as helper sentinel
values.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Another round of Bluetooth API clean up, javadoc'ing and unhide'ing.
-- Symbols for getting/setting bluetooth state --
BluetoothAdapter.ACTION_STATE_CHANGED
BluetoothAdapter.EXTRA_STATE
BluetoothAdapter.EXTRA_PREVIOUS_STATE
BluetoothAdapter.STATE_OFF
BluetoothAdapter.STATE_TURNING_ON
BluetoothAdapter.STATE_ON
BluetoothAdapter.STATE_TURNING_OFF
BluetoothAdapter.isEnabled()
BluetoothAdapter.getState()
BluetoothAdapter.enable()
BluetoothAdapter.disable()
-- Symbols for getting/setting scan mode --
BluetoothAdapter.ACTION_SCAN_MODE_CHANGED
BluetoothAdapter.EXTRA_SCAN_MODE
BluetoothAdapter.EXTRA_PREVIOUS_SCAN_MODE
BluetoothAdapter.SCAN_MODE_NONE
BluetoothAdapter.SCAN_MODE_CONNECTABLE
BluetoothAdapter.SCAN_MODE_DISCOVERABLE
BluetoothAdapter.getScanMode()
BluetoothAdapter.setScanMode()
-- Symbols for getting address/names --
BluetoothAdapter.getAddress()
BluetoothAdapter.getName()
BluetoothAdapter.setName()
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
* changes:
Query for all properties if a property change is received and cache is empty.
|
| | | | |
|
| |/ /
|/| |
| | |
| | | |
BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
* changes:
Do not cache POST response as Cache is indexed with url.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
mRequestHandle is only set from Network. So we can skip checking whether url is Network url if mRequestHandle is not null.
Fix http://b/issue?id=1980031
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
* changes:
add a transaction monitor
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
* changes:
Make the hardkeyboard long press dialog look the same as that of soft keyboard.
|
| | | |
| | | |
| | | |
| | | | |
New assets for transparent buttons and background.
|
| | | |
| | | |
| | | |
| | | | |
each account, so we need to use it.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
* changes:
Add javadoc to explain which permissions are required for Public BT API's.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* changes:
Fixing asymmetry between phone filter and email filter APIs.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Also, introducing a more advanced email filter, which will do a proper name
lookup using the normalized name and avoid returning duplicate results.
Also, upgrading the phone filter to do the same thing as the email filter
but with display names and phone numbers.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* changes:
adding support for webkit plugins to use the java view system
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
Change-Id: I4fb328e5f30476fe4aa70565bacb969dc97b495d
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* changes:
don't fling if there's nowhere to go
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add a test to doFling() to return quickly if the fling has
no effect. For simplicity, only test for horizontal or vertical
flings.
The man purpose is to avoid suspending webkit until the fling
animation is complete when the purpose of the touch drag is
to activate a touch event, like a swipe in superpudu.
fixes http://b/issue?id=2052852
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Browser defaults overview mode to true in BrowserSettings.java,
but a WebView should default overview mode to false. This permits
applications without zoom interfaces, such as HTMLViewer, to
have the same interface as before.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit b127dc29bbe41dde9cb30e178bd252f48e84e533.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | |
| | | | |
| | | | | |
* changes:
Adding classes to enable plugins to use the java view system.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: I2a9bb5b3d3759645257263797c977ecc4a44b263
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* changes:
Fix small bugs in VCardComposer.java.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- The logic for emitting "FN" is wrong.
- FileWriter's "double close" problem should occur in the current implementation.
- Let VCardParser_V31.java ignore AGENT field instead of throwing an unkind VCardNotSupportedException.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Actually being able to configure a wallpaper relies on additional
work in the launcher and wallpapers that will be in another change.
Also note that this breaks all existing wallpapers, since they now
need to include a meta-data item about themselves. This also
will be fixed in another change.
Change-Id: I97d2c2bd07237abc32f92b9147c32530a2f73c71
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* changes:
Fix issue #2095422: Some fades from opaque to transparent don't work
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
ViewRoot was using Surface.clear(), which has different behavior
in different processes -- in the system process it would kill the
surface, causing all windows in that process to immediately disappear
instead of animating away.
This change makes Surface.release() public and uses that instead. It
also renames Surface.clear() to Surface.destroy().
Also fixed some issues in the window manager that were causing the
wallpaper to not get immediately resized when the orientation changes
and its target window is removed and re-added.
Change-Id: I2a992e365cf5747511f0bf1193db32dc2525b218
|
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is part of the implementation of http://b/issue?id=2097470
Change-Id: Ife3e5edd4c7d31824d75a0f93a6dcd56a39ab524
|