Skip to content

Commit f188db1

Browse files
committed
updated:2018-03-24 18:46:05
1 parent 1e7e283 commit f188db1

File tree

9 files changed

+43
-43
lines changed

9 files changed

+43
-43
lines changed

2018/03/09/Kotlin入门/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="导入布局中所有控件属性 1import kotlinx.android.synthetic.main.<布局>.* 实验模式包含LayoutContainer`Parcelable` 1234567891011androidExtensions &amp;#123; experimental = true&amp;#125;import kotlinx.android.extensions.LayoutC">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin 入门">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/09/Kotlin入门/index.html">
@@ -501,10 +501,10 @@ <h1 class="post-title" itemprop="name headline">Kotlin 入门</h1>
501501

502502
<div class="post-tags">
503503

504-
<a href="/tags/Android/" rel="tag"># Android</a>
505-
506504
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
507505

506+
<a href="/tags/Android/" rel="tag"># Android</a>
507+
508508
</div>
509509

510510

2018/03/22/Kotlin-for-Android-一/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="介绍Kotlin 编写代码量少 更加安全:Kotlin编译时期就处理了各种null的情况,避免了执行时异常。如果一个对象可以是null,则我们需要明确地指定它,然后在使用它之前检查它是否是null 它是函数式的:Kotlin是基于面向对象的语言,它使用了很多函数式编程的概念,比如,使用lambda表达式来更方便地解决问题。其中一个很棒的特性就是Collections的处理方式 它可以扩展函数:可以">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin for Android (一)">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/22/Kotlin-for-Android-一/index.html">
@@ -572,10 +572,10 @@ <h5 id="属性"><a href="#属性" class="headerlink" title="属性"></a>属性</
572572

573573
<div class="post-tags">
574574

575-
<a href="/tags/Android/" rel="tag"># Android</a>
576-
577575
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
578576

577+
<a href="/tags/Android/" rel="tag"># Android</a>
578+
579579
</div>
580580

581581

2018/03/23/Kotlin-for-Android-二/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="Anko Anko Commons:一个轻量级的库,里面包含了intents,对话框,日志等帮助类 Anko Layouts:用于编写动态Android布局的快速且类型安全的方法 Anko SQLite:查询适用于Android SQLite的DSL和分析器集合 Anko Coroutines:基于kotlinx.coroutines库的实用程序 简化获取RecyclerView1val fore">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin for Android (二)">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/23/Kotlin-for-Android-二/index.html">
@@ -561,10 +561,10 @@ <h4 id="构建domain层"><a href="#构建domain层" class="headerlink" title="
561561

562562
<div class="post-tags">
563563

564-
<a href="/tags/Android/" rel="tag"># Android</a>
565-
566564
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
567565

566+
<a href="/tags/Android/" rel="tag"># Android</a>
567+
568568
</div>
569569

570570

2018/03/23/kotlin-for-Android-四/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="Application单例化和属性的Delegated需要有一个更简单的访问application context的方式 Application单例化12345678910class App : Application() &amp;#123;companion object &amp;#123;private var instance: Application? = nullfun instance() = i">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin for Android (四)">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/23/kotlin-for-Android-四/index.html">
@@ -528,10 +528,10 @@ <h5 id="标准委托"><a href="#标准委托" class="headerlink" title="标准
528528

529529
<div class="post-tags">
530530

531-
<a href="/tags/Android/" rel="tag"># Android</a>
532-
533531
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
534532

533+
<a href="/tags/Android/" rel="tag"># Android</a>
534+
535535
</div>
536536

537537

2018/03/24/Kotlin-for-Android-五/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="创建SQLiteHelper一般使用SqliteOpenHelper 去调用 getReadableDatabase() 或者 getWritableDatabase() ,然后我们可以执行我们的搜索并拿到结果。在这之后,我们不能忘记调用 close() ManagedSqliteOpenHelper 函数中,最后一行表示返回值。因为T没有任何的限制,所以我们可以返回任何对象。甚至如果我们不想返回">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin for Android (五)">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/24/Kotlin-for-Android-五/index.html">
@@ -602,10 +602,10 @@ <h4 id="写入和查询数据库"><a href="#写入和查询数据库" class="hea
602602

603603
<div class="post-tags">
604604

605-
<a href="/tags/Android/" rel="tag"># Android</a>
606-
607605
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
608606

607+
<a href="/tags/Android/" rel="tag"># Android</a>
608+
609609
</div>
610610

611611

2018/03/24/Kotlin-for-Android-六/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777

78-
<meta name="keywords" content="Android,Kotlin," />
78+
<meta name="keywords" content="Kotlin,Android," />
7979

8080

8181

@@ -89,7 +89,7 @@
8989

