一、点击按钮弹出卫星导航Button 1、背景:fragment中嵌套recyclerview,当点击功能键(三个点)的时候弹出如右图的导航菜单并伴随动画。 刚接到需求时,开始github上检索相似控件以提供灵感。最终采用这个。https://github.com/linglongxin24/Cir ...
分类:
其他好文 时间:
2018-12-18 22:38:12
阅读次数:
214
原文:wpf 触摸屏 button 背景为null的 问题 当使用背景注释行的 x:null 时 在触摸屏上 必须点击button按钮中间的内容才有 click事件,而button 内容周围的 区域 都无点击效果 改为使用 Transparent 时 才能在整个button ...
View 创建 colors.xml 文件定义两个颜色 1. <resources> 2. <color name="blue_pressed">@android:color/holo_blue_dark</color> 3. <color name="blue_normal">@android:c ...
分类:
移动开发 时间:
2017-04-30 20:37:20
阅读次数:
244
UITextField使用 1.创建方式 例: UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; 2.常用方法和属性 1)边框样式 @property(nonatomic) UITe ...
分类:
移动开发 时间:
2017-01-19 21:14:46
阅读次数:
236
1,ios的button背景使用background url可能无法显示(被缓存),尝试使用img时发现不触发click事件,需改为touchstart事件触发img按钮 2,使用fiddeler抓包 3,createjs禁用了所有的touch事件,绑定事件时需要先启用createjs的touch模 ...
分类:
微信 时间:
2016-09-25 20:24:30
阅读次数:
257
这里用到属性触发器,当Button的IsMouseOver属性值为True时,我们对其样式进行修改,这里以修改Button背景色为例。 首先是启动后未触发时的效果图: 我一开始想到的就是直接修改其Background属性,代码如下: 但是实际运行效果没达到预期,鼠标停留在Button上时仍然是原来自 ...
效果图:两个label、两个textField、两个button(背景是图片);点击时间对应的按钮,创建选择日期的DatePicker(并移除选择地点的PickerView),选择日期,将结果传到相应textField内,点击地点对应的按钮,创建选择地点的PickerView(并移除选择地点的Dat ...
分类:
其他好文 时间:
2016-05-28 17:34:52
阅读次数:
463
Android自定义Button背景色,弧度作为selector放在drawable中
android:state_pressed=”true” 点击
android:state_focused=”true” 聚焦
自定义的Button的xml文件(res/drawable/button_selector.xml)"><selector
xmlns:android="http://sc...
分类:
移动开发 时间:
2016-05-12 19:53:34
阅读次数:
323
//自定义button设置背景色的方法
- (void)setBackgroundColor:(UIColor *)color forState:(UIControlState)state{
[self setBackgroundImage:[self buttonImageFromColor:color] forState:state];
}
- (UII...
分类:
其他好文 时间:
2015-07-17 19:06:52
阅读次数:
98