//放置按钮 //登录 _loginButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; _loginButton.frame = CGRectMake(20, 300, 280, 35); _loginButton.ba...
分类:
其他好文 时间:
2014-12-06 16:50:34
阅读次数:
129
昨天写了一个小Demo,实现了几个小功能,今天贴上来。由于这几个个Feature比较简单,所以放在一起了。先看一下效果图:
上代码:
Main:
package com.example.includelayoutdemo;
import android.app.Activity;
import android.os.Bundle;
import android.view.L...
分类:
移动开发 时间:
2014-11-05 11:01:12
阅读次数:
174
在程序对应坐置插入以下代码,或是先拖一个按钮控件到窗体中,再替换对应的代码。修改CornerRadius="18,3,18,3" 就可以改变圆角大小按钮效果: ...
分类:
其他好文 时间:
2014-09-27 21:06:40
阅读次数:
255
之前做项目的时候,基本都是将圆角背景图切成三块,故而每次用的标签都超级多,a标签中总是包含三个span,然后里面还得放按钮,导航冗余标签极多。 事实上是之前理解的滑动门的精髓不够到位。 现在有两种方式。 效果展示:http://runjs.cn/detail/evk8nkc8 先上传...
分类:
Web程序 时间:
2014-09-24 17:22:17
阅读次数:
356
无标题文档 Test passes if there is a box with rounded corners below. Filler Text behavior: url(../js/PIE.htc);这个引用htc文件的,指的是html页面相对于这个htc文件的...
分类:
Web程序 时间:
2014-09-24 16:35:47
阅读次数:
234
button.layer.cornerRadius = 10 // 这个值根据你想要的效果可以更改button.clipsToBounds = true这种方法不止可以设置按钮,UIView应该都可以设置,ImageView我试过ok,其他的UIKit用到了再试
分类:
移动开发 时间:
2014-09-03 16:32:36
阅读次数:
169
#import @interface APRoundedButton : UIButton@property (nonatomic, assign) int style;@end//// Created by Alberto Pasca on 27/02/14.// Copyright (c) .....
分类:
其他好文 时间:
2014-08-13 12:32:26
阅读次数:
212
新建buttonstyle.xml 代码如下 ...
分类:
移动开发 时间:
2014-08-13 10:20:15
阅读次数:
194
Android实际开发中我们一般需要圆角的按钮,一般情况下我们可以让美工做出来相应的按钮图片,然后放上去即可,另外我们可以在布局文件中直接设置,也可以达到一样的效果。下面讲解在布局文件中自定义圆角按钮的小Demo。
代码很简单,实现效果图:
源代码:
源代码:
这里主要是xml布局文件实现:
MainActivity:
package com.android_drawa...
分类:
移动开发 时间:
2014-07-14 18:41:17
阅读次数:
382
圆角按钮,或布局可以在xml文件中实现,但也可以使用图片直接达到所需的效果,以前版本的微信就使用了这种方法。
实现效果图:
不得不说,这种做法还是比较方便的。
源代码:
MainActivity(没写任何代码,效果全在布局文件中实现):
package com.android_settings;
import android.app.Activity;
import...
分类:
微信 时间:
2014-07-14 18:27:39
阅读次数:
578