面试相关精选案例系统知识

Android 自定义 View 基础知识篇

2019-02-13  本文已影响192人  MobMsg

Android 中 View 的分类


Android 中 View 的简介

/**
 * @des  自定义 View 实例
 * @author liyongli 20190213
 * */
public class CustomCircleView extends View {

    // 当 View 是在 Java 代码中被 new 出对象时,会调用此函数
    public CustomCircleView(Context context) {
        super(context);
    }

    // 当 View 是在 xml 布局文件中被声名时,会调用此函数
    public CustomCircleView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    // 此函数不会被自动调用,一般会在第二个函数中调用,比如给 View 设置 style 属性时
    public CustomCircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    // API 21 之后才使用,此函数不会被自动调用,一般会在第二个函数中调用,比如给 View 设置 style 属性时
    public CustomCircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }
}

更加具体的使用请看:深入理解View的构造函数理解View的构造函数


Android 中 View 的视图结构

一般来讲,我们看到的都是多 View 的视图,它是树形结构的。
重点看下图中橘黄色包含的部分:

重点看橘黄色部分

Android 中的坐标系

数学坐标系与 Android 屏幕坐标系的区别


Android 中 View 位置的设置

请谨记:View 的位置是相对于父控件而言的,4个顶点的位置描述分别由4个值决定:

  1. Top:子 View 上边界到父View 上边界
  2. Left:子 View 左边界到父 View 左边界
  3. Bottom:子 View下边界到父View 上边界的距离
  4. Right:子 View 右边界到父 View 左边界的距离

建议记忆方法:子 View 的位置是根据父 View 左边距和上边距来确定的。


Android 中 组件位置获取方式

// 获取Top位置
public final int getTop() {  
    return mTop;  
}  

// 其余如下:
  getLeft();      //获取子View左上角距父View左侧的距离
  getBottom();    //获取子View右下角距父View顶部的距离
  getRight();     //获取子View右下角距父View左侧的距离
//get() :触摸点相对于其所在组件坐标系的坐标
 event.getX();       
 event.getY();

//getRaw() :触摸点相对于屏幕默认坐标系的坐标
 event.getRawX();    
 event.getRawY();

Android 中的「角度(angle)」与「弧度(radian)」

在默认的屏幕坐标系中,角度的增大方向为顺时针


但在常见数学坐标系中,角度的增大方向为逆时针(脑补脑补脑补)

Android 中的 Color

Android 中的颜色相关内容需要我们掌握的是颜色模式、创建颜色的方式,以及颜色的引用方式

颜色模式
颜色的创建方式
//Color类是使用ARGB值进行表示

// 指定色值
int color = Color.parseColor("#FFFFFF");

// 灰色
int color = Color.GRAY;     //灰色

//半透明红色
int color = Color.argb(127, 255, 0, 0);

//带有透明度的红色
int color = 0xaaff0000;       
       
<?xml version="1.0" encoding="utf-8"?>
<resources>

    //定义了红色(没有alpha(透明)通道)
    <color name="red">#ff0000</color>

    //定义了蓝色(没有alpha(透明)通道)
    <color name="green">#00ff00</color>

    // #f00  低精度 - 不带透明通道红色
    // #af00  低精度 - 带透明通道红色
    // #ff0000  高精度 - 不带透明通道红色
    // #aaff0000  高精度 - 带透明通道红色

</resources>

颜色的引用方式
//方法1
int color = getResources().getColor(R.color.mycolor);

//方法2(API 23及以上)
int color = getColor(R.color.myColor);    

 <!--在style文件中引用-->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/red</item>
    </style>

 <!--在layout文件中引用在/res/values/color.xml中定义的颜色-->
  android:background="@color/red"     

 <!--在layout文件中创建并使用颜色-->
  android:background="#ff0000"    


基础知识篇到此完毕,进阶篇完善中,欢迎关注本人继续跟进技术干货的更新!

上一篇下一篇

猜你喜欢

热点阅读