Kotlin的Android基础篇探究数据View(二)

目录
1、如何创建自定义的控件
2、ListView的使用(inne内部类r 、lateinit延迟加载 关键词)
3、RecyclerView的使用
4、sealed密封关键词的作用

  • 1、如何创建自定义的控件

简单的封装个头部的view,来看一下跟Java的区别吧。

1.1 layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <Button
        android:id="@+id/btBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Back" />


    <Button
        android:id="@+id/btContent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="标题" />

    <Button
        android:id="@+id/btEntry"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Entry" />

</LinearLayout>
1.2 创建自定义view继承LinearLayout
class TitleLayout(context: Context?, attrs: AttributeSet?) : LinearLayout(context, attrs) {

    init {
        LayoutInflater.from(context).inflate(R.layout.module_title_back_base, this)

        btBack.setOnClickListener {
            val activity = context as Activity
            activity.finish()
        }

        btEntry.setOnClickListener {
            Toast.makeText(
                context, "this is a entry", Toast.LENGTH_SHORT
            ).show()
        }
    }

    fun setTitle(titleContent: String) {
        btContent.setText(titleContent)
    }

}

继承LinearLayout之后, 会跟Java一样重写构造方法。自己选择即可。我选择的 俩方法的,具体的对应的方法意义跟Java一样

1.3 主布局引用
<com.hdsx.orrvideenvironment.view.TitleLayout
        android:id="@+id/titleLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/guideline5"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

 override fun onPostCreate(savedInstanceState: Bundle?) {
        super.onPostCreate(savedInstanceState)
        btContent.setText("首页")
    }

theme是noActionbar的。init表示加载这个类的时候优先走的方法。

  • 2、ListView的使用(inne内部类r 、lateinit延迟加载 关键词)

2.1 声明控件view 、item 自定义布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".ui.MainActivity">

    <com.hdsx.orrvideenvironment.view.TitleLayout
        android:id="@+id/titleLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />


    <ListView
        android:id="@+id/lv_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="visible" />

</LinearLayout>


//item的展示的layout
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tvLeft"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="20dp"
        android:text="item"
        android:textSize="16sp" />

</RelativeLayout>
2.2 adapter书写

我这边就整个String的list的集合,展示一下即可

class ListViewAdapter(context: Context, val resource: Int, data: ArrayList<String>) :
    ArrayAdapter<String>(context, resource, data) {

    override fun getView(position: Int, convertView: View?, parent: ViewGroup): View {
        val view: View
        val viewHolder: ViewHolder
        if (null == convertView) {
            view = LayoutInflater.from(parent.context).inflate(resource, parent, false)
            viewHolder = ViewHolder(view)
            view.tag = viewHolder
        } else {
            view = convertView
            viewHolder = view.tag as ViewHolder
        }

        val item = getItem(position)
        viewHolder.tv.text = item
        return view
    }

    inner class ViewHolder(view: View) {
        val tv: TextView = view.findViewById(R.id.tvLeft)
    }
}

inner关键字表示,这是个内部类。我重写的ArrayAdapter。
复用方式跟Java差不多, 就是打tag的时候 是通过自己定义的view,如果直接给convertView 赋值,提示val cannot be reassigned:不能重新定义。

2.3 使用
private var adapter: ListViewAdapter? = null

 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main_test)
        initDatas()//初始化数据

        adapter = ListViewAdapter(this, R.layout.item_fruit, listDatas)
        lv_list.adapter = adapter
        lv_list.setOnItemClickListener { parent, view, position, id ->
            Toast.makeText(this, "当前是$position 位置", Toast.LENGTH_SHORT).show()
            adapter?.notifyDataSetChanged()
        }
    }

    private fun initDatas() {
        for (i in 0..10) {
            listDatas.add(i.toString())
        }
    }

这块有个点就是 如果是成员变量的话, 就要先给adapter赋值一个null,而且之后再调用刷新的话,都需要 ?.来判定非空。除了这种写法,还有一种延迟初始化的声明方式。

2.4 延迟初始化lateinit

加上lateinit关键字就可,来看下区别吧

 private lateinit var adapter: ListViewAdapter

 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main_test)
        initDatas()//初始化数据

        if (!::adapter.isInitialized) {
            adapter = ListViewAdapter(this, R.layout.item_fruit, listDatas)
        }
        lv_list.adapter = adapter
        lv_list.setOnItemClickListener { parent, view, position, id ->
            Toast.makeText(this, "当前是$position 位置", Toast.LENGTH_SHORT).show()
            adapter.notifyDataSetChanged()
        }
    }

当然这种延迟初始化的话 可能会存在忘记 初始化的情况。Kotlin对此还提供
!::.xxx. isInitialized来检查当前的控件是否已经完成初始化了。

  • 3、RecyclerView的使用

