zoukankan      html  css  js  c++  java
  • android-support-v7-appcompat的配置使用

    直接将android-support-v7-appcompat.jar包拷贝到项目的libs/下面是不能使用的,具体做法官方文档给出了详细说明:

    (开发环境是ADT)

    Using Eclipse

    Create a library project based on the support library code:

    1. Make sure you have downloaded the Android Support Library using the SDK Manager.
    2. Create a library project and ensure the required JAR files are included in the project's build path:
      1. Select File > Import.
      2. Select Existing Android Code Into Workspace and click Next.
      3. Browse to the SDK installation directory and then to the Support Library folder. For example, if you are adding theappcompat project, browse to <sdk>/extras/android/support/v7/appcompat/.
      4. Click Finish to import the project. For the v7 appcompat project, you should now see a new project titled android-support-v7-appcompat.
      5. In the new library project, expand the libs/ folder, right-click each .jar file and select Build Path > Add to Build Path. For example, when creating the the v7 appcompat project, add both the android-support-v4.jar andandroid-support-v7-appcompat.jar files to the build path.
      6. Right-click the project and select Build Path > Configure Build Path.
      7. In the Order and Export tab, check the .jar files you just added to the build path, so they are available to projects that depend on this library project. For example, the appcompat project requires you to export both the android-support-v4.jar and android-support-v7-appcompat.jar files.
      8. Uncheck Android Dependencies.
      9. Click OK to complete the changes.

    You now have a library project for your selected Support Library that you can use with one or more application projects.

    Add the library to your application project:

    1. In the Project Explorer, right-click your project and select Properties.
    2. In the Library pane, click Add.
    3. Select the library project and click OK. For example, the appcompat project should be listed as android-support-v7-appcompat.
    4. In the properties window, click OK.
  • 相关阅读:
    【转载】搜索题目推荐
    HDU 4629 Burning 几何 + 扫描线
    HDU 4630 No Pain No Game 树状数组+离线查询
    SPOJ 416 Divisibility by 15 细节题
    【转载】树状数组题目
    SPOJ 274 Johnny and the Watermelon Plantation(TLE)
    SPOJ 227 Ordering the Soldiers 线段树 / 树状数组
    HDU 4620 Fruit Ninja Extreme 搜索
    Java序列化与反序列化
    Java IO包装流如何关闭?
  • 原文地址:https://www.cnblogs.com/yshyee/p/3411693.html
Copyright © 2011-2022 走看看