lmw
2023-06-25 a988e7c15f5ce63785b77e01c89bec2565668982
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 {
 
        }
    }
}