方法一:customView.setDrawingCacheEnabled(true);Bitmap bitmap = Bitmap.createBitmap(customView.getDrawingCache());方法二:Bitmap bitmap = Bitmap.createBitmap(...
分类:
移动开发 时间:
2014-12-15 15:17:54
阅读次数:
139
Unable to start activity ComponentInfo{com.example.customview/com.example.customview.MainActivity}:...
分类:
其他好文 时间:
2014-12-09 12:21:14
阅读次数:
155
1.addtarget 的。部分使用事件没有直接的操作方式,需要进行调用。就要用addTarget。- (void)setupCustomView { self.customView = [[CHView alloc] init]; self.customView.translatesAuto...
分类:
移动开发 时间:
2014-11-24 19:05:17
阅读次数:
475
隐藏navigationitem中的buttonitemself.navigationItem.rightBarButtonItem.customView.hidden = YES;
分类:
其他好文 时间:
2014-11-03 10:04:12
阅读次数:
90
1、写一个类继承View或你想扩展功能的控件(比如TextView)。 public class CustomView extends View { };2、在/res/value下创建一个attr.xml文件。没有这个文件自定义控件照样能显示出来,但只能使用所继承的父类中包含的属性,有了这个文件可...
分类:
移动开发 时间:
2014-10-28 23:31:51
阅读次数:
185
上一篇我们简单的介绍了一下RoboGuice的使用(【十】注入框架RoboGuice使用:(Your
First Testcase)),今天我们来看下自定义View的注入(Custom View)。
在开始本文之前,你先要熟悉普通Java对象的注入(点击进入)。在RoboGuice
3.0版本中你同样给自定义View(Custom View)进行诸如。
class...
分类:
其他好文 时间:
2014-10-28 21:37:48
阅读次数:
202
了解演示demo的UI布局:
(lldb) po [[self view] recursiveDescription]
>
| >
| | >
| | | >
也即是:self.view 上添加个自定义的customView
打印调用的顺序:
TestFunctionCall[49445:60b] ---> -[ZQRootV...
分类:
其他好文 时间:
2014-10-15 13:16:50
阅读次数:
196
Custom ViewErrorsE1 在使用自定义CustomView时,出现以下runtime error:Android.View.InflateException: Binary XML File Line #LineNumberSolution: 自定义的View 子类(例如,类名为: F...
分类:
移动开发 时间:
2014-10-09 01:22:27
阅读次数:
248
#pragma mark - 创建旋转动画提示- (CustomView *)initIndicatorViewWithTitle:(NSString *)title{ self = [super initWithFrame:[[UIScreen mainScreen] bounds]]; ...
分类:
其他好文 时间:
2014-09-13 22:40:06
阅读次数:
162
添加删除SUBVIEW1. 添加[self.view addSubview:customView]; 2. 删除一个view上面所有的subviewfor(UIView *subview in [self.view subviews]) { [subview removeFromSupervi...
分类:
其他好文 时间:
2014-06-14 15:45:53
阅读次数:
146