上一篇我們做到了從網(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方法和屬性。當我們針對同一個對象做很多操作的時候這個非常有利于簡化代碼济蝉。
運行一下項目,可以看到效果如下圖:
添加item點擊事件
先看下效果圖:
我們把對應的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