码迷,mamicode.com
首页 >  
搜索关键字:setbounds    ( 68个结果
图形程序设计
窗口: 窗口放置在左上角水平x像素,垂直y像素的位置:setLocation(x,y) 设置窗口的大小:setSize(width,height) 同时设置窗口的位置和大小:setBounds(x,y,width,height) 关闭窗口的相应动作:frame.setDefultCloseOpera ...
分类:其他好文   时间:2016-09-22 14:34:35    阅读次数:285
Android-------设置TextView同时显示图片和文本,并控制图片大小
//获取资源图片 Drawable leftDrawable = getResources().getDrawable(R.drawable.comment_parise); //设置图片的尺寸,奇数位置后减前得到宽度,偶数位置后减前得到高度。 leftDrawable.setBounds(0, 0 ...
分类:移动开发   时间:2016-06-27 17:18:34    阅读次数:150
IOS之frame和bounds区别
用最简单的语言来解释就是:setFrame和setBounds都是为了把子view加载到父view上去,但设置的参数坐标系不同,setFrame是该view在父view坐标系统中的位置和大小,setBounds是该view在本地坐标系统中的位置和大小。 下面是盗来的资料: 再来看张图就明白了, fr ...
分类:移动开发   时间:2016-06-27 11:59:41    阅读次数:177
ondraw() 和dispatchdraw()的区别
绘制VIew本身的内容,通过调用View.onDraw(canvas)函数实现 绘制自己的孩子通过dispatchDraw(canvas)实现 View组件的绘制会调用draw(Canvas canvas)方法,draw过程中主要是先画Drawable背景,对 drawable调用setBounds ...
分类:其他好文   时间:2016-05-30 10:03:14    阅读次数:124
iOS View的Frame和bounds之区别,setbounds使用(深入探究)
前言: 在ios开发中经常遇到两个词Frame和bounds,本文主要阐述Frame和bound的区别,尤其是bound很绕,较难理解。 一、首先,看一下公认的资料: 先看到下面的代码你肯定就明白了一些: 很明显,bounds的原点是(0,0)点(就是view本身的坐标系统,默认永远都是0,0点,除 ...
分类:移动开发   时间:2016-05-23 10:29:24    阅读次数:184
绝对布局
public class AbsolutePosition extends JFrame{ public AbsolutePosition() { setTitle("本窗口使用绝对布局"); setLayout(null); setBounds(0, 0, 200, 150); Container ...
分类:其他好文   时间:2016-05-22 20:06:22    阅读次数:129
画虚线
//画虚线 CAShapeLayer *shapeLayer = [CAShapeLayer layer]; [shapeLayer setBounds:self.backView.bounds]; [shapeLayer setPosition:self.backView.center]; [sh ...
分类:其他好文   时间:2016-05-13 08:14:11    阅读次数:125
Android RadioButton代码去掉左边默认显示的圆圈
Drawable drawable = context.getResources().getDrawable( R.drawable.radiobg); drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrin ...
分类:移动开发   时间:2016-05-04 10:24:40    阅读次数:778
AutoLayoutLabel
- (void)setBounds:(CGRect)bounds { [super setBounds:bounds]; if (bounds.size.width != self.preferredMaxLayoutWidth) { self.preferredMaxLayoutWidth = s ...
分类:其他好文   时间:2016-04-22 13:31:33    阅读次数:113
Java图形化界面设计——布局管理器之null布局(空布局)
一般容器都有默认布局方式,但是有时候需要精确指定各个组建的大小和位置,就需要用到空布局。操作方法:1) 首先利用setLayout(null)语句将容器的布局设置为null布局(空布局)。2) 再调用组件的setBounds(int x, int y, int width,int height)方法...
分类:编程语言   时间:2015-12-01 12:22:28    阅读次数:142
68条   上一页 1 2 3 4 5 ... 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!