9090

9191
<meta name="description" content="Kotlin中的null安全">
92-
<meta name="keywords" content="Android,Kotlin">
92+
<meta name="keywords" content="Kotlin,Android">
9393
<meta property="og:type" content="article">
9494
<meta property="og:title" content="Kotlin for Android(六)">
9595
<meta property="og:url" content="http://willkernel.github.io/2018/03/24/Kotlin-for-Android-六/index.html">
@@ -456,10 +456,10 @@ <h4 id="Kotlin中的null安全"><a href="#Kotlin中的null安全" class="headerl
456456

457457
<div class="post-tags">
458458

459-
<a href="/tags/Android/" rel="tag"># Android</a>
460-
461459
<a href="/tags/Kotlin/" rel="tag"># Kotlin</a>
462460

461+
<a href="/tags/Android/" rel="tag"># Android</a>
462+
463463
</div>
464464

465465

atom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
</summary>
3737

3838

39-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
40-
4139
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
4240

41+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
42+
4343
</entry>
4444

4545
<entry>
@@ -64,10 +64,10 @@
6464
<category term="Kotlin" scheme="http://willkernel.github.io/categories/Kotlin/"/>
6565

6666

67-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
68-
6967
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
7068

69+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
70+
7171
</entry>
7272

7373
<entry>
@@ -92,10 +92,10 @@
9292
<category term="Kotlin" scheme="http://willkernel.github.io/categories/Kotlin/"/>
9393

9494

95-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
96-
9795
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
9896

97+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
98+
9999
</entry>
100100

101101
<entry>
@@ -152,10 +152,10 @@
152152
<category term="Kotlin" scheme="http://willkernel.github.io/categories/Kotlin/"/>
153153

154154

155-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
156-
157155
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
158156

157+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
158+
159159
</entry>
160160

161161
<entry>
@@ -189,10 +189,10 @@
189189
<category term="Kotlin" scheme="http://willkernel.github.io/categories/Kotlin/"/>
190190

191191

192-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
193-
194192
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
195193

194+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
195+
196196
</entry>
197197

198198
<entry>
@@ -408,10 +408,10 @@
408408
<category term="Kotlin" scheme="http://willkernel.github.io/categories/Kotlin/"/>
409409

410410

411-
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
412-
413411
<category term="Kotlin" scheme="http://willkernel.github.io/tags/Kotlin/"/>
414412

413+
<category term="Android" scheme="http://willkernel.github.io/tags/Android/"/>
414+
415415
</entry>
416416

417417
<entry>

css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2007,7 +2007,7 @@ pre .javascript .function {
20072007
width: 4px;
20082008
height: 4px;
20092009
border-radius: 50%;
2010-
background: #3838a8;
2010+
background: #e0ff5b;
20112011
}
20122012
.links-of-blogroll {
20132013
font-size: 13px;

search.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<url>%2F2018%2F03%2F24%2FKotlin-for-Android-%E5%85%AD%2F</url>
66
<content type="text"><![CDATA[Kotlin中的null安全]]></content>
77
<tags>
8-
<tag>Android</tag>
98
<tag>Kotlin</tag>
9+
<tag>Android</tag>
1010
</tags>
1111
</entry>
1212
<entry>
@@ -17,8 +17,8 @@
1717
<category>Kotlin</category>
1818
</categories>
1919
<tags>
20-
<tag>Android</tag>
2120
<tag>Kotlin</tag>
21+
<tag>Android</tag>
2222
</tags>
2323
</entry>
2424
<entry>
@@ -29,8 +29,8 @@
2929
<category>Kotlin</category>
3030
</categories>
3131
<tags>
32-
<tag>Android</tag>
3332
<tag>Kotlin</tag>
33+
<tag>Android</tag>
3434
</tags>
3535
</entry>
3636
<entry>
@@ -46,8 +46,8 @@
4646
<category>Kotlin</category>
4747
</categories>
4848
<tags>
49-
<tag>Android</tag>
5049
<tag>Kotlin</tag>
50+
<tag>Android</tag>
5151
</tags>
5252
</entry>
5353
<entry>
@@ -58,8 +58,8 @@
5858
<category>Kotlin</category>
5959
</categories>
6060
<tags>
61-
<tag>Android</tag>
6261
<tag>Kotlin</tag>
62+
<tag>Android</tag>
6363
</tags>
6464
</entry>
6565
<entry>
@@ -140,8 +140,8 @@
140140
<category>Kotlin</category>
141141
</categories>
142142
<tags>
143-
<tag>Android</tag>
144143
<tag>Kotlin</tag>
144+
<tag>Android</tag>
145145
</tags>
146146
</entry>
147147
<entry>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy