自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (23)
  • 收藏
  • 关注

原创 Android相关网络资源整理

一、官方网站:http://source.android.com/http://android.git.kernel.orghttp://source.android.com       http://code.google.com/android  http://developer.android.com二、博客同道中人:http://blog.csdn.net/Zengyangtech三、国外论坛:http://www.anddev.org/http://forum.xda-developers.com

2010-08-14 11:36:00 3022

转载 通过WebView实现页面与ANDRIOD客户端的交互

     为了减少由于手机客户端的变更而造成的客户端反复更新,还是决定采用WebView+页面的展示方式来作为最终的方案。也与一些做手机应用开发的一些朋友咨询过,大概也是采用类似的思路。    采用WebView的方式有个比较关键的问题需要解决,就是页面与Andriod客户端进行交互,只有实现交互才可以更好的控制手机客户端与web服务器间的通讯,进行请求,应答的加密、压缩等等。    还是老办法,在google上百度一下,一切就是那么简单。引用下面一段代码,看一下就明白了看我们的html文档:Html代码 

2010-08-31 16:22:00 3961 1

转载 转载: WebView学习指南

<br /><br />转自: http://android.yaohuiji.com/archives/734<br /> <br />本讲内容:WebView的使用方法<br />今天我们来学习一个可以显示网页的控件WebView。WebView的网页渲染引擎和Safari、Chrome一样都是Webkit。使用WebView进行互联网程序开发有以下优点: <br />1、可以打开远程网址、也可以加载本地Html数据 <br />2、可以搭建Java和Javascript交互桥梁 <br />3、Web

2010-08-31 15:50:00 3697 1

转载 android 中对xml 进行解析

因为在开发中,我们会常用到xml文件的读写操作,因为手机操作有很多版本问题和很多小数据在数据库不是良好的解决方案。所以会用到很多xml操作。android开发一般对xml操作常用三种技术:sax、dom、pull分别详细的进行介绍:首先创建开发测试坏境(一下三种方法都会使用这个环境)

2010-08-31 14:30:00 922

原创 学习HTML, XML, javascript的好地方

http://www.w3schools.com

2010-08-31 12:02:00 683

原创 关于android旋屏问题

在android中横屏状态为: landscape, 竖屏状态为:portait。1. activity启动时设置横屏与竖屏:    在androidManifest.xml中设置android:screenOrientation="landscape", 如xml文件:...

2010-08-27 18:02:00 3243

转载 MIME 参考手册

很久以来(大概自己找了1-2天左右),都不明白Andriod平台上MIME类型是一个什么概念,偶然间得知原来是这么一回事。故把这篇参考资料贴在这里,以供大家参考。这个应该会解决好多人的问题。    多用途互联网邮件扩展(MIME,Multipurpose Internet Mail Extensions)是一个互联网标准,它扩展了电子邮件标准,使其能够支持非ASCII字符、二进制格式附件等多种格式的邮件消息。这个标准被定义在;RFC 2045,; RFC 2046,; RFC 2047,; RFC 2048

2010-08-26 15:54:00 1307

原创 Android sqlite3命令行操作方法

sqlite3可用命令行实现简便操作,方便手工数据库录入进行测试, 方法如下:#sqlite3SQLite version 3.5.9Enter ".help" for instructionssqlite>如使用数据库/data/data/com.android.providers.telephony/databases/telephony.db则用命令:#sqlite3 telephony.dbSQLite version 3.5.9Enter ".help" for instructionssqlit

2010-08-24 13:35:00 13148 1

转载 ContentProvider共享数据和ContentResolver的使用,Uri,UriMatcher和ContentUris

<br /><br /> <br />转载: http://blog.csdn.net/getclass/archive/2010/03/02/5340244.aspx<br /> <br />这几天的学习,都是Android很实用的地方.所以练习起来,特别的有精神.今天主要学习的是Android中,统一数据访问的方式,和一些为了方便开 发.由系统提供的一些实用的工具类.如:用于匹配Uri的UriMatcher和获取Uri路径后面ID的ContentUris.这在工作中一定会用到 的,所以要认真的终结.<b

2010-08-23 13:36:00 1642

原创 Android TabWidget设计模板

<br /><br /> <br /> <br />xxxxxxxxActivity .java:<br />package com.fp.app.CmccWireless;<br /> <br />import android.app.Activity;<br />import android.app.TabActivity;<br />import android.content.Intent;<br />import android.content.res.Resources;<br />import

2010-08-20 15:05:00 1985

原创 Android TableLayout设计模板

TableLayout比较常用,设计简洁.xxxxxActivity.java:package com.fp.xxximport android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;public class xxxxxActivity extends Activity  implements View.OnClickListener{    @Override

2010-08-20 14:51:00 3075

原创 Android应用程序Click事件与Touch事件处理

一、Click事件与Touch事件的区别:Click事件:对于Button,既会响应按键,也会响应触摸屏事件;Touch事件:对于Button,只响应触摸屏事件;因此通常对于Button控件,最好用Click事件处理。二、Click事件处理模板import android.view.View.OnClickListener;public class xxxx Activityextends Activity{    private OnClickListener otl_conn = (OnClickLis

2010-08-18 16:18:00 13535 3

原创 service 命令用法

<br />一、用法概述:<br /><br /># service<br />service<br />Usage: service [-h|-?]<br />       service list<br />       service check SERVICE<br />       service call SERVICE CODE [i32 INT | s16 STR] [intent] ...<br />Options:<br />   i32: Write the integer INT i

2010-08-17 11:31:00 6386 1

转载 转载:Android中如何修改系统时间(应用程序获得系统权限)

http://blog.csdn.net/liujian885/archive/2010/03/22/5404834.aspx在 android 的API中有提供 SystemClock.setCurrentTimeMillis()函数来修改系统时间,可惜无论你怎么调用这个函数都是没用的,无论模拟器还是真机,在logcat中总会得到"Unable to open alarm driver: Permission denied ".这个函数需要root权限或者运行与系统进程中才可以用。        本来以为

2010-08-14 12:13:00 2494

转载 转载: Android 线程通信

<br /><br />http://blog.csdn.net/Zengyangtech/archive/2010/07/29/5773090.aspx<br /> <br />在主activity中定一个Handler的成员,然后实现handlemassage函数,创建线程后在runable的run函数里new一个message,然后指定message对象的what成员,这个是指定message的一个id,然后在run中调用Handler的成员,使用其成员方法中的sendmessage(好像是叫这个),

2010-08-14 11:21:00 788

转载 转载:Android 常用代码集合

<br />http://blog.csdn.net/Zengyangtech/archive/2010/07/20/5748674.aspx<br /> <br /><br />这篇文章主要记录一些我常用的一些代码段,方便以后查阅,不断更新中<br /> <br />1 调用浏览器 载入某网址<br />view plaincopy to clipboardprint?<br />Uri uri = Uri.parse("http://www.baidu.com");          <br />Int

2010-08-14 10:57:00 963 1

转载 转载:Android 打包签名 从生成keystore到完成签名

<br /><br />http://www.cppblog.com/fwxjj/archive/2010/05/24/116208.html<br /> <br />首先,我们需要一个keystore,当然已经有了的话就不用这一步了:<br />cmd下:<br />进入到jdk的bin目录,这样的话,android.keystore文件就会生成在这个目录下,签名的时候我们需要这个文件<br />C:/Program Files/Java/jdk1.6.0_10/bin>keytool -genkey -

2010-08-14 10:32:00 1003

转载 转载:[Android] Development FAQ

<br /><br />Android mail list: android-developers@googlegroups.com<br />View topics in mail list: http://groups.google.com/group/android-developers/topics<br /><br />Popular Forums:<br />- Android Development Community | Android Tutorials<br />  http://www

2010-08-12 21:34:00 11284 1

转载 链接:Android入门第八篇之GridView(九宫图)

<br />验证过的一篇文章:<br />http://blog.csdn.net/hellogv/archive/2009/09/18/4567095.aspx

2010-08-11 16:01:00 904

flower-validate-

flowers_validation_00000-of-00005.tfrecord

2017-07-11

inception-resnet-v1-part0

tensorflow, models, slim pre-trained model: inception-resnet-v1-201608-30.tar.gz

2017-07-11

inception-resnet-v1-part24

tensorflow, models, slim pre-trained model: inception-resnet-v1-201608-30.tar.gz

2017-07-11

inception-resnet-v1-part3

tensorflow, models, slim pre-trained model: inception-resnet-v1-201608-30.tar.gz

2017-07-11

inception-resnet-v1-part2

tensorflow, models, slim pre-trained model: inception-resnet-v1-201608-30.tar.gz

2017-07-11

inception-resnet-v1-part1

tensorflow, models, slim pre-trained model: inception-resnet-v1-201608-30.tar.gz

2017-07-11

torch7 package

torch GitHub上下载的安装包

2017-04-06

mini-cwmp tr-069 tr069

open source mini-cwmp for tr-069, for ARM and MIPS

2013-10-10

open-tr069

tr-069 cwmp CPE , 开源源码,自己看吧。google code 下的

2013-10-09

luci log webui

luci log webui LUA 语言的web server, dump from device.

2013-08-20

openwrt web ui log

openwrt web ui log LUA源码

2013-08-11

android sdk api 15

android sdk platform 目录下。android-15

2012-04-05

android sdk sources samples-3

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

2012-04-05

android sdk sources samples

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

2012-04-05

android-sdk-source-sample

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

2012-04-05

android-14 sdk

android sdk platform 目录下。android-14

2012-04-05

android-platform-tools

android platform-tools 目录包, rev.10

2012-04-05

Letter Recognition Using Holland-Style Adaptive Classifiers

Machine rule induction was examined on a difficult categorization problem by applying a Hollandstyle classifier system to a complex letter recognition task. A set of 20,000 unique letter images was generated by randomly distorting pixel images of the 26 uppercase letters from 20 different commercial fonts. The parent fonts represented a full range of character types including script, italic, serif, and Gothic. The features of each of the 20,000 characters were summarized in terms of 16 primitive numerical attributes. Our research focused on machine induction techniques for generating IF-THEN classifiers in which the IF part was a list of values for each of the 16 attributes and the THEN part was the correct category, i.e., one of the 26 letters of the alphabet. We examined the effects of different procedures for encoding attributes, deriving new rules, and apportioning credit among the rules. Binary and Gray-code attribute encodings that required exact matches for rule activation were compared with integer representations that employed fuzzy matching for rule activation. Random and genetic methods for rule creation were compared with instance-based generalization. The strength/specificity method for credit apportionment was compared with a procedure we call "accuracy/utility."

2012-02-05

system-C2.2-VC7-lib

system-C2.2-VC7-lib, VC2005编译的system C 2.2库文件

2011-10-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除