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