摘要: 1、先定义attr文件 <?xml version="1.0" encoding="utf-8"?> <resources> <attr name="layout_bg" format="reference"/> <attr name="layout_item_bg" format="referen 阅读全文
posted @ 2016-03-03 14:36 jiduoduo 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 项目中经常会有一些布局是重用的,但是如何来更好的利用这些布局中的控件 转: http://zhidao.baidu.com/link?url=GU93U8Wu31dfp7mKEx52hMJkxjFLCq3WGkvZ8IMrahQT3wgAbC1Y93sKQ36_GQo3V4-Q9KWRHD6RIxM 阅读全文
posted @ 2016-02-24 09:14 jiduoduo 阅读(3835) 评论(0) 推荐(0) 编辑
摘要: 1、官网:http://jakewharton.github.io/butterknife/ Introduction Annotate fields with @Bind and a view ID for Butter Knife to find and automatically cast t 阅读全文
posted @ 2016-02-23 14:55 jiduoduo 阅读(674) 评论(0) 推荐(0) 编辑
摘要: activity_main.xml布局如下: <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas. 阅读全文
posted @ 2016-02-20 17:39 jiduoduo 阅读(1640) 评论(0) 推荐(0) 编辑
摘要: 定义: void apply boolean commit; 相同:二者都是提交修改的数据 手机里的文件存放在/data/data/<package_name>/shared_prefs 目录下 不同: 1.apply没有返回值 并且api 9开始支持 软件在使用的时候,需要添加 if (Build 阅读全文
posted @ 2016-02-19 16:56 jiduoduo 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 项目经常要跟别的项目进行交互,比如说蓝牙打印机等,或者处理一些网络状态,或者调用baidu、高德等地图的时候就会用到, 或打开了音乐播放之后,便想去看看图片,或者下载文件的时候,我们看看博客。 Service有两种类型: 本地服务(Local Service):用于应用程序内部 远程服务(Remot 阅读全文
posted @ 2016-02-16 14:37 jiduoduo 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1、先将AS切换到Project 2、在app-main-src下建一个libs目录,将jar包拷到里面 3、右击jar,add as Library 阅读全文
posted @ 2016-02-14 10:23 jiduoduo 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1、最近下载的开源代码全是github来的,一直用eclipse开发,对于android studio来说是全新的 2、在eclipse导入一个工程那是so easy, import选择一下就可以。 3、到了android studio里面,import 那就费多了。 导入几次都跟死了一样,只看到进 阅读全文
posted @ 2016-02-05 13:51 jiduoduo 阅读(1494) 评论(0) 推荐(0) 编辑
摘要: public boolean isTabletDevice() { TelephonyManager telephony = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE); int type = tel 阅读全文
posted @ 2016-01-30 13:43 jiduoduo 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 1、通过WebSocketServlet来实现import java.io.IOException;import java.io.UnsupportedEncodingException;import java.nio.ByteBuffer;import java.nio.CharBuffer;im... 阅读全文
posted @ 2016-01-09 15:50 jiduoduo 阅读(3171) 评论(0) 推荐(0) 编辑