`
kh477kh
  • 浏览: 36327 次
社区版块
存档分类
最新评论

解决导入Android-sample出错问题

 
阅读更多

解决导入Android-sample出错问题
2011年07月26日
  1、错误信息:
  [2011-07-26 17:18:25 - ApiDemos] F:\android\android-sdk_r12-windows\android-sdk-windows\platforms\android-4\samples\ApiDemos\res\values\strings.xml:643: error: Apostrophe not preceded by \ (in  The Android platform is a software stack for mobile devices including an
  [2011-07-26 17:18:25 - ApiDemos]  operating system, middleware and key applications. Developers can create
  [2011-07-26 17:18:25 - ApiDemos]  applications for the platform using the Android SDK. Applications are written
  [2011-07-26 17:18:25 - ApiDemos]  using the Java programming language and run on Dalvik, a custom virtual
  [2011-07-26 17:18:25 - ApiDemos]  machine designed for embedded use which runs on top of a Linux kernel.
  [2011-07-26 17:18:25 - ApiDemos]
  [2011-07-26 17:18:25 - ApiDemos]  If you want to know how to develop applications for Android, you\'re in the
  [2011-07-26 17:18:25 - ApiDemos]  right place. This site provides a variety of documentation that will help you
  [2011-07-26 17:18:25 - ApiDemos]  learn about Android and develop mobile applications for the platform.
  [2011-07-26 17:18:25 - ApiDemos]
  [2011-07-26 17:18:25 - ApiDemos]  An early look at the the Android SDK is also available. It includes sample
  [2011-07-26 17:18:25 - ApiDemos]  projects with source code, development tools, an emulator, and of course all
  [2011-07-26 17:18:25 - ApiDemos]  the libraries you'll need to build an Android application. What would it take
  [2011-07-26 17:18:25 - ApiDemos]  to build a better mobile phone?
  [2011-07-26 17:18:25 - ApiDemos] )
  [2011-07-26 17:18:25 - ApiDemos] F:\android\android-sdk_r12-windows\android-sdk-windows\platforms\android-4\samples\ApiDemos\res\layout\scrollbar3.xml:87: error: Error: No resource found that matches the given name (at 'text' with value '@string/scrollbar_3_text').
  [2011-07-26 17:18:25 - ApiDemos] F:\android\android-sdk_r12-windows\android-sdk-windows\platforms\android-4\samples\ApiDemos\res\layout\scrollbar3.xml:100: error: Error: No resource found that matches the given name (at 'text' with value '@string/scrollbar_3_text').
  [2011-07-26 17:18:25 - ApiDemos] F:\android\android-sdk_r12-windows\android-sdk-windows\platforms\android-4\samples\ApiDemos\res\layout\scrollbar3.xml:117: error: Error: No resource found that matches the given name (at 'text' with value '@string/scrollbar_3_text').
  [2011-07-26 17:18:25 - ApiDemos] F:\android\android-sdk_r12-windows\android-sdk-windows\platforms\android-4\samples\ApiDemos\res\layout\scrollbar3.xml:129: error: Error: No resource found that matches the given name (at 'text' with value '@string/scrollbar_3_text').
  解决办法:修改文件ApiDemos\res\values\strings.xml 把该文件中所有 ' 转义成 \'
  涉及的行数:
      365行:I\'m off!
      366行:I\'m on!
      635行:If you want to know how to develop applications for Android, you\'re in the
      641行:the libraries you\'ll need to build an Android application. What would it take
  2、关于Conversion to Dalvik format failed with error 1错误的解决:
  A:我的办法,直接把引用错误的jar删掉。
  B:网上转载:
  android低版本工程(如1.5)放到高版本环境中(如2.2)可能会上述错误,解决方法如下:
  1。 如果不修改android sdk版本,则使用project clean 命令作用于某工程即可。
  (该处理方式只是在高版本中兼容了低版本工程,未真正意义上的升级)
  2。 如果修改android sdk版本,则需要以下几个步骤:
  1)修改SDK
  选择工程,build path --> configure build path ---> library 删除引用的低版本SDK,
  然后add External JARs,选择高版本SDK,OK,保存
  2)修改classpath文件
  该文件可能存在该项:
  3) 修改AndroidManifest.xml
  在AndroidManifest.xml文件中,application标签后添加
  4) 修改default.properties(很重要)
  该文件最后一行(前面没用#的)target=android-3 该成target=android-8,保存。
  再看看你的工程和新建的android 2.2的工程结构就一样了。
分享到:
评论

相关推荐

    Android-FTDI-UART-Sample-master1.zip_Android串口usb_android_usb_串口

    这个名为"Android-FTDI-UART-Sample-master1.zip"的压缩包提供了一个示例项目,帮助开发者了解如何在Android设备上实现USB到UART(通用异步接收发送器)的转换,从而通过USB接口使用串口功能。下面将详细介绍这一...

    Android-WiFi-Connection-Demo-Code-Sample-master.zip

    Android-WiFi-Connection-Demo-Code-Sample-master.zipAndroid-WiFi-Connection-Demo-Code-Sample-master.zipAndroid-WiFi-Connection-Demo-Code-Sample-master.zipAndroid-WiFi-Connection-Demo-Code-Sample-master...

    Android代码-sample-of-Android-week-view

    sample-of-Android-week-view This is a sample of android week view,Thanks the author of android week view ,The WeekHeaderView is based on android week view .This project contains two view ,the header ...

    libvlc-android-sample_spline_libvlcandroid_android_

    【标题】"libvlc-android-sample_spline_libvlcandroid_android_" 指的是一个基于 Android 平台的 VLC 媒体播放器示例项目。这个项目利用了 libvlcandroid 库,该库是 VLC 媒体播放器的 Android 版本的核心组件。 ...

    SwiftAndroid-Sample,Android上的Swift示例.zip

    在Android开发中引入Swift,可以提升代码的可读性和开发效率,同时利用Swift的特性解决特定问题,如处理复杂的数据结构或优化计算密集型任务。 6. **实际应用场景**:SwiftAndroid-Sample对于希望利用Swift优势开发...

    circle-ci-android-sample-源码.rar

    circle-ci-android-sample-源码.rar

    wiremock-android-sample-源码.rar

    这个“wiremock-android-sample”项目则是 WireMock 在 Android 开发环境中的应用实例,通过分析其源码,我们可以深入理解如何在 Android 应用中有效地利用 WireMock 进行服务模拟。 1. **WireMock 的基本概念** ...

    vuforia-sdk-android-8-6-7_0.zip

    Vuforia SDK for Android 8-6-7 是高通公司提供的一个强大的增强现实(AR)开发工具,专门针对Unity引擎设计。这个版本的SDK包含了所有必要的组件,让开发者能够为Android设备创建富有交互性的AR应用。以下是关于...

    Android sensor-sample.zip

    "Android sensor-sample.zip"是一个专为Android开发人员设计的示例项目,用于演示如何获取并处理设备上的传感器数据。这个压缩包中包含了一个简单的Android应用,通过它,我们可以深入理解Android传感器API的使用。 ...

    Android代码-Android-Skin-Loader

    解决Fragment换肤在某些版本的support-v4包下失效的问题(感谢@javake同学)(2015-12-02) 对textColor加入selector类型的资源的换肤支持(感谢@pinotao同学) (2015-09-26) 添加在代码中创建的View的换肤支持 (2015-...

    Android代码-Android-MVP-Sample-Application

    Android MVP Sample Application A basic sample android application to understand MVP in a very simple way. Just clone, build, run and understand MVP. Check out Mindorks awesome open source projects ...

    salem-sample-data.zip

    【标题】"salem-sample-data.zip"所代表的是一个压缩包文件,其中包含了用于研究和毕业设计的数据集。这样的资源对于学术研究、数据分析以及学习如何处理和分析数据来说是非常宝贵的。 【描述】"精品数据集,用作...

    Android代码-android-mvi-sample

    android-mvi-sample Example MVI implementation, based off of Google's architectural samples. Description This is a sample implementation of the Model View Intent pattern. Full Android examples for MVI...

    android-license-sample,.zip

    这个名为"android-license-sample"的开源项目,是针对WinTicket应用程序的一个实例,旨在展示如何在Android应用中集成和处理许可证验证。通过这个项目,我们可以学习到关于Android应用中许可证管理的重要知识。 1. ...

    aptfit-android-sample,.zip

    【压缩包子文件的文件名称列表】:“aptfit-android-sample-master”表明这是主分支的源代码,通常包括项目的所有文件和目录,如Java源码、XML布局文件、资源文件(如图片、字符串、颜色等)、Gradle构建脚本以及...

    android-sdk-source-sample

    android sdk sources sample 目录,解压至sdk即可

    Android-development-sample---IMF.rar_Android softKeyboard_androi

    【标题】"Android-development-sample---IMF.rar"与"Android softKeyboard_androi"结合,意味着这是一个关于Android开发的示例项目,特别关注于实现输入法框架(Input Method Framework,简称IMF),并且涉及到软...

    Android aidl-sample.zip

    **Android AIDL(Android Interface Definition Language)是Android系统提供的一种接口定义语言,用于实现不同进程间的通信(IPC,Inter-Process Communication)。AIDL允许开发者定义服务接口,使得一个应用程序...

    vuforia-sdk-sample-android-8.1.zip

    这个“vuforia-sdk-sample-android-8.1.zip”压缩包包含了Vuforia SDK的8.1版本以及相关的示例项目,旨在帮助开发者快速理解和掌握Vuforia在Android上的应用。 Vuforia SDK的核心功能包括: 1. **目标识别与追踪**...

    Android代码-sample-googleassistant

    This sample shows how to call the Google Assistant Service from Android Things using gRPC. It records a spoken request from the connected microphones, sends it to the Google Assistant API and plays ...

Global site tag (gtag.js) - Google Analytics