目錄
- 使用Kotlin構(gòu)建MVVM應(yīng)用程序—總覽篇
- 使用Kotlin構(gòu)建MVVM應(yīng)用程序—第一部分:入門篇
- 使用Kotlin構(gòu)建MVVM應(yīng)用程序—第二部分:Retrofit及RxJava
- 使用Kotlin構(gòu)建MVVM應(yīng)用程序—第三部分:Room
寫在前面
使用DataBinding已經(jīng)有一年多的時(shí)間,Kotlin也寫了好幾個(gè)月了。在github上看了許多MVVM架構(gòu)的項(xiàng)目(包括google的todo)抛虫,但都沒達(dá)到自己理想中的MVVM氧猬,可以說一千個(gè)人眼中就有一千個(gè)哈姆雷特荷愕,雖說都知道MVVM的概念额获,但是寫法卻是各不相同装畅,有好有壞柜某,結(jié)果越寫越偏嗽元。到前段時(shí)間靜下心來,開始使用kotlin喂击,并遵循google的App開發(fā)架構(gòu)指南剂癌,才找到一種較好的構(gòu)建MVVM應(yīng)用程序的方式,使用kotlin來編寫更是事半功倍翰绊,在這里分享給大家佩谷。
預(yù)計(jì)打算出4-5篇的樣子,這是第一部分的入門篇辞做,后續(xù)更新的話也會更新鏈接琳要。
閱讀正文之前,請先了解Databinding的基礎(chǔ)語法秤茅,在這里可以進(jìn)行學(xué)習(xí)【Data Binding(數(shù)據(jù)綁定)用戶指南】
開始正題稚补。
首先:什么是MVVM?
MVVM是Model-View-ViewModel的簡寫框喳,是有別于MVC和MVP的另一種架構(gòu)模式课幕。
相比于MVP,MVVM沒有多余的回調(diào)五垮,利用Databinding框架就可以將ViewModel中的數(shù)據(jù)綁定到UI上乍惊,從而讓開發(fā)者只需要更新ViewModel中的數(shù)據(jù),就可以改變UI放仗。
再來講一下分別的作用
- Model層:負(fù)責(zé)提供數(shù)據(jù)源給ViewModel润绎,包含實(shí)體類,網(wǎng)絡(luò)請求和本地存儲等功能
- ViewModel:將Model層提供的數(shù)據(jù)根據(jù)View層的需要進(jìn)行處理,通過DataBinding綁定到相應(yīng)的UI上
- View:Activity莉撇、Fragment呢蛤、layout.xml、Adapter棍郎、自定義View等等其障,負(fù)責(zé)將三者聯(lián)系起來。
一個(gè)最基礎(chǔ)的例子
這里我們定義一個(gè)實(shí)體Animal.kt
/**
* 頁面描述:Animal
*
* Created by ditclear on 2017/11/18.
*/
data class Animal(val name:String,var shoutCount:Int)
它有兩個(gè)參數(shù)name
和shoutCount
涂佃。name代表動物的名稱励翼,shoutCount表示叫了幾下。
看看我們需要做什么辜荠。汽抚。
- 展示需要的信息
- 點(diǎn)擊shout按鈕時(shí),shouCount+1并更新信息
很簡單伯病,幾行代碼就搞定了殊橙,先看看不用任何架構(gòu)怎么做的
class AnimalActivityMVC : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.animal_activity)
val animal=Animal("dog",0)
findViewById<TextView>(R.id.info_tv).text="${animal.name} 叫了 ${animal.shoutCount}聲.."
findViewById<View>(R.id.action_btn).setOnClickListener {
animal.shoutCount++
findViewById<TextView>(R.id.info_tv).text="${animal.name} 叫了 ${animal.shoutCount}聲.."
}
}
}
再來看看MVVM怎么處理,以示區(qū)別
相比于前者狱从,我們需要為AnimalActivity
創(chuàng)建對應(yīng)的AnimalViewModel
/**
* 頁面描述:AnimalViewModel
* @param animal 數(shù)據(jù)源Model(MVVM 中的M),負(fù)責(zé)提供ViewModel中需要處理的數(shù)據(jù)
* Created by ditclear on 2017/11/17.
*/
class AnimalViewModel(val animal: Animal){
//////////////////data//////////////
val info= ObservableField<String>("${animal.name} 叫了 ${animal.shoutCount}聲..")
//////////////////binding//////////////
fun shout(){
animal.shoutCount++
info.set("${animal.name} 叫了 ${animal.shoutCount}聲..")
}
}
然后在View層的AnimalActivity.kt
中將三者聯(lián)系起來
class AnimalActivity : AppCompatActivity() {
lateinit var mBinding : AnimalActivityBinding
lateinit var mViewMode : AnimalViewModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
mBinding=DataBindingUtil.setContentView(this,R.layout.animal_activity)
//////model
val animal= Animal("dog", 0)
/////ViewModel
mViewMode= AnimalViewModel(animal)
////binding
mBinding.vm=mViewMode
}
}
目錄架構(gòu)現(xiàn)在是這個(gè)樣子:
Databinding強(qiáng)化了layout文件在Android中的地位,許多顯示和點(diǎn)擊事件都在xml中進(jìn)行了處理叠纹。
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<!--需要的viewModel,通過mBinding.vm=mViewMode注入-->
<variable
name="vm"
type="io.ditclear.app.viewmodel.AnimalViewModel"/>
</data>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="io.ditclear.app.view.AnimalActivity">
<TextView
android:id="@+id/info_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{vm.info}"
tools:text="dog1叫了1聲.."
android:layout_marginBottom="24dp"
android:layout_gravity="center"/>
<Button
android:id="@+id/action_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="false"
android:text="shout"
android:layout_marginTop="24dp"
android:layout_gravity="center"
android:onClick="@{()->vm.shout()}"/>
</FrameLayout>
</layout>
可以看到android:text="@{vm.info}"
和android:onClick="@{()->vm.shout()}"
季研,分別調(diào)用了viewModel中的變量和方法。
所以大概的流程是
- 用戶點(diǎn)擊按鈕誉察,調(diào)用
AnimalViewModel
的shout
方法 - ViewModel更新shoutCount和info數(shù)據(jù),然后利用綁定自動更新了UI
流程很簡單与涡,但是反映了MVVM的思想,又有人會說持偏,這樣相比前者不是都多了那么多代碼嗎驼卖?
嗯,確實(shí)多了一個(gè)文件鸿秆,但是卻做到了關(guān)注點(diǎn)分離和數(shù)據(jù)驅(qū)動UI酌畜。
借google的話來說
另一個(gè)好處就是可以做單元測試,純的kotlin代碼寫著再舒服不過卿叽,而且可以保證數(shù)據(jù)的正確性桥胞。相比于run app需要十幾秒或者幾分鐘、十幾分鐘考婴,run 一次單元測試是以毫秒記的贩虾,效率是很可觀的。
結(jié)尾
github地址:https://github.com/ditclear/MVVM-Android
這是使用Kotlin構(gòu)建MVVM項(xiàng)目的第一部分沥阱,也是入門篇缎罢,所以很簡單,介紹了一下MVVM的概念和基礎(chǔ)寫法,第二篇我將加入retrofit網(wǎng)絡(luò)請求和Rxjava來談?wù)勅绾屋^好的處理網(wǎng)絡(luò)數(shù)據(jù)及綁定生命周期策精。