读书笔记——《Android进阶之光》

Android进阶之光——View体系(View的工作流程)

2021-08-20  本文已影响0人  So_ProbuING

View的工作流程

View的工作流程,指的就是measure、layout和draw。

View的工作流程入口

理解MeasureSpec

MeasureSpec是View的内部类,封装了一个View的规格尺寸,包括View的宽和高的信息,它的作用是在Measure流程中,系统会将View的LayoutParams根据父容器所施加的规则转换成对应的MeasureSpec,然后在onMeasure方法中根据这个MeasureSpec来确定View的宽和高

MeasureSpec中的常量可以看出,它代表了32位的int值,其中高2位代表了SpecMode,低30位则代表SpecSize。SpecMode是指测量模式,SpecSize是指测量大小。
SpecMode有三种模式:

对于每一个View,都持有一个MeasureSpec,而该MeasureSpec则保存了该View的尺寸规格。在View的测量流程中,通过makeMeasureSpec来保存宽和高的信息。通过getMode或getSize得到模式和宽、高。

View的measure流程

measure用来测量View的宽和高,它的流程分为View的measure流程和ViewGroup的measure流程。ViewGroup的measure流程除了要完成自己的测量,还要遍历地调用子元素的measure()方法

自定义View

自定义组合View

我们来自定义一个标题栏 左右是一个ImageView中间是标题title
由于我们是自定义的组合view所以我们需要自定义一个容器布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="45dp">

    <ImageView
        android:id="@+id/iv_titlebar_left"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@android:drawable/ic_menu_camera"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"

        />
    <TextView
        android:id="@+id/tv_titlebar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:textStyle="bold"
        android:singleLine="true"
        android:maxEms="11"
        />
    <ImageView
        android:id="@+id/iv_titlebar_right"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@android:drawable/ic_menu_add"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="TitleBarView">
        <attr name="title_text_color" format="color" />
        <attr name="title_bg" format="color" />
        <attr name="title_text" format="string" />
    </declare-styleable>
</resources>
package com.probuing.androidlight.view;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;

import com.probuing.androidlight.R;

import org.jetbrains.annotations.NotNull;

import butterknife.BindView;
import butterknife.ButterKnife;

public class TitleBarView extends ConstraintLayout {
    @BindView(R.id.ctl_titlebar_layout)
    ConstraintLayout ctlTitlebarLayout;
    private String titleName;
    @BindView(R.id.iv_titlebar_left)
    ImageView ivTitlebarLeft;
    @BindView(R.id.tv_titlebar_title)
    TextView tvTitlebarTitle;
    @BindView(R.id.iv_titlebar_right)
    ImageView ivTitlebarRight;
    private int titleBG = Color.BLUE;
    private int titleTextColor = Color.WHITE;

    public TitleBarView(@NonNull @NotNull Context context) {
        super(context);
        initView(context);
    }


    public TitleBarView(@NonNull @NotNull Context context, @Nullable @org.jetbrains.annotations.Nullable AttributeSet attrs) {
        super(context, attrs);
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.TitleBarView);
        titleBG = typedArray.getColor(R.styleable.TitleBarView_title_bg, Color.BLUE);
        titleTextColor = typedArray.getColor(R.styleable.TitleBarView_title_text_color, Color.WHITE);
        titleName = typedArray.getString(R.styleable.TitleBarView_title_text);
        typedArray.recycle();
        initView(context);
    }

    private void initView(Context context) {
        View view = LayoutInflater.from(context).inflate(R.layout.titlebar_layout, this, true);
        ButterKnife.bind(this, view);
        //设置背景颜色
        ctlTitlebarLayout.setBackgroundColor(titleBG);
        //设置标题文字颜色
        tvTitlebarTitle.setTextColor(titleTextColor);

    }

    public void setTitle(String titleName) {
        tvTitlebarTitle.setText(titleName);
    }

    public void setLeftListener(OnClickListener leftListener) {
        ivTitlebarLeft.setOnClickListener(leftListener);
    }

    public void setRightListener(OnClickListener rightListener) {
        ivTitlebarRight.setOnClickListener(rightListener);
    }
}

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".activity.ViewLSNActivity">
    <com.probuing.androidlight.view.TitleBarView
        android:id="@+id/tbv_mytitlebar"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        app:title_text="自定义titlebar"
        app:title_bg="@android:color/holo_orange_light"
        app:layout_constraintLeft_toLeftOf="parent"
        app:title_text_color="@android:color/holo_blue_dark"
        />
  

</androidx.constraintlayout.widget.ConstraintLayout>

  @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_view_lsnactivity);
        ButterKnife.bind(this);
        startXMLAnimator();
        contentView = getWindow().getDecorView().findViewById(android.R.id.content);
        tbvMytitlebar.setTitle("自定义标题栏");
        tbvMytitlebar.setLeftListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Snackbar.make(contentView, "左边", 200).show();
            }
        });
        tbvMytitlebar.setRightListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Snackbar.make(contentView, "右边", 200).show();
            }
        });
    }
运行结果
上一篇下一篇

猜你喜欢

热点阅读