编译警告:This project was created using a version of
compiler that is not currently installed: 6.0.3 [C2000]. Another version of the
compiler will be used...
分类:
其他好文 时间:
2014-05-23 12:16:21
阅读次数:
3014
在eclipse下的日志文档:!SESSION 2014-05-19 17:23:10.833
-----------------------------------------------
eclipse.buildId=4.3.2.M20140221-1700 java.version=1.8....
分类:
编程语言 时间:
2014-05-23 10:56:13
阅读次数:
457
解决办法:首选找到 build path - 然后选择 Configure build
path项选择 "Order and Export" 栏选中
"achartengine-1.0.0.jar“,然后让它置顶,点击"UP"更新你的项目(Project ->
Clean...)碰到包类似的错,也....
分类:
编程语言 时间:
2014-05-23 10:24:56
阅读次数:
311
出现此问题,一般是提示在 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 这行出错。
此问题是proguard-android.txt这个文件找不到,这个文件在
${sdk.dir}\tools\proguard\proguard-android.txt:progua...
分类:
移动开发 时间:
2014-05-23 07:46:05
阅读次数:
275
Create a Project with Eclipse
Click New in the toolbar.In the window that appears, open the Android folder, select Android Application Project, and click Next.
Figure 1. The New Android A...
分类:
系统相关 时间:
2014-05-22 11:55:51
阅读次数:
418
Gallery和swithcer联合使用
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complian...
分类:
其他好文 时间:
2014-05-22 11:19:05
阅读次数:
288
1.import javax.servlet.http.HttpServletRequest 导入包出错
导入包出错,通常是包未引入,HttpServletRequest包是浏览器通过http发出的请求, 需要将tomcat/lib 目录下的 servlet-api.jar导入。但是导入后仍然不行,重启eclipse也无法让他生效
最后通过 project -clean来生效的。
...
分类:
系统相关 时间:
2014-05-22 10:48:25
阅读次数:
379
1).pro文件#-------------------------------------------------
#
# Project created by QtCreator 2014-05-18T12:56:52
#
#-------------------------------------------------
QT += core gui
greaterThan(...
分类:
其他好文 时间:
2014-05-22 09:43:53
阅读次数:
405
1.在工程下新建 jni/libs 文件夹 , jni 是和原来的libs 同级 ,将所有的.so文件放入 新建的libs文件下
2.在build.gradle 文件中新增以下内容到android{ } 下
task copyNativeLibs(type: Copy) {
from(new File(project(':HealthCare'...
分类:
移动开发 时间:
2014-05-22 08:50:52
阅读次数:
381
出现此情况,应该是使用了gradle wrapper时候,创建工程时使用的gradle版本比当前使用的版本低得情况。此时log会提示 去修改 project_root/gradle/wrapper/gradle-wrapper.properties这个文件中
distributionUrl=http\://services.gradle.org/distributions/gradle-1.1...
分类:
其他好文 时间:
2014-05-20 14:01:16
阅读次数:
239