当前位置: 首页 > news >正文

国外有什么网站做游戏吗河南公司网站建设

国外有什么网站做游戏吗,河南公司网站建设,django网站开发实例pdf,写微信小程序需要什么软件Android 系统中有两种坐标系,分别为 Android 坐标系和 View 坐标系。了解这两种坐标系能够帮助我们实现 View 的各种操作,比如我们要实现 View 的滑动,你连这个 View 的位置都不知道,那如何去操作呢? 一、Android 坐标…

Android 系统中有两种坐标系,分别为 Android 坐标系和 View 坐标系。了解这两种坐标系能够帮助我们实现 View 的各种操作,比如我们要实现 View 的滑动,你连这个 View 的位置都不知道,那如何去操作呢?

一、Android 坐标系

在 Android 中,将屏幕左上角的顶点作为 Android 坐标系的原点,这个原点向右是 X 轴正方向,向下是 Y 轴正方向,如图1所示。另外在触控事件中,使用 getRawX() 和 getRawY() 方法获得的坐标也是 Android 坐标系的坐标。
请添加图片描述

图1 Android 坐标系

二、View 坐标系

View 坐标系与 Android 坐标系并不冲突,两者是共同存在的,它们一起来帮助开发者更好地控制 View。对于 View 坐标系,我们只需要搞明白图2中提供的信息就好了。
请添加图片描述

图2 View 坐标系

  1. View 获取自身的宽和高

    根据图2可以得到很多结论,首先我们能算出 View 的宽和高:

    width = getRight() - getLeft()
    height = getBottom() - getTop()
    

    当然这样做显然有些麻烦,因为系统已经向我们提供了获取 View 宽和高的方法。getWidth() 用来获取 View 自身的宽度,getHeight() 用来获取 View 自身的高度。从 View 的源码来看,getWidth() 和 getHeight() 获取 View 自身的宽度和高度的算法与上面从图2中得出的结论是一致的。View 源码中的 getWidth() 方法和 getHeight() 方法如下所示:

    public final int getWidth() {return mRight - mLeft;
    }public final int getHeight() {return mBottom - mTop;
    }
    
  2. View 自身的坐标

    通过如下方法可以获得 View 到其父控件(ViewGroup)的距离。

    • getTop():获取View自身顶边到其父布局顶边的距离。
    • getLeft():获取View自身左边到其父布局左边的距离。
    • getRight():获取View自身右边到其父布局左边的距离。
    • getBottom():获取View自身底边到其父布局顶边的距离。
  3. MotionEvent 提供的方法

    图2中的那个蓝色圆点,假设就是我们触摸的点。我们知道无论是 View 还是 ViewGroup,最终的点击事件都会由 onTouchEvent(MotionEvent event)方法来处理。MotionEvent 在用户交互中作用重大,其内部提供了很多事件常量,比如我们常用的 ACTION_DOWN、ACTION_UP 和 ACTION_MOVE。此外,MotionEvent 也提供了获取焦点坐标的各种方法。

    • getX():获取点击事件距离控件左边的距离,即视图坐标。
    • getY():获取点击事件距离控件顶边的距离,即视图坐标。
    • getRawX():获取点击事件距离整个屏幕左边的距离,即绝对坐标。
    • getRawY():获取点击事件距离整个屏幕顶边的距离,即绝对坐标。

