安卓从入门到放弃(三) 简单的自定义控件(kotlin)

本次以一个的定义title为例

一、新建一个activity_title.xml 设计布局

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

    <Button
        android:id="@+id/back_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="back"
    />

    <TextView
            android:id="@+id/text_"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Title"
            android:gravity="center"
    />

    <Button
            android:id="@+id/edit_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="edit"
    />

</LinearLayout>

布局如下:

二、新建TitleLayout.kt类

重写构造函数,按钮点击监听事件:

package com.example.myapplication

import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.widget.LinearLayout
import android.widget.Toast


import kotlinx.android.synthetic.main.activity_title.view.*


class TitleLayout: LinearLayout{

    constructor(content:Context, attrs: AttributeSet):super(content, attrs)
    {
        LayoutInflater.from(content).inflate(R.layout.activity_title,this)
        back_btn.setOnLongClickListener {
            Toast.makeText(content,"back",Toast.LENGTH_SHORT).show()
            true
        }
        edit_btn.setOnLongClickListener {
            Toast.makeText(content,"edit",Toast.LENGTH_SHORT).show()
            true
        }
    }

}

三、在其它activity中加载自定义部件

         <com.example.myapplication.TitleLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
        </com.example.myapplication.TitleLayout>

运行效果:

 

完。

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值