摘要:
1. 打开网页时不调用系统浏览器, 而是在本WebView中显示:mWebView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView vi... 阅读全文
摘要:
1、如何将一个android工程作为库工程(library project)library project是作为jar包被其它android工程使用的,首先它也是普通的android工程。然后:1)在eclipse Package Explorer,右键android工程选择Properties2)... 阅读全文
摘要:
工程上右键 选择export 然后取消选择这个工程里的所有的文件 点开到gen文件夹下选择aidl生成的 java文件 选择生成的java文件和src目录导出jar包即可 AIDL 的编写主要为以下三部分: 创建要操作的实体类,实现 Parcelable 接口,以便序列化/反序列化 新建 aidl 阅读全文
摘要:
1) File>Import>General>Existing Project into Workspace2) File>Import>Android>Existing Code into Workspace 阅读全文
摘要:
Found the solution myself in the end. The problem was not with theLinearLayout,but with theScrollView(seems weird, considering the fact that theScroll... 阅读全文
摘要:
一、生成密钥库将位置定位在jdk的bin文件中,输入以下命名行:keytool -genkey -alias ChangeBackgroundWidget.keystore -keyalg RSA -validity 20000 -keystore ChangeBackgroundWidget.keystore(中间不换行),按下“Enter”键,并根据提示填写相关信息,详细信息如下及图1(validity为有效期,这里有效期为20000天):输入keystore密码:再次输入新密码:您的名字与姓氏是什么?[Unknown]:mythlink您的组织单位名称是什么?[Unknown]:www. 阅读全文
摘要:
很多人都在讨论如何让图片能在异步加载更加流畅,可以显示大量图片,在拖动ListView的时候不会出现卡的现象。关于ImageLoader这个开源框架的使用有很多网友都介绍过,不过还不够清楚,这里有一个关于这个开源项目的完美例子,ListView的图片加载、GridView的图片加载、ViewPager的图片加载、Gallery画廊的图片加载、Widget的使用。很完善的一个例子,在这里我把所有界面效果做出博客分享出来,需要源码的朋友到我的资源页下载下载地址:http://download.csdn.net/detail/wwj_748/5975847要使用ImageLoader就要到这里下载j 阅读全文
摘要:
运行adb出现这种错误:bash: ./adb: No such file or directory 但adb确实存在。那说明你用的是64位的Linux,没装32位运行时库,安装$ sudoapt-getinstallia32-libs 如遇到Package has no installation ... 阅读全文
摘要:
ubuntu 10.10sudo apt-get update404 Not Found or W: Failed to fetch http://cn.old-releases.ubuntu.com/ubuntusudo gedit /etc/apt/sources.listctrl+hsearch for http://cn.old-releases.ubuntu.com/ubuntu or http://cn.old-releases.ubuntu.com/ubuntureplace with http://old-releases.ubuntu.com/ubuntu 阅读全文
摘要:
[2013-11-19 14:18:48 - Dex Loader] Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.[2013-11-19 14:18:48 - AsyncDemo] Conversion to Dalvik format failed: Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.一、项目中 阅读全文