Delegate 自定义视图CustomView ,创建一个实例对象,开始点击时视图缩短,移动过程中随机修改颜色,结束点击时视图恢复宽度#import "AppDelegate.h"#import "RootViewController.h"@interface AppD...
分类:
其他好文 时间:
2015-08-26 01:23:17
阅读次数:
101
1\在实际编程过程中往往需要自定义导航栏上面的按钮,也就用:- (instancetype)initWithCustomView:(UIView *)customView;但用了这个方法后可能会导致iOS7,8的手势返回失效,解决方法就是在自定义的导航栏的viewDidLoad方法中添加如下代码注意...
分类:
移动开发 时间:
2015-08-13 13:46:38
阅读次数:
182
在最近的项目中需要用到一个类似于toast效果的警告框,而且还要是圆角的。下面是我实现的效果截图:
首先定义一个dialog:
package com.bobge.doura.customview;
import android.app.Dialog;
import android.content.Context;
import android.view.LayoutInflater;
...
分类:
其他好文 时间:
2015-08-05 12:55:39
阅读次数:
147
本节要实现:自定义一个带下边框的EditText。1.xml代码中:
只需要将标签元素设置成:自定义的 包名+类名 格式。
(不满意默认风格,只需加上:
android:background=”@null”
便注销掉所有默认风格)2.Java代码示例:package com.magicalign.prometheus.customview;import android.content.Con...
分类:
其他好文 时间:
2015-07-27 23:09:28
阅读次数:
144
废话少说,直接上代码。工程截图如下图所示。由于对程序进行了封装,所以在主控制器中,只需要给出该customview的frame即可,显示图形的半径等于给出frame的宽度的一半。例如:CustomView *customView = [[CustomView alloc]initWithFrame:...
分类:
微信 时间:
2015-07-25 01:37:41
阅读次数:
298
今天在尝试自定义一个控件后,在布局文件中使用的时候报错
xmlns:tools="http://schemas.android.com/tools"
xmlns:carrey="http://schemas.android.com/apk/res/com.example.customview"
android:layout_width="match_parent"...
分类:
其他好文 时间:
2015-07-23 12:08:27
阅读次数:
143
用法:首先让指定的Activity实现Android.view.OnGestureListener,然后在你需要调用GestureDetector的View上,添加onTouchListener,之后setLongClickable(true)即可.
如:
customView.setOnTouchListner(xxxListener);
customView.setLongClickab...
分类:
移动开发 时间:
2015-07-20 23:50:48
阅读次数:
301
一、在res/values文件下定义一个attrs.xml文件.代码如下://在自定义属性中使用Android自带的属性名字//自定义属性,format属性表示该属性的单位二、我们在customView.java代码修改如下,其中下面的构造方法是重点,我们获取定义的属性R.sytleable.cus...
分类:
移动开发 时间:
2015-07-14 13:22:08
阅读次数:
148
#import "ViewController.h"#import #import #import "CustomView.h"#define width self.view.frame.size.width//#define height self.view.frame.size.height@i...
分类:
其他好文 时间:
2015-07-08 16:08:56
阅读次数:
119