为了更全面的展示,我这里直接放最终的版本。
包括多布局、密封类sealed 、

3.1 导入依赖 和声明布局

implementation "androidx.recyclerview:recyclerview:1.1.0"



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".ui.MainActivity">

    <com.hdsx.orrvideenvironment.view.TitleLayout
        android:id="@+id/titleLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />


    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="visible" />

</LinearLayout>

3.2 多布局的准备工作

class MsgBean(val content: String, val type: Int) {
    companion object {
        const val TYPE_ONE = 1
        const val TYPE_TWO = 2
    }
}

声明个数据类, 并且加 假静态方式。const是定义常量的关键字。

3.3 adapter的书写

class MsgAdapter(val msgList: ArrayList<MsgBean>) :
    RecyclerView.Adapter<MySealViewHolder>() {

    override fun getItemViewType(position: Int): Int {
        val msgBean = msgList[position]
        return msgBean.type
    }

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) =
        if (viewType == MsgBean.TYPE_ONE) {
            val leftView =
                LayoutInflater.from(parent.context).inflate(R.layout.item_fruit, parent, false)

            leftView.tvLeft.setOnClickListener {
                Toast.makeText(parent.context, "this left", Toast.LENGTH_SHORT).show()
            }
            LeftViewHolder(leftView)

        } else {
            val rightView = LayoutInflater.from(parent.context)
                .inflate(R.layout.item_fruit_right, parent, false)

            rightView.tvRight.setOnClickListener {
                Toast.makeText(parent.context, "this right", Toast.LENGTH_SHORT).show()
            }
            RightViewHolder(rightView)
        }

    override fun getItemCount(): Int = msgList.size

    override fun onBindViewHolder(holder: MySealViewHolder, position: Int) {
        val msgBean = msgList[position]
        when (holder) {
            is LeftViewHolder -> holder.tvLeft.text = msgBean.content
            is RightViewHolder -> holder.tvRight.text = msgBean.content
        }
    }
}

3.4 MySealViewHolder密封类 ->MySealViewHolder.kt

sealed class MySealViewHolder(view: View) : RecyclerView.ViewHolder(view)
class LeftViewHolder(view: View) : MySealViewHolder(view) {
    val tvLeft: TextView = view.findViewById(R.id.tvLeft)
}

class RightViewHolder(view: View) : MySealViewHolder(view) {
    val tvRight: TextView = view.findViewById(R.id.tvRight)
}

sealed关键词就是指的是密封类。密封类的作用下面会单独介绍。

3.5 使用

    private val listData = ArrayList<MsgBean>()

    //    private var frultAdapter: FrultAdapter? = null
    private lateinit var msgAdapter: MsgAdapter//延迟初始化

override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main_test)
        initMsg()

        if (!::msgAdapter.isInitialized) {
            //检查是否完成了初始化
            msgAdapter = MsgAdapter(listData)
        }

        val linearLayoutManager = LinearLayoutManager(this)
        recyclerView.layoutManager = linearLayoutManager
        recyclerView.adapter = msgAdapter
    }

    fun initMsg() {
        val msgBean1 = MsgBean("this one", MsgBean.TYPE_ONE)
        val msgBean2 = MsgBean("this one", MsgBean.TYPE_ONE)
        val msgBean6 = MsgBean("this two", MsgBean.TYPE_TWO)
        val msgBean7 = MsgBean("this two", MsgBean.TYPE_TWO)

        listData.add(msgBean1)
        listData.add(msgBean2)
        listData.add(msgBean6)
        listData.add(msgBean7)
    }

这边是整了个LinearLayoutManager,网格 横向跟Java的一样。此处不讲解

  • 4、sealed密封关键词的作用

4.1 举例接口

interface SealedInterface {
    class onSuccess(string: String) : SealedInterface
    class onFaled(string: String) : SealedInterface
}

4.2 使用

  fun testSealed(s: SealedInterface) = when (s) {
        is onSuccess -> "success"
        is onFaled -> "failed"
        else -> "must be else"
    }

在使用的时候会发现,必须重写else。不重写的话编译器都过去,
所以密封sealed的关键词的作用就体现出来了。
被修饰的类,在when的时候,只会有当前类的条件,不会默认走else

    override fun onBindViewHolder(holder: MySealViewHolder, position: Int) {
        val msgBean = msgList[position]
        when (holder) {
            is LeftViewHolder -> holder.tvLeft.text = msgBean.content
            is RightViewHolder -> holder.tvRight.text = msgBean.content
        }
    }

总结
看自定义控件,数据适配器差别还是挺大的。

上俩章节:
Kotlin的Android开篇探究Activity(一)
Kotlin的语法学习之旅

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349