摘要:
这里只讨论 LayoutInflater1 的 infalte() 方法。 inflate(int resource, ViewGroup root, boolean attachToRoot); 第一个参数xml布局资源索引,第二个参数指的是加载布局的root。 attachToRoot为true 阅读全文
摘要:
代码示例: ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.hide(); } 阅读全文
摘要:
假设我们要在main布局中引入标题栏,我们只需要在activity_main布局文件中使用语句: <include layout="@layout/title" /> 完整布局文件: title.xml <?xml version="1.0" encoding="utf-8"?> <LinearLa 阅读全文
摘要:
在阅读《第一行代码》的LitePal部分时,发现一个问题,就是在建立实体类时列名是遵循驼峰命名的,但是在sqlite中查看建表语句时发现驼峰命名转化成列名会直接全部转换成小写字母,而不是转成下划线格式,但是 Mybatis 中是有开启驼峰映射这一选项的,于是去翻LitePal的文档,翻了半天没有但是 阅读全文
摘要:
在阅读《第一行代码》的LitePal这一节时,注意到要能够正常使用LitePal,我们必须在AndroidManifest.xml中配置如下内容: <application android:name="org.litepal.LitePalApplication" ...> ... </applic 阅读全文
摘要:
git clone 拷贝一个 Git 仓库到本地,让自己能够查看该项目,或者进行修改。 拷贝项目命令格式如下: git clone [url] 使用示例: 到 github 随便找一个项目并复制其 url 打开一个文件夹,并在该处打开git bash 然后执行命令 克隆好了之后,在当前目录下就会生成 阅读全文
摘要:
原文章地址 和配置java的maven依赖库类似,这个也是改配置文件就好了 配置方法 1、对特定项目有效,在项目中的 build.gradle 中修改内容 buildscript { repositories { maven { url 'http://maven.aliyun.com/nexus/ 阅读全文
摘要:
java 原生动态代理源码的理解,卡在了java8新特性lambda表达式那里 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #include<time.h> using namespace std; int main() { clock_t start_time, end_time; double duration; start=clock();/ 阅读全文
摘要:
我们来看官方文档: boolean retainAll(Collection<?> c) Retains only the elements in this set that are contained in the specified collection (optional operation 阅读全文