1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
|
// Signature format: 2.0
package android.app {
public class Notification implements android.os.Parcelable {
method @Deprecated public String getChannel();
method public static Class<? extends android.app.Notification.Style> getNotificationStyleClass(String);
method @Deprecated public long getTimeout();
method @Deprecated public void setLatestEventInfo(android.content.Context, CharSequence, CharSequence, android.app.PendingIntent);
}
public static final class Notification.BubbleMetadata implements android.os.Parcelable {
method @Deprecated @Nullable public android.graphics.drawable.Icon getBubbleIcon();
method @Deprecated @Nullable public android.app.PendingIntent getBubbleIntent();
}
public static final class Notification.BubbleMetadata.Builder {
method @Deprecated @NonNull public android.app.Notification.BubbleMetadata.Builder createIntentBubble(@NonNull android.app.PendingIntent, @NonNull android.graphics.drawable.Icon);
method @Deprecated @NonNull public android.app.Notification.BubbleMetadata.Builder createShortcutBubble(@NonNull String);
}
public static class Notification.Builder {
method @Deprecated public android.app.Notification.Builder setChannel(String);
method @Deprecated public android.app.Notification.Builder setTimeout(long);
}
}
package android.app.slice {
public final class Slice implements android.os.Parcelable {
field @Deprecated public static final String EXTRA_SLIDER_VALUE = "android.app.slice.extra.SLIDER_VALUE";
field @Deprecated public static final String SUBTYPE_SLIDER = "slider";
}
public static class Slice.Builder {
ctor @Deprecated public Slice.Builder(@NonNull android.net.Uri);
method @Deprecated public android.app.slice.Slice.Builder addTimestamp(long, @Nullable String, java.util.List<java.lang.String>);
method @Deprecated public android.app.slice.Slice.Builder setSpec(android.app.slice.SliceSpec);
}
public final class SliceItem implements android.os.Parcelable {
method @Deprecated public long getTimestamp();
field @Deprecated public static final String FORMAT_TIMESTAMP = "long";
}
public class SliceManager {
method @Deprecated @Nullable public android.app.slice.Slice bindSlice(@NonNull android.net.Uri, @NonNull java.util.List<android.app.slice.SliceSpec>);
method @Deprecated @Nullable public android.app.slice.Slice bindSlice(@NonNull android.content.Intent, @NonNull java.util.List<android.app.slice.SliceSpec>);
method @Deprecated public void pinSlice(@NonNull android.net.Uri, @NonNull java.util.List<android.app.slice.SliceSpec>);
}
public abstract class SliceProvider extends android.content.ContentProvider {
method @Deprecated public android.app.slice.Slice onBindSlice(android.net.Uri, java.util.List<android.app.slice.SliceSpec>);
}
}
package android.app.usage {
public class StorageStatsManager {
method @Deprecated public long getFreeBytes(String) throws java.io.IOException;
method @Deprecated public long getTotalBytes(String) throws java.io.IOException;
method @Deprecated public boolean isQuotaSupported(String);
method @Deprecated public android.app.usage.ExternalStorageStats queryExternalStatsForUser(String, android.os.UserHandle) throws java.io.IOException;
method @Deprecated public android.app.usage.StorageStats queryStatsForPackage(String, String, android.os.UserHandle) throws java.io.IOException, android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.app.usage.StorageStats queryStatsForUid(String, int) throws java.io.IOException;
method @Deprecated public android.app.usage.StorageStats queryStatsForUser(String, android.os.UserHandle) throws java.io.IOException;
}
}
package android.content {
public abstract class ContentProvider implements android.content.ComponentCallbacks2 {
method @Deprecated @Nullable public final String getCallingFeatureId();
}
public abstract class ContentResolver {
method @Deprecated public void notifyChange(@NonNull Iterable<android.net.Uri>, @Nullable android.database.ContentObserver, int);
}
public abstract class Context {
method @Deprecated @NonNull public android.content.Context createFeatureContext(@Nullable String);
method @Deprecated @Nullable public String getFeatureId();
method public abstract android.content.SharedPreferences getSharedPreferences(java.io.File, int);
method public abstract java.io.File getSharedPreferencesPath(String);
}
public class ContextWrapper extends android.content.Context {
method public android.content.SharedPreferences getSharedPreferences(java.io.File, int);
method public java.io.File getSharedPreferencesPath(String);
}
public class Intent implements java.lang.Cloneable android.os.Parcelable {
field @Deprecated public static final String EXTRA_QUICK_VIEW_ADVANCED = "android.intent.extra.QUICK_VIEW_ADVANCED";
}
}
package android.content.pm {
public class PackageInfo implements android.os.Parcelable {
field public static final int REQUESTED_PERMISSION_REQUIRED = 1; // 0x1
}
public abstract class PackageManager {
method public abstract boolean setInstantAppCookie(@Nullable byte[]);
}
public final class SharedLibraryInfo implements android.os.Parcelable {
method public boolean isBuiltin();
method public boolean isDynamic();
method public boolean isStatic();
}
}
package android.database {
public abstract class AbstractCursor implements android.database.CrossProcessCursor {
field protected Long mCurrentRowID;
field protected int mRowIdColumnIndex;
field protected java.util.HashMap<java.lang.Long,java.util.Map<java.lang.String,java.lang.Object>> mUpdatedRows;
}
}
package android.graphics {
@Deprecated public class AvoidXfermode extends android.graphics.Xfermode {
ctor public AvoidXfermode(int, int, android.graphics.AvoidXfermode.Mode);
}
public enum AvoidXfermode.Mode {
enum_constant public static final android.graphics.AvoidXfermode.Mode AVOID;
enum_constant public static final android.graphics.AvoidXfermode.Mode TARGET;
}
public class Canvas {
method @Deprecated public boolean clipRegion(@NonNull android.graphics.Region, @NonNull android.graphics.Region.Op);
method @Deprecated public boolean clipRegion(@NonNull android.graphics.Region);
method @Deprecated public int save(int);
field @Deprecated public static final int CLIP_SAVE_FLAG = 2; // 0x2
field @Deprecated public static final int CLIP_TO_LAYER_SAVE_FLAG = 16; // 0x10
field @Deprecated public static final int FULL_COLOR_LAYER_SAVE_FLAG = 8; // 0x8
field @Deprecated public static final int HAS_ALPHA_LAYER_SAVE_FLAG = 4; // 0x4
field @Deprecated public static final int MATRIX_SAVE_FLAG = 1; // 0x1
}
public final class ImageDecoder implements java.lang.AutoCloseable {
method @Deprecated public boolean getAsAlphaMask();
method @Deprecated public boolean getConserveMemory();
method @Deprecated public boolean getDecodeAsAlphaMask();
method @Deprecated public boolean getMutable();
method @Deprecated public boolean getRequireUnpremultiplied();
method @Deprecated public android.graphics.ImageDecoder setAsAlphaMask(boolean);
method @Deprecated public void setConserveMemory(boolean);
method @Deprecated public android.graphics.ImageDecoder setDecodeAsAlphaMask(boolean);
method @Deprecated public android.graphics.ImageDecoder setMutable(boolean);
method @Deprecated public android.graphics.ImageDecoder setRequireUnpremultiplied(boolean);
method @Deprecated public android.graphics.ImageDecoder setResize(int, int);
method @Deprecated public android.graphics.ImageDecoder setResize(int);
field @Deprecated public static final int ERROR_SOURCE_ERROR = 3; // 0x3
field @Deprecated public static final int ERROR_SOURCE_EXCEPTION = 1; // 0x1
field @Deprecated public static final int ERROR_SOURCE_INCOMPLETE = 2; // 0x2
}
@Deprecated public static class ImageDecoder.IncompleteException extends java.io.IOException {
ctor public ImageDecoder.IncompleteException();
}
@Deprecated public class LayerRasterizer extends android.graphics.Rasterizer {
ctor public LayerRasterizer();
method public void addLayer(android.graphics.Paint, float, float);
method public void addLayer(android.graphics.Paint);
}
public class Paint {
method @Deprecated public android.graphics.Rasterizer getRasterizer();
method @Deprecated public android.graphics.Rasterizer setRasterizer(android.graphics.Rasterizer);
}
public class Picture {
method @Deprecated public static android.graphics.Picture createFromStream(@NonNull java.io.InputStream);
method @Deprecated public void writeToStream(@NonNull java.io.OutputStream);
}
@Deprecated public class PixelXorXfermode extends android.graphics.Xfermode {
ctor public PixelXorXfermode(int);
}
public class Rasterizer {
ctor public Rasterizer();
}
}
package android.graphics.drawable {
public class AnimatedImageDrawable extends android.graphics.drawable.Drawable implements android.graphics.drawable.Animatable2 {
method @Deprecated public int getLoopCount(int);
method @Deprecated public void setLoopCount(int);
field @Deprecated public static final int LOOP_INFINITE = -1; // 0xffffffff
}
}
package android.hardware {
public final class SensorDirectChannel implements java.nio.channels.Channel {
method @Deprecated public boolean isValid();
}
}
package android.media {
public final class AudioFormat implements android.os.Parcelable {
ctor public AudioFormat();
}
}
package android.media.tv {
public class TvView extends android.view.ViewGroup {
method public void requestUnblockContent(android.media.tv.TvContentRating);
}
}
package android.net {
@Deprecated public class NetworkBadging {
method @NonNull public static android.graphics.drawable.Drawable getWifiIcon(@IntRange(from=0, to=4) int, int, @Nullable android.content.res.Resources.Theme);
field public static final int BADGING_4K = 30; // 0x1e
field public static final int BADGING_HD = 20; // 0x14
field public static final int BADGING_NONE = 0; // 0x0
field public static final int BADGING_SD = 10; // 0xa
}
@IntDef({0x0, 0xa, 0x14, 0x1e}) @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) public static @interface NetworkBadging.Badging {
}
public final class Proxy {
field @Deprecated public static final String EXTRA_PROXY_INFO = "android.intent.extra.PROXY_INFO";
}
@Deprecated public class SSLCertificateSocketFactory extends javax.net.ssl.SSLSocketFactory {
method @Deprecated public static org.apache.http.conn.ssl.SSLSocketFactory getHttpSocketFactory(int, android.net.SSLSessionCache);
}
}
package android.nfc {
public final class NfcAdapter {
method @Deprecated public void disableForegroundNdefPush(android.app.Activity);
method @Deprecated public void enableForegroundNdefPush(android.app.Activity, android.nfc.NdefMessage);
method @Deprecated public boolean invokeBeam(android.app.Activity);
method @Deprecated public boolean isNdefPushEnabled();
method @Deprecated public void setBeamPushUris(android.net.Uri[], android.app.Activity);
method @Deprecated public void setBeamPushUrisCallback(android.nfc.NfcAdapter.CreateBeamUrisCallback, android.app.Activity);
method @Deprecated public void setNdefPushMessage(android.nfc.NdefMessage, android.app.Activity, android.app.Activity...);
method @Deprecated public void setNdefPushMessageCallback(android.nfc.NfcAdapter.CreateNdefMessageCallback, android.app.Activity, android.app.Activity...);
method @Deprecated public void setOnNdefPushCompleteCallback(android.nfc.NfcAdapter.OnNdefPushCompleteCallback, android.app.Activity, android.app.Activity...);
}
}
package android.os {
public class BatteryManager {
ctor public BatteryManager();
}
public final class PowerManager {
method public void goToSleep(long);
method @Deprecated public void userActivity(long, boolean);
method @Deprecated public void wakeUp(long);
}
public class RecoverySystem {
ctor public RecoverySystem();
}
public static final class StrictMode.ThreadPolicy.Builder {
method @NonNull public android.os.StrictMode.ThreadPolicy.Builder penaltyListener(@NonNull android.os.StrictMode.OnThreadViolationListener, @NonNull java.util.concurrent.Executor);
}
public static final class StrictMode.VmPolicy.Builder {
method @NonNull public android.os.StrictMode.VmPolicy.Builder penaltyListener(@NonNull android.os.StrictMode.OnVmViolationListener, @NonNull java.util.concurrent.Executor);
}
public final class SystemClock {
method @NonNull public static java.time.Clock elapsedRealtimeClock();
method @NonNull public static java.time.Clock uptimeClock();
}
public class TestLooperManager {
method @Deprecated public android.os.MessageQueue getQueue();
}
public class UserManager {
method public android.graphics.drawable.Drawable getBadgedDrawableForUser(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
method public android.graphics.drawable.Drawable getBadgedIconForUser(android.graphics.drawable.Drawable, android.os.UserHandle);
method public CharSequence getBadgedLabelForUser(CharSequence, android.os.UserHandle);
}
}
package android.os.storage {
public class StorageManager {
method @NonNull public android.os.storage.StorageVolume getPrimaryVolume();
method @NonNull public android.os.storage.StorageVolume[] getVolumeList();
}
}
package android.provider {
public class Browser {
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void addSearchUrl(android.content.ContentResolver, String);
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final boolean canClearHistory(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void clearHistory(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void clearSearches(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void deleteFromHistory(android.content.ContentResolver, String);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void deleteHistoryTimeFrame(android.content.ContentResolver, long, long);
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final android.database.Cursor getAllBookmarks(android.content.ContentResolver) throws java.lang.IllegalStateException;
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final android.database.Cursor getAllVisitedUrls(android.content.ContentResolver) throws java.lang.IllegalStateException;
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final void requestAllIcons(android.content.ContentResolver, String, android.webkit.WebIconDatabase.IconListener);
method public static final void saveBookmark(android.content.Context, String, String);
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void truncateHistory(android.content.ContentResolver);
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void updateVisitedHistory(android.content.ContentResolver, String, boolean);
field @RequiresPermission.Read(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") @RequiresPermission.Write(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final android.net.Uri BOOKMARKS_URI;
field public static final String[] HISTORY_PROJECTION;
field public static final int HISTORY_PROJECTION_BOOKMARK_INDEX = 4; // 0x4
field public static final int HISTORY_PROJECTION_DATE_INDEX = 3; // 0x3
field public static final int HISTORY_PROJECTION_FAVICON_INDEX = 6; // 0x6
field public static final int HISTORY_PROJECTION_ID_INDEX = 0; // 0x0
field public static final int HISTORY_PROJECTION_TITLE_INDEX = 5; // 0x5
field public static final int HISTORY_PROJECTION_URL_INDEX = 1; // 0x1
field public static final int HISTORY_PROJECTION_VISITS_INDEX = 2; // 0x2
field public static final String[] SEARCHES_PROJECTION;
field public static final int SEARCHES_PROJECTION_DATE_INDEX = 2; // 0x2
field public static final int SEARCHES_PROJECTION_SEARCH_INDEX = 1; // 0x1
field @RequiresPermission.Read(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") @RequiresPermission.Write(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final android.net.Uri SEARCHES_URI;
field public static final String[] TRUNCATE_HISTORY_PROJECTION;
field public static final int TRUNCATE_HISTORY_PROJECTION_ID_INDEX = 0; // 0x0
field public static final int TRUNCATE_N_OLDEST = 5; // 0x5
}
public static class Browser.BookmarkColumns implements android.provider.BaseColumns {
ctor public Browser.BookmarkColumns();
field public static final String BOOKMARK = "bookmark";
field public static final String CREATED = "created";
field public static final String DATE = "date";
field public static final String FAVICON = "favicon";
field public static final String TITLE = "title";
field public static final String URL = "url";
field public static final String VISITS = "visits";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
public static class Browser.SearchColumns implements android.provider.BaseColumns {
ctor public Browser.SearchColumns();
field public static final String DATE = "date";
field public static final String SEARCH = "search";
field @Deprecated public static final String URL = "url";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
@Deprecated public static final class ContactsContract.Contacts.StreamItems implements android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "stream_items";
}
@Deprecated public static final class ContactsContract.RawContacts.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "stream_items";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
@Deprecated public static final class ContactsContract.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String PHOTO = "photo";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
@Deprecated protected static interface ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String PHOTO_FILE_ID = "photo_file_id";
field @Deprecated public static final String PHOTO_URI = "photo_uri";
field @Deprecated public static final String SORT_INDEX = "sort_index";
field @Deprecated public static final String STREAM_ITEM_ID = "stream_item_id";
field @Deprecated public static final String SYNC1 = "stream_item_photo_sync1";
field @Deprecated public static final String SYNC2 = "stream_item_photo_sync2";
field @Deprecated public static final String SYNC3 = "stream_item_photo_sync3";
field @Deprecated public static final String SYNC4 = "stream_item_photo_sync4";
}
@Deprecated public static final class ContactsContract.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item";
field @Deprecated public static final android.net.Uri CONTENT_LIMIT_URI;
field @Deprecated public static final android.net.Uri CONTENT_PHOTO_URI;
field @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item";
field @Deprecated public static final android.net.Uri CONTENT_URI;
field @Deprecated public static final String MAX_ITEMS = "max_items";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
@Deprecated public static final class ContactsContract.StreamItems.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "photo";
field @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item_photo";
field @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item_photo";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
@Deprecated protected static interface ContactsContract.StreamItemsColumns {
field @Deprecated public static final String ACCOUNT_NAME = "account_name";
field @Deprecated public static final String ACCOUNT_TYPE = "account_type";
field @Deprecated public static final String COMMENTS = "comments";
field @Deprecated public static final String CONTACT_ID = "contact_id";
field @Deprecated public static final String CONTACT_LOOKUP_KEY = "contact_lookup";
field @Deprecated public static final String DATA_SET = "data_set";
field @Deprecated public static final String RAW_CONTACT_ID = "raw_contact_id";
field @Deprecated public static final String RAW_CONTACT_SOURCE_ID = "raw_contact_source_id";
field @Deprecated public static final String RES_ICON = "icon";
field @Deprecated public static final String RES_LABEL = "label";
field @Deprecated public static final String RES_PACKAGE = "res_package";
field @Deprecated public static final String SYNC1 = "stream_item_sync1";
field @Deprecated public static final String SYNC2 = "stream_item_sync2";
field @Deprecated public static final String SYNC3 = "stream_item_sync3";
field @Deprecated public static final String SYNC4 = "stream_item_sync4";
field @Deprecated public static final String TEXT = "text";
field @Deprecated public static final String TIMESTAMP = "timestamp";
}
public static final class Settings.Global extends android.provider.Settings.NameValueTable {
field @Deprecated public static final String CONTACT_METADATA_SYNC = "contact_metadata_sync";
}
public static final class Settings.System extends android.provider.Settings.NameValueTable {
field public static final String APPEND_FOR_LAST_AUDIBLE = "_last_audible";
field public static final String VOLUME_ALARM = "volume_alarm";
field public static final String VOLUME_BLUETOOTH_SCO = "volume_bluetooth_sco";
field public static final String VOLUME_MUSIC = "volume_music";
field public static final String VOLUME_NOTIFICATION = "volume_notification";
field public static final String VOLUME_RING = "volume_ring";
field public static final String[] VOLUME_SETTINGS;
field public static final String VOLUME_SYSTEM = "volume_system";
field public static final String VOLUME_VOICE = "volume_voice";
}
}
package android.speech.tts {
public abstract class UtteranceProgressListener {
method @Deprecated public void onUtteranceRangeStart(String, int, int);
}
}
package android.telephony {
public class NetworkScan {
method @Deprecated public void stop() throws android.os.RemoteException;
}
public class TelephonyManager {
method @Deprecated @RequiresPermission(android.Manifest.permission.ACCESS_COARSE_LOCATION) public java.util.List<android.telephony.NeighboringCellInfo> getNeighboringCellInfo();
method @Deprecated @RequiresPermission(allOf={android.Manifest.permission.MODIFY_PHONE_STATE, android.Manifest.permission.ACCESS_FINE_LOCATION}) public android.telephony.NetworkScan requestNetworkScan(android.telephony.NetworkScanRequest, android.telephony.TelephonyScanManager.NetworkScanCallback);
}
}
package android.text.format {
public class DateFormat {
field @Deprecated public static final char AM_PM = 97; // 0x0061 'a'
field @Deprecated public static final char CAPITAL_AM_PM = 65; // 0x0041 'A'
field @Deprecated public static final char DATE = 100; // 0x0064 'd'
field @Deprecated public static final char DAY = 69; // 0x0045 'E'
field @Deprecated public static final char HOUR = 104; // 0x0068 'h'
field @Deprecated public static final char HOUR_OF_DAY = 107; // 0x006b 'k'
field @Deprecated public static final char MINUTE = 109; // 0x006d 'm'
field @Deprecated public static final char MONTH = 77; // 0x004d 'M'
field @Deprecated public static final char QUOTE = 39; // 0x0027 '\''
field @Deprecated public static final char SECONDS = 115; // 0x0073 's'
field @Deprecated public static final char STANDALONE_MONTH = 76; // 0x004c 'L'
field @Deprecated public static final char TIME_ZONE = 122; // 0x007a 'z'
field @Deprecated public static final char YEAR = 121; // 0x0079 'y'
}
}
package android.text.style {
public class RasterizerSpan extends android.text.style.CharacterStyle implements android.text.style.UpdateAppearance {
ctor public RasterizerSpan(android.graphics.Rasterizer);
method public android.graphics.Rasterizer getRasterizer();
method public void updateDrawState(android.text.TextPaint);
}
}
package android.util {
@Deprecated public class FloatMath {
method public static float ceil(float);
method public static float cos(float);
method public static float exp(float);
method public static float floor(float);
method public static float hypot(float, float);
method public static float pow(float, float);
method public static float sin(float);
method public static float sqrt(float);
}
}
package android.view {
@UiThread public class View implements android.view.accessibility.AccessibilityEventSource android.graphics.drawable.Drawable.Callback android.view.KeyEvent.Callback {
method protected void initializeFadingEdge(android.content.res.TypedArray);
method protected void initializeScrollbars(android.content.res.TypedArray);
}
public class ViewConfiguration {
method public int getScaledScrollFactor();
}
public static class WindowManager.LayoutParams extends android.view.ViewGroup.LayoutParams implements android.os.Parcelable {
field public static final int TYPE_KEYGUARD = 2004; // 0x7d4
field public static final int TYPE_STATUS_BAR_PANEL = 2014; // 0x7de
}
}
package android.view.accessibility {
public static final class AccessibilityNodeInfo.CollectionItemInfo {
method @Deprecated @NonNull public static android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo obtain(@Nullable String, int, int, @Nullable String, int, int, boolean, boolean);
}
}
package android.view.translation {
public final class TranslationManager {
method @Deprecated public void addOnDeviceTranslationCapabilityUpdateListener(int, int, @NonNull android.app.PendingIntent);
method @Deprecated public void addTranslationCapabilityUpdateListener(int, int, @NonNull android.app.PendingIntent);
method @Deprecated @Nullable @WorkerThread public android.view.translation.Translator createOnDeviceTranslator(@NonNull android.view.translation.TranslationContext);
method @Deprecated @Nullable @WorkerThread public android.view.translation.Translator createTranslator(@NonNull android.view.translation.TranslationContext);
method @Deprecated @NonNull @WorkerThread public java.util.Set<android.view.translation.TranslationCapability> getTranslationCapabilities(int, int);
method @Deprecated @Nullable public android.app.PendingIntent getTranslationSettingsActivityIntent();
method @Deprecated public void removeOnDeviceTranslationCapabilityUpdateListener(int, int, @NonNull android.app.PendingIntent);
method @Deprecated public void removeTranslationCapabilityUpdateListener(int, int, @NonNull android.app.PendingIntent);
}
public static final class TranslationRequest.Builder {
method @Deprecated @NonNull public android.view.translation.TranslationRequest.Builder addTranslationRequestValue(@NonNull android.view.translation.TranslationRequestValue);
method @Deprecated @NonNull public android.view.translation.TranslationRequest.Builder addViewTranslationRequest(@NonNull android.view.translation.ViewTranslationRequest);
}
public static final class TranslationResponse.Builder {
method @Deprecated @NonNull public android.view.translation.TranslationResponse.Builder setTranslationStatus(int);
}
public final class TranslationSpec implements android.os.Parcelable {
ctor @Deprecated public TranslationSpec(@NonNull String, int);
method @Deprecated @NonNull public String getLanguage();
}
public class Translator {
method @Deprecated @Nullable public void translate(@NonNull android.view.translation.TranslationRequest, @NonNull java.util.concurrent.Executor, @NonNull java.util.function.Consumer<android.view.translation.TranslationResponse>);
}
public interface UiTranslationStateCallback {
method @Deprecated public default void onStarted(@NonNull String, @NonNull String);
}
}
package android.webkit {
public class WebChromeClient {
method @Deprecated public void onReachedMaxAppCacheSize(long, long, android.webkit.WebStorage.QuotaUpdater);
}
public abstract class WebSettings {
method @Deprecated public void setAppCacheEnabled(boolean);
method @Deprecated public void setAppCacheMaxSize(long);
method @Deprecated public void setAppCachePath(String);
}
public class WebViewClient {
method public void onUnhandledInputEvent(android.webkit.WebView, android.view.InputEvent);
}
}
package android.widget {
@android.widget.RemoteViews.RemoteView public class ListView extends android.widget.AbsListView {
method protected <T extends android.view.View> T findViewTraversal(@IdRes int);
method protected <T extends android.view.View> T findViewWithTagTraversal(Object);
}
public class PopupWindow {
method @Deprecated public boolean isClipToScreenEnabled();
method @Deprecated public boolean isLayoutInScreenEnabled();
method @Deprecated public void setClipToScreenEnabled(boolean);
method @Deprecated public void setLayoutInScreenEnabled(boolean);
}
@android.widget.RemoteViews.RemoteView public class TextView extends android.view.View implements android.view.ViewTreeObserver.OnPreDrawListener {
method public static int getTextColor(android.content.Context, android.content.res.TypedArray, int);
method public static android.content.res.ColorStateList getTextColors(android.content.Context, android.content.res.TypedArray);
}
}
|