第十屆

software-dev
Kotlin 2018連續開發30天
Ted熊

系列文章

DAY 1

Kotlin 2018連續開發30天

Kotlin 2018連續開發30天第一天前言 這是我第二次參加鐵人賽 也是第二次寫一些有關android with kotlin 的文章我之前的文章在http...

DAY 2

Kotlin 2018連續開發30天 day 1 Activity生命週期

Activity 完整生命週期 完整的生命週期包含可視的生命週期 可視的生命週期包含前台的生命週期 onCreate Activity的創建 onStart...

DAY 3

Kotlin 2018連續開發30天 day2 fragment生命週期

fragment生命週期Fragment擁有自己的生命周期,但會受到Activity生命週期的約束 由於Fragment必須依附在Activity內,所以到底...

DAY 4

Kotlin 2018連續開發30天 day3 第三方工具 mpandroidchart-BarChart

android 畫圖表的第三方工具 (一)BarChart導入implementation XML中建立view Activity中設定val chart =...

DAY 5

Kotlin 2018連續開發30天 day 4 android 第三方工具 mpandroidchart-lineChar

droid 畫圖表的第三方工具 (二)LineChart導入implementation 'com.github.PhilJay:MPAndroidChart:...

DAY 6

Kotlin 2018連續開發30天 day 5 android 第三方工具 mpandroidchart-pieChart

android 畫圖表的第三方工具 (三)pieChart(圓餅圖)導入implementation 'com.github.PhilJay:MPAndroid...

DAY 7

Kotlin 2018連續開發30天 day 6 android 第三方工具 mpandroidchart-scatterhart

MPAndroidChart使用方法 android 畫圖表的第三方工具(四)scatterChart(散佈圖)implementation 'com.gith...

DAY 8

Kotlin 2018連續開發30天 day 7 android 第三方工具 mpandroidchart-RadarChart

MPAndroidChart使用方法 android 畫圖表的第三方工具(五)RadarChart(雷達圖) implementation 'com.githu...

DAY 9

Kotlin 2018連續開發30天 day 8 Activity的啟動模式

Standard模式(標準模式) SingleTop SingleTask SingleInstance(單例模式) 為什麼要研究啟動模式 有時候我們...

DAY 10

Kotlin 2018連續開發30天 day 9 android 指紋辨識系統撰寫

指紋辨識器的使用方法指紋辨識器在android 上使用已久最主要的方法為使用FingerprintManager但google在android 9.0以後採用新...