test
上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页
摘要: 我们都知道,Android 2.3(姜饼) SDK发布的时候,在SDK中增加了第三方add-ons,其中就包括了针对平板电脑的Galaxy Tab Addon。当我们启动一个新的平板电脑模拟器的时候,首先我们需要设置“Scale display to real size"选项,这将让平板电脑的屏幕大... 阅读全文
posted @ 2015-02-03 16:03 Lechance 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 关于greenDao的使用第一篇How to get started ?原文地址:http://greendao-orm.com/documentation/how-to-get-started/该教程会带你浏览一个简单的greenDao示例工程。地址:https://github.com/gree... 阅读全文
posted @ 2015-02-03 08:54 Lechance 阅读(5899) 评论(0) 推荐(0) 编辑
摘要: 留心的人会发现在android中将sqlite的数据库文件生成在SD卡上的过程中,发现生成的.db文件的旁边生成了一个大小为0的与数据库文件同名的.db-journal文件,不明白此文件的用途,于是google了sqlite的官方文档,发现该文件的用途如下:该文件是sqlite的一个临时的日志文件,... 阅读全文
posted @ 2015-02-02 15:56 Lechance 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 说到activity自身的生命周期要区分几个概念1 Activity 官方解释为 “An Activity is an application component that provides a screen with which users can interact in order to do ... 阅读全文
posted @ 2015-02-02 15:19 Lechance 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 关于MIME TYPE描述多用途互联网邮件扩展(MIME,Multipurpose Internet Mail Extensions)是一个互联网标准,它扩展了电子邮件标准,使其能够支持非ASCII字符、二进制格式附件等多种格式的邮件消息。内容类型(Content-Type),这个头部领域用于指定消... 阅读全文
posted @ 2015-02-02 14:47 Lechance 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 关于android中ImageView的外观,即图片在其内显示出的样子,与布局文件中adjustViewBonds和scaleType属性的关系。我进行了一些探索。现跟大家共享,欢迎各位指教。分别将adjustViewBonds设为true和false,与各种scaleType搭配,产生了不同效果。... 阅读全文
posted @ 2015-02-02 12:13 Lechance 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 报错原因:在一个类中写了一个public String getContent()方法和一个main()方法,getContent()方法中包含了getClass()方法,在main()方法中直接调用了getContent()就出现如题的错误。这样一样解决方法:先实例化类,然后再调用getConten... 阅读全文
posted @ 2015-01-30 14:47 Lechance 阅读(333) 评论(0) 推荐(0) 编辑
摘要: int indexOf(int ch,int fromIndex)函数:就是字符ch在字串fromindex位后出现的第一个位置.没有找到返加-1eg:String str="a2dfcfar1bzvb";System.out.println(str.indexOf(97,2));看这个例子,输出:... 阅读全文
posted @ 2015-01-29 16:45 Lechance 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: 当我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的。 我们也知道Android系统也是在不断升级的,有关Notification的用法也就有很多种,有... 阅读全文
posted @ 2015-01-29 15:10 Lechance 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 关于Notification 的使用需要导入 3 个类123importandroid.app.PendingIntent;importandroid.app.NotificationManager;importandroid.app.Notification;代码示例及说明123456789101... 阅读全文
posted @ 2015-01-29 14:44 Lechance 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页