View位置相关
1、Android的坐标系定义为:屏幕的左上角为坐标原点,向右为x轴增大方向,向下为y轴增大方向
-
getLeft():子View左上角距父View左侧的距离
-
getTop():子View左上角距父View顶部的距离;
-
getRight():子View右下角距父View左侧的距离
-
getBottom():子View右下角距父View顶部的距离
public final int getLeft() { return mLeft; } public final int getRight() { return mRight; } public final int getTop() { return mTop; } public final int getBottom() { return mBottom; } public final int getHeight() { return mBottom - mTop; } public final int getWidth() { return mRight - mLeft; }
对于mLeft,mRight,mTop,mBottom同时也提供了对应的set方法,一般我们不会调用,因为会影响View的宽高,同时改变着4个值的方法还有setFrame()和setOpticalFrame(),用过View中layout的源码所知
boolean changed = isLayoutModeOptical(mParent) ?setOpticalFrame(l, t, r, b) : setFrame(l, t, r, b);
也就是说,系统对于这4个属性的修改,仅仅限于在layout方法内部,而layout方法我们都知道,是View在onMeasure测量之后,对自身以及子控件进行位置布局的。
总结:
- 如果想改变这4个属性的值可以调用set方法,也可以通过设置LayoutParams设置对应的margin,因为父容器在布局的时候调用
layout(int l, int t, int r, int b)
时会加上margin的值- 如果想要改变View对于父容器的影响,那么影响的是mLeft、mTop、width、height等属于父容器的属性(mLeft、mTop、width、height等都是父容器的属性,而不属于本View)
- 如果想要改变View自身的影响,比如添加监听器,添加动画等等,那么影响的是translationX、translationY等属于自身的属性
2、getX()与getY()方法获取的是View左上角相对于父容器的坐标;getTranslationX()、getTranslationY()是View左上角相对于父容器的偏移量
getX() = getLeft() + getTranslationX()
getY() = getRight() + getTranslationY()
3、getLocationOnScreen、getLocationInWindow
- View.getLocationOnScreen(int[] position)获取View相对于整个屏幕的坐标
- View.getLocationInWindow(int[] position)获取View相对于Window的坐标
以上2种方法得到绝对位置的方法只在有弹出窗时会有区别。
4、MotionEvent相关
- getX()和getY()获取到的是相对于当前View左上角的坐标
- getRawX()和getRawY()获取的是相对于屏幕左上角的坐标
代码实例##
image图中textView的各项值
int left = textView.getLeft();//399
int top = textView.getTop();//739
int right = textView.getRight();//680
int bottom = textView.getBottom();//796
int width = textView.getWidth();//281
int height = textView.getHeight();//57
float x = textView.getX();//399
float y = textView.getY();//739
float translationX = textView.getTranslationX();//0
float translationY = textView.getTranslationY();//0
现在使用属性动画将TextView向右平移100,
ObjectAnimator animator = ObjectAnimator.ofFloat(textView, "TranslationX", 100f);
animator.setDuration(1000);
animator.start();
animator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
int left = textView.getLeft();//399
int top = textView.getTop();//739
int right = textView.getRight();//680
int bottom = textView.getBottom();//796
int width = textView.getWidth();//281
int height = textView.getHeight();//57
int measuredWidth = textView.getMeasuredWidth();//281
int measuredHeight = textView.getMeasuredHeight();//57
float x = textView.getX();//499
float y = textView.getY();//739
float translationX = textView.getTranslationX();//100
float translationY = textView.getTranslationY();//0
}
});
可以看出getTranslationX()由0变成100;getX()的值由399变成499,增加了100;其他的属性均没有变化
Android中颜色获取
int color = 0xff303F9F;
int color = getResources().getColor(R.color.colorPrimaryDark);
int color = getColor(R.color.colorPrimaryDark);// (API 23及以上)
int color = Color.parseColor("#ff303F9F");
int color = Color.BLUE;
int color = Color.argb(127, 255, 0, 0);
textView.setTextColor(color);
网友评论