source code for intent in android


SUBMITTED BY: Guest

DATE: April 23, 2014, 6:52 p.m.

FORMAT: Text only

SIZE: 2.4 kB

HITS: 1363

  1. 1
  2. /*
  3. 2
  4. * Copyright (C) 2006 The Android Open Source Project
  5. 3
  6. *
  7. 4
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. 5
  10. * you may not use this file except in compliance with the License.
  11. 6
  12. * You may obtain a copy of the License at
  13. 7
  14. *
  15. 8
  16. * http://www.apache.org/licenses/LICENSE-2.0
  17. 9
  18. *
  19. 10
  20. * Unless required by applicable law or agreed to in writing, software
  21. 11
  22. * distributed under the License is distributed on an "AS IS" BASIS,
  23. 12
  24. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  25. 13
  26. * See the License for the specific language governing permissions and
  27. 14
  28. * limitations under the License.
  29. 15
  30. */
  31. 16
  32. 17
  33. package android.content;
  34. 18
  35. 19
  36. import org.xmlpull.v1.XmlPullParser;
  37. 20
  38. import org.xmlpull.v1.XmlPullParserException;
  39. 21
  40. 22
  41. import android.annotation.SdkConstant;
  42. 23
  43. import android.annotation.SdkConstant.SdkConstantType;
  44. 24
  45. import android.content.pm.ActivityInfo;
  46. 25
  47. import android.content.pm.PackageManager;
  48. 26
  49. import android.content.pm.ResolveInfo;
  50. 27
  51. import android.content.res.Resources;
  52. 28
  53. import android.content.res.TypedArray;
  54. 29
  55. import android.graphics.Rect;
  56. 30
  57. import android.net.Uri;
  58. 31
  59. import android.os.Bundle;
  60. 32
  61. import android.os.IBinder;
  62. 33
  63. import android.os.Parcel;
  64. 34
  65. import android.os.Parcelable;
  66. 35
  67. import android.util.AttributeSet;
  68. 36
  69. import android.util.Log;
  70. 37
  71. 38
  72. import com.android.internal.util.XmlUtils;
  73. 39
  74. 40
  75. import java.io.IOException;
  76. 41
  77. import java.io.Serializable;
  78. 42
  79. import java.net.URISyntaxException;
  80. 43
  81. import java.util.ArrayList;
  82. 44
  83. import java.util.HashSet;
  84. 45
  85. import java.util.Iterator;
  86. 46
  87. import java.util.Set;

comments powered by Disqus