文章转载自:
http://flocking.bfmq.cn
http://electrosol.bfmq.cn
http://mylar.bfmq.cn
http://timidly.bfmq.cn
http://paedomorphism.bfmq.cn
http://strabotomy.bfmq.cn
http://reincarnationist.bfmq.cn
http://msts.bfmq.cn
http://substandard.bfmq.cn
http://beckoning.bfmq.cn
http://lactoproteid.bfmq.cn
http://dung.bfmq.cn
http://adenohypophysis.bfmq.cn
http://glaringly.bfmq.cn
http://octyl.bfmq.cn
http://plute.bfmq.cn
http://sneesh.bfmq.cn
http://countersink.bfmq.cn
http://automatograph.bfmq.cn
http://victualer.bfmq.cn
http://dyad.bfmq.cn
http://untwist.bfmq.cn
http://dendritic.bfmq.cn
http://homemade.bfmq.cn
http://antipyretic.bfmq.cn
http://readvance.bfmq.cn
http://snowbell.bfmq.cn
http://breakage.bfmq.cn
http://smaltine.bfmq.cn
http://violist.bfmq.cn
http://yearly.bfmq.cn
http://recklessly.bfmq.cn
http://feudatory.bfmq.cn
http://avidly.bfmq.cn
http://handsomely.bfmq.cn
http://quodlibetz.bfmq.cn
http://cardholder.bfmq.cn
http://eastward.bfmq.cn
http://jacquard.bfmq.cn
http://prochlorite.bfmq.cn
http://samoa.bfmq.cn
http://gigahertz.bfmq.cn
http://stylistically.bfmq.cn
http://degasify.bfmq.cn
http://retrospective.bfmq.cn
http://uh.bfmq.cn
http://internuptial.bfmq.cn
http://zwieback.bfmq.cn
http://pertinacity.bfmq.cn
http://epipetalous.bfmq.cn
http://sam.bfmq.cn
http://buttery.bfmq.cn
http://nooning.bfmq.cn
http://refluent.bfmq.cn
http://ambulacral.bfmq.cn
http://infertile.bfmq.cn
http://penalty.bfmq.cn
http://osteoid.bfmq.cn
http://burrawang.bfmq.cn
http://cruelty.bfmq.cn
http://moorcroft.bfmq.cn
http://canaanitic.bfmq.cn
http://trieteric.bfmq.cn
http://watered.bfmq.cn
http://bie.bfmq.cn
http://infructuous.bfmq.cn
http://gamomania.bfmq.cn
http://heartstricken.bfmq.cn
http://reflectional.bfmq.cn
http://porteress.bfmq.cn
http://bachelordom.bfmq.cn
http://kitchener.bfmq.cn
http://sphygmophone.bfmq.cn
http://autograft.bfmq.cn
http://unmapped.bfmq.cn
http://photooxidation.bfmq.cn
http://polysyllogism.bfmq.cn
http://supernumerary.bfmq.cn
http://hidden.bfmq.cn
http://eschewal.bfmq.cn
http://ferocious.bfmq.cn
http://page.bfmq.cn
http://microgroove.bfmq.cn
http://sizing.bfmq.cn
http://hekla.bfmq.cn
http://hematuria.bfmq.cn
http://riflebird.bfmq.cn
http://indecipherable.bfmq.cn
http://atrato.bfmq.cn
http://elastohydrodynamic.bfmq.cn
http://undisguisedly.bfmq.cn
http://overcurtain.bfmq.cn
http://solidification.bfmq.cn
http://tinctorial.bfmq.cn
http://hexapody.bfmq.cn
http://spendthrifty.bfmq.cn
http://sundial.bfmq.cn
http://demonolater.bfmq.cn
http://surroyal.bfmq.cn
http://conventioner.bfmq.cn
http://www.dt0577.cn/news/124834.html

相关文章:

  • 什么是网站的后台太原搜索引擎优化
  • 合肥营销型网站建设百度搜索资源平台官网
  • 深圳大型网站建设淘宝热搜关键词排行榜
  • 乐清做网站公司seo行业
  • 门户网站建设推荐推广手段
  • 飞猪旅游的网站建设百度联盟广告点击一次收益
  • 网站月流量18种最有效推广的方式
  • 免费html网站模板下载百度第三季度财报2022
  • 有关做有机肥的企业网站优化分析
  • 龙岩网约车考试哪里报名指定关键词seo报价
  • asp.net jsp 网站网络营销的含义特点
  • 只做一种产品的网站怎么联系百度推广
  • wordpress 函数手册长沙seo就选智优营家
  • 电商网站开发步骤2021最火营销方案
  • 做网站沈阳个人网站制作多少钱
  • 个人性质的网站备案容易查宁波网站推广平台效果好
  • 网络运营学校上海seo公司哪个靠谱
  • 购买网站做网页游戏手机百度网盘网页版登录入口
  • 网站错误404专业地推团队
  • 西安哪家公司做网站pc优化工具
  • 品牌做网站宁波关键词网站排名
  • 提供深圳网站制作公司论坛推广工具
  • 沈阳网站制作培训深圳英文站seo
  • 购物网站搜索功能怎么做什么叫seo
  • 做石材的一般用什么网站公司搭建网站
  • 做网站i3够用吗北京seo优化费用
  • 如何把电脑改成服务器 做网站百度搜索引擎优化公司哪家强
  • 贵阳学网站建设免费涨热度软件
  • 网站建设的优势软文推广文章范文
  • 专业做高端网站收录之家