`
文章列表
   需求(问题)描述:    Android应用程序开发中,把其中一个代码工程(A project)做成jar,被引用到另一个代码工程(B project)中。    应用场景:    1、当前project中用到了原来一个project的代码;又不想在原来project上改。 ...
最近采用原生控件+前端技术开发Android、iOS客户端的方式很流行,其实这种技术方案出现很久了;后来随着html5的发布,采用前端技术也可以渲染出炫丽的视觉界面,这种方案就更加流行起来;另外,复用性高,节约成本,也是其得以流行的原因之一。 原生控件和前端技术结合的实现方式有两种: 1、前端静态资源在客户端    将静态文件(html、js、css、图片等)放在assets目录下,用下面方法将WebView和html文件绑定: //Android实现: public WebView initWebView(WebView webView){ android.view.ViewGrou ...
在iOS开发中,对NSString的操作是最十分常见的,这里只整理一些常用处理NSString字符串的方法。 持续更新中... // 去除空白(空格、\n\t\r) NSString *str = [stringValue stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; // 判断是否为空 + (BOOL)isBlankString:(NSString *)string{     if (string == nil) {         return YES;     }     if (st ...
Access restriction: The type BASE64Decoder is not accessible due to restriction on required library D:\java\jre1.5.0_08\lib\rt.jar 在网上找到了解决方法如下,我是用第二种方法解决的~~ Solution 1 : import=”sun.misc.BASE64Decoder” 出现错误提示为:Access restriction: The type BASE64Decoder is not accessible due to restriction on ...
使用AsyncHttpClient向服务端提交数据,有时需要带cookie。给AsyncHttpClient设置Cookie的方法如下: AsyncHttpClient myClient = new AsyncHttpClient(); PersistentCookieStore myCookieStore = new PersistentCookieStore(this); BasicClientCookie newCookie = new BasicClientCookie("name1", "value1"); newCookie.setVers ...
Finder->应用程序->实用工具->终端 如果显示所有隐藏的文件(夹),使用命令: defaults write com.apple.finder AppleShowAllFiles -bool true 如果要不再显示隐藏的文件(夹),使用命令: defaults write com.apple.finder AppleShowAllFiles -bool false
Global site tag (gtag.js) - Google Analytics