使用自定义View直接显示今日头条头布局

本文介绍了一种自定义Android View的方法,通过继承LinearLayout并利用LayoutInflater加载布局资源来创建TitleView。该View支持设置左侧和右侧按钮点击监听及标题文本。
摘要由CSDN通过智能技术生成

创建自己要定义的View,继承要显示类型的控件名

package com.bwie.viewdemo;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.LinearLayout;
import android.widget.TextView;

public class TitleView extends LinearLayout {
    private TextView tv;

    public TitleView(Context context) {
        super(context);
        initView(context);
    }

    private void initView(Context context) {
        LayoutInflater.from(context).inflate(R.layout.title_layout,this);
        tv = findViewById(R.id.tv);
    }


    public void setLeftListener(OnClickListener leftListener){
        findViewById(R.id.iv1).setOnClickListener(leftListener);
    }

    public void setRightListener(OnClickListener rightListener){
        findViewById(R.id.iv2).setOnClickListener(rightListener);
    }

    public void settitle(String text){
        tv.setText(text);
    }

    public TitleView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView(context);

    }

    public TitleView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
}


布局


   
   

   
   

    
    
    

    
    
    

    
    
    

   
   


在main.xml中使用自定义view


   
   

   
   

    
    
    

   
   


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值