- 浏览: 120934 次
最新评论
文章列表
A class for handling geocoding and reverse geocoding. Geocoding is the process of transforming a street address or other description of a location into a (latitude, longitude) coordinate. Reverse geocoding is the process of transforming a (latitude, longitude) coordinate into a (partial) a ...
Android中引入第三方Jar包的方法(java.lang.NoClassDefFoundError解决办法)
1、在工程下新建lib文件夹,将需要的第三方包拷贝进来。2、将引用的第三方包,添加进工作的build path。3、(关键的一步)将lib设为源文件夹。如果不设置,则程序编译可以通过,但运行的时候,会报:
java.lang.NoClassDefFoundError
The approach RSE uses for downloading and uploading is a design decision. When opening a file for editing, RSE downloads to the RemoteSystemsTempFiles project so that the file can be edited as an IFile using standard Eclipse editors. This project is a local cache of downloaded files wi ...
android java.util.ConcurrentModificationException
1. 使用 java.util.concurrent 包下的集合
java.util.concurrent.ConcurrentHashMap;
java.util.concurrent.CopyOnWriteArrayList;
Please refer to http://www.javacodegeeks.com/2011/05/avoid-concurrentmodificationexception.html
2. 循环 l ...
http://blog.sina.com.cn/s/blog_74c22b210100sfix.html
http://cjch.iteye.com/blog/1122382
http://blog.csdn.net/l_serein/article/details/6127300
(以下内容转自网络)
这两天可憋坏我了,一直愁没什么题材可以充实我的博客,正巧最近遇到一个比较棘手的问题:
使用GPS定位无法获取当前的地理位置,即getLastKnownLocation方法始终返回null。
后来一篇博文 getLastKnownLocation()返回null的解决 帮了我 ...
Android 常用 Intent (拨号,浏览器,联系人,Wi-Fi, 浏览器查询等等)
package com.mrzhu.intenttest;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
http://www.oschina.net/translate/9_fallacies_java_performance?from=20130505
Java性能问题被冠以某种黑暗魔法的称谓。一部分是因为其平台的复杂性,在很多情况下,无法定位其性能问题根源。然而,在以前对于Java性能的技巧,有一种趋向:认为其由人们的智慧,经验构成,而不是应用统计和实证推理。在这篇文章中,我希望去验证一些最荒谬的技术神话。
1. Java运行慢
在所有最过时的Java性能谬论当中,这可能是最明显的言论。
是的,在90年代和20年代初期,Java确实有点慢。
然而,在那之后, ...
错误:
02-23 13:59:20.245: E/AndroidRuntime(30690): android.view.WindowManager$BadTokenException: Unable to add window -- token android.app.LocalActivityManager$LocalActivityRecord@4054b8f8 is not valid; is your activity running?
TabActivity 里指定了一个 Activity 1,Activity 1 里又包含了另外一个Activity 2, 在 Act ...
打电话和发短信可以说是最核心的应用了,本文就来阐述它的调用方法。可以分为直接调用--直接电话或短信发出,已经间接调用--进入拨号或短信撰写页面,等待用户确认内容后由用户发出.
先看代码效果截图:
先编写主 ...
我们看到很多Android应用都具有自动更新功能,用户一键就可以完成软件的升级更新。得益于Android系统的软件包管理和安装机制,这一功能实现起来相当简单,下面我们就来实践一下。首先给出界面效果:
1. 准备知识 在AndroidManifest.xml里定义了每个Android apk的版本标识:
[xhtml] view plaincopy
Related API:
ActivityInfo.java
Activity.java
// switch the screen orientation together
// portrait: 竖向, default orientation in manifest.xml; landscape: 横向
if (getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {
set ...
/**
* Cancel the dialog. This is essentially the same as calling {@link #dismiss()}, but it will
* also call your {@link DialogInterface.OnCancelListener} (if registered).
*/
public void cancel() {
if (mCancelMessage != null) {
// Obta ...
Support Library
IN THIS DOCUMENT
Revisions
Downloading the Support Package
Setting Up a Project to Use a Library
Using the v4 Library APIs
Reference Docs