極簡Kotlin-For-Android(二)

上一篇我們做到了從網(wǎng)絡獲取數(shù)據(jù),并寫好了實體類.接著我們需要創(chuàng)建domain層,這一層為app執(zhí)行任務.

構建domain層
首先需要創(chuàng)建command:

public interface Command<T> {
    fun execute() : T
}

創(chuàng)建DataMapper:

class ForecastDataMapper {

    fun convertFromDataModel(forecast: ForecastResult): ForecastList {
        return ForecastList(forecast.city.name, forecast.city.country, convertForecastListToDomain(forecast.list))
    }

    fun convertForecastListToDomain(list: List<ForecastResult.ForeCast>) : List<ModelForecast> {
        return list.map { convertForecastItemToDomain(it) }
    }

    private fun convertForecastItemToDomain(forecast: ForecastResult.ForeCast): ModelForecast {
        return ModelForecast(convertDate(forecast.dt),
                forecast.weather[0].description, forecast.temp.max.toInt(),
                forecast.temp.min.toInt())}

    private fun convertDate(date: Long): String {
        val df = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.getDefault())
        return df.format(date * 1000)
    }

    data class ForecastList(val city: String, val country: String,val dailyForecast:List<Forecast>)
    data class Forecast(val date: String, val description: String, val high: Int,val low: Int)

}

Tips:
list.map:循環(huán)這個集合并返回一個轉換后的新list.

準備就緒:

class RequestForecastCommand(val zipCode : String) : Command<ForecastDataMapper.ForecastList> {
    override fun execute(): ForecastDataMapper.ForecastList {
        return ForecastDataMapper().convertFromDataModel(Request(zipCode).execute())
    }
}

綁定數(shù)據(jù),刷新ui:

doAsync {
    val result = RequestForecastCommand("94043").execute()
    uiThread {
        recycler.adapter = ForecastListAdapter(result)
    }
}

同時需要修改adapter數(shù)據(jù)類型:

override fun onBindViewHolder(holder: ViewHolder, position: Int) {
        with(items.dailyForecast[position]){
            holder.textView.text = "$date -  $description  -  $high/$low"
        }
    }
    override fun getItemCount(): Int {
        return items.dailyForecast.size
    }

Tips:
關于with函數(shù):它接收一個對象和一個擴展函數(shù)作為它的參數(shù),然后使這個對象擴展這個函數(shù)饲做。這表示所有我們在括號中編寫的代碼都是作為對象(第一個參數(shù))的一個擴展函數(shù)基协,我們可以就像作為this一樣使用所有它的public方法和屬性。當我們針對同一個對象做很多操作的時候這個非常有利于簡化代碼济蝉。

運行一下項目,可以看到效果如下圖:

image

添加item點擊事件
先看下效果圖:

image

我們把對應的item布局修改為圖上的樣子后,修改ForecastDataMapper:

  private fun convertForecastItemToDomain(forecast: ForecastResult.ForeCast): ModelForecast {
        return ModelForecast(convertDate(forecast.dt),
                forecast.weather[0].description,
                forecast.temp.max.toInt(),
                forecast.temp.min.toInt(),
                generateIconUrl(forecast.weather[0].icon))}

    private fun convertDate(date: Long): String {
        val df = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.getDefault())
        return df.format(date * 1000)
    }

    private fun generateIconUrl(iconCode : String) : String{
        return "http://openweathermap.org/img/w/$iconCode.png"
    }
    
    data class Forecast(val date: String, val description: String, val high: Int,val low: Int,val iconUrl : String)

修改adapter:

class ForecastListAdapter(val items : ForecastDataMapper.ForecastList,
                          val itemCLick : onItemClickListenr) :
        RecyclerView.Adapter<ForecastListAdapter.ViewHolder>(){

    override fun onBindViewHolder(holder: ViewHolder, position: Int) {
        with(items.dailyForecast[position]){
            holder.bindForecast(items.dailyForecast[position])
        }
    }

    override fun getItemCount(): Int {
        return items.dailyForecast.size
    }

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
        val view = LayoutInflater.from(parent.context).inflate(R.layout.item_forecast,parent,false)
        return ViewHolder(view,itemCLick)
    }

    class ViewHolder(view : View , val onItemClick : onItemClickListenr) : RecyclerView.ViewHolder(view){

        private val iconView : ImageView
        private val dateView : TextView
        private val descriptionView : TextView
        private val maxTemperatureView : TextView
        private val minTemperatureView : TextView

        init {
            iconView = view.find(R.id.icon)
            dateView = view.find(R.id.date)
            descriptionView = view.find(R.id.description)
            maxTemperatureView = view.find(R.id.maxTemperature)
            minTemperatureView = view.find(R.id.minTemperature)
        }

        fun bindForecast(forecast : ForecastDataMapper.Forecast ){
            with(forecast){
                Glide.with(itemView.context).load(iconUrl).into(iconView)
                dateView.text = date
                descriptionView.text = description
                maxTemperatureView.text = high.toString()
                minTemperatureView.text = low.toString()
                itemView.setOnClickListener(){
                    onItemClick(forecast)
                }
            }
        }
    }

    public interface onItemClickListenr{
        operator fun invoke(forecast : ForecastDataMapper.Forecast)
    }
}

