package com.kuanzhai.driver.ui.merchant
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
import cn.sinata.xldutils.utils.setTextChange
|
import com.kuanzhai.driver.R
|
import com.kuanzhai.driver.base.MyBaseActivity
|
import com.kuanzhai.driver.ui.adapter.MerchantDriverListAdapter
|
import kotlinx.android.synthetic.main.activity_merchant_driver_list.*
|
|
/**
|
* @ClassName MerchantDriverListActivity
|
* @Description TODO
|
* @Author Administrator
|
* @Date 2022/2/10 17:09
|
* @Version 1.0
|
*/
|
class MerchantDriverListActivity: MyBaseActivity() {
|
|
val merchantDriverListAdapter by lazy {
|
MerchantDriverListAdapter()
|
}
|
|
override fun setContentView() {
|
setContentView(R.layout.activity_merchant_driver_list)
|
}
|
|
override fun initView() {
|
recycler_view.layoutManager = LinearLayoutManager(this)
|
recycler_view.adapter = merchantDriverListAdapter
|
}
|
|
override fun setOnclick() {
|
et_content.setTextChange {
|
|
}
|
}
|
}
|