之后綁定數(shù)據(jù):

        doAsync {
            val execute = RequestForecastCommand("94043").execute()
            uiThread {
                recycler.adapter = ForecastListAdapter(execute, object :ForecastListAdapter.onItemClickListenr{
                    override fun invoke(forecast: ForecastDataMapper.Forecast) {
                        toast("點擊了item")
                    }
                })
            }
        }

有時候我們可能會遇到一個異常:

[Kotlin]kotlin.NotImplementedError: An operation is not implemented: not implemented
原因 : Android里面加個TODO并不會影響程序運行,可是在Kotlin里面就不一樣啦菠发,如果你在某個函數(shù)的第一行添加TODO的話王滤,那么很抱歉,它不會跳過滓鸠,然后運行下一行代碼
解決方案: 我們只需要把TODO("not implemented") 這句話去掉就可以啦雁乡!

簡化setOnCLickListener
kotlin版的點擊事件:

view.setOnClickListener(object : View.OnClickListener{
            override fun onClick(v: View?) {
                toast("click")
            }
        })

或者

view.setOnClickListener {
    toast("click")
}

Kotlin Android Extensions

這個插件自動創(chuàng)建了很多的屬性來讓我們直接訪問XML中的view。這種方式不需要你在開始使用之前明確地從布局中去找到這些views糜俗。這些屬性的名字就是來自對應view的id踱稍,所以我們取id的時候要十分小心.

dependencies {        
    classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"   
}

使用的時候我們只需要做一件事:在activity或fragment中手動import以kotlinx.android.synthetic開頭的語句 + 要綁定的布局名稱:

import kotlinx.android.synthetic.main.activity_main.*

然后刪掉你的find(findviewbyid)吧,直接使用xml中的布局id來做操作
簡化你在activity和adapter中的代碼吧!

Tips: 如果布局中包含includ標簽的布局,還需要在activity中再導入include的布局才能使用

委托模式
所謂委托模式 ,就是為其他對象提供一種代理以控制對這個對象的訪問吩跋,在 Java 開發(fā)過程中寞射,是繼承模式之外的很好的解決問題的方案。

interface Base {
    fun print()
}
class A(val a: Int) : Base {
    override fun print() {
        Log.d("wxl", "a=" + a)
    }
}
class B (val base: Base):Base by base

調用:

val a = A(1)
Log.d("wxl", "a=" + B(a).print())

集合和函數(shù)操作符

關于函數(shù)式編程:
很不錯的一點是我們不用去解釋我們怎么去做锌钮,而是直接說我想做什么桥温。比如,如果我想去過濾一個list梁丘,不用去創(chuàng)建一個list侵浸,遍歷這個list的每一項,然后如果滿足一定的條件則放到一個新的集合中氛谜,而是直接食用filer函數(shù)并指明我想用的過濾器掏觉。用這種方式,我們可以節(jié)省大量的代碼值漫。

Kotlin提供的一些本地接口:

  • Iterable:父類澳腹。所有我們可以遍歷一系列的都是實現(xiàn)這個接口.
  • MutableIterable:一個支持遍歷的同時可以執(zhí)行刪除的Iterables.
  • Collection:這個類相是一個范性集合。我們通過函數(shù)訪問可以返回集合的size杨何、是否為空酱塔、是否包含一個或者一些item。這個集合的所有方法提供查詢危虱,因為connections是不可修改的.
  • MutableCollection:一個支持增加和刪除item的Collection羊娃。它提供了額外的函數(shù),比如add埃跷、remove蕊玷、clear等等.
  • List:可能是最流行的集合類型邮利。它是一個范性有序的集合。因為它的有序垃帅,我們可以使用get函數(shù)通過position來訪問.
  • 延届。MutableList:一個支持增加和刪除item的List.
  • Set:一個無序并不支持重復item的集合.
  • MutableSet:一個支持增加和刪除item的Se.。
  • Map:一個key-value對的collection挺智。key在map中是唯一的祷愉,也就是說不能有兩對key是一樣的鍵值對存在于一個map中.
  • MutableMap:一個支持增加和刪除item的map.

kotlin中的null安全

指定一個變量是可null是通過在類型的最后增加一個問號:

val a: Int? = null

//如果你沒有進行檢查,是不能編譯通過的
a.toString()

//必須進行判斷
if(a!=null){    
    a.toString()
}

控制流-if表達式
用法和 Java 一樣,Kotlin 中一切都是表達式,一切都返回一個值赦颇。

val l = 4
val m = 5  
// 作為表達式(替換java三元操作符)
val n = if (l > m) l else m

When 表達式
When 取代 Java switch 操作符。

val o = 3
when (o) {
    1 -> print("o == 1")
    2 -> print("o == 2")
    else -> {
        print("o == 3")
    }
}

還可以檢測參數(shù)類型:

when(view) {
    is TextView -> view.setText("I'm a TextView")
    is EditText -> toast("EditText value: ${view.getText()}")
    is ViewGroup -> toast("Number of children: ${view.getChildCount()} ")
        else -> 
        view.visibility = View.GONE}

For 循環(huán)

for (item in collection) {
    print(item)
}

需要使用index:

for (i in list.indices){
    print(list[i])
}

泛型
泛型編程包括赴涵,在不指定代碼中使用到的確切類型的情況下來編寫算法媒怯。用這種方式,我們可以創(chuàng)建函數(shù)或者類型髓窜,唯一的區(qū)別只是它們使用的類型不同扇苞,提高代碼的可重用性。

創(chuàng)建一個指定泛型類:

classTypedClass<T>(parameter: T) {
    val value: T = parameter
}

這個類現(xiàn)在可以使用任何的類型初始化寄纵,并且參數(shù)也會使用定義的類型(kotlin編譯器可以判斷類型,所以尖括號可以省略):

val t1 = TypedClass<String>("Hello World!")
val t2 = TypedClass<Int>(25)

一首好音樂:Fall Back-Yonas
音樂人: 約納斯住宿加早餐旅館
首張收錄專輯: The Proven Theory
發(fā)行時間: 2011 年
流派: 嘻哈/饒舌

項目已經(jīng)更新到github: https://github.com/saurylip/KotlinDemo

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末鳖敷,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子程拭,更是在濱河造成了極大的恐慌定踱,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件恃鞋,死亡現(xiàn)場離奇詭異崖媚,居然都是意外死亡,警方通過查閱死者的電腦和手機恤浪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門畅哑,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人水由,你說我怎么就攤上這事荠呐。” “怎么了砂客?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵泥张,是天一觀的道長。 經(jīng)常有香客問我鞭盟,道長圾结,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任齿诉,我火速辦了婚禮筝野,結果婚禮上晌姚,老公的妹妹穿的比我還像新娘。我一直安慰自己歇竟,他們只是感情好挥唠,可當我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著焕议,像睡著了一般宝磨。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上盅安,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天唤锉,我揣著相機與錄音,去河邊找鬼别瞭。 笑死窿祥,一個胖子當著我的面吹牛,可吹牛的內容都是我干的蝙寨。 我是一名探鬼主播晒衩,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼墙歪!你這毒婦竟也來了听系?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤虹菲,失蹤者是張志新(化名)和其女友劉穎靠胜,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體届惋,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡髓帽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了脑豹。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片郑藏。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖瘩欺,靈堂內的尸體忽然破棺而出必盖,到底是詐尸還是另有隱情,我是刑警寧澤俱饿,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布歌粥,位于F島的核電站,受9級特大地震影響拍埠,放射性物質發(fā)生泄漏失驶。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一枣购、第九天 我趴在偏房一處隱蔽的房頂上張望嬉探。 院中可真熱鬧擦耀,春花似錦、人聲如沸涩堤。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽胎围。三九已至吁系,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間白魂,已是汗流浹背汽纤。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留碧聪,地道東北人冒版。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像逞姿,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子捆等,可洞房花燭夜當晚...
    茶點故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內容