UiUtils】的更多相关文章

import android.app.Activity; import android.app.Dialog; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable;…
listview经常结合下来刷新和上拉加载更多使用,本文总结了三种常用到的方案分别作出说明. 方案一:添加头布局和脚布局        android系统为listview提供了addfootview和addheadview两个API.这样可以直接自定义一个View,以添加视图的形式实现下来刷新和上拉加载.     实现步骤       1.创建一个类继承ListView:class PullToRefreshListView extends ListView:       2.在构造方法中添加…
为了更方便高效的使用BaseAdapter,特意抽取了一下,下面是简单的结构图: 需要4个类: [MyBaseAdapter3]: public abstract class MyBaseAdapter3<T> extends BaseAdapter { public List<T> list; public MyBaseAdapter3(List<T> list) { this.list = list; } @Override public int getCount(…
在使用TabPageIndicator往往会出现一些样式问题,导致看不到字,下面是总结的步骤: 1.布局<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_he…
[需求]: 如上面图示 当点开某个一级菜单的时候,其他菜单收起: 子级菜单默认最多5个: 多于5个的显示"展开更多" 点击"展开更多",展开该级所有子级菜单,同时显示"收起更多" [代码]: @Bind(R.id.exp_listview)ExpandableListView expListview; adapter = new MyAdapter1(dataBeans);expListview.setDividerHeight(0);expLi…
ueditor实际上是集成了webuploader, 在做内容发布的时候想既有ueditor又有单独的附件上传按钮,这时再加载一个webuploader就显得过于臃肿了,单独利用ueditor的上传功能就比较合适了 首先是显示附件上传dialog,两种方式 ue.ui._dialogs["attachment" + "Dialog"](推荐); dialog = parent.$EDITORUI[window.frameElement.id.replace( /_i…
1.文本框(text field or textarea) element.sendKeys("test");//在输入框中输入内容: element.clear(); //将输入框清空 element.getText(); //获取输入框的文本内容: 2.下来选择框(select) Select select = new Select(driver.findElement(By.id("select"))); select.selectByVisibleText(…
selenium通过driver.findElement(By selector)来定位元素,selector在selenium-java.jar中,里面的方法一共就8种,如下图: 基本定义: By.id WebElement element = driver.findElement(By.id("passwd-id")); By.name WebElement element = driver.findElement(By.name("passwd")); By.…
本文链接:http://www.codeceo.com/article/6-angularjs-extension.html本文作者:码农网 – 小峰 AngularJS现在非常热门,是Google推出的一款非常优秀的前端JS框架.AngularJS最核心的概念是MVC.模块化.自动化双向数据绑定.语义化标签.依赖注入等.目前AngularJS扩展还比较少,本文就向各位分享6个实用强大的AngularJS扩展应用. 1.AngularJS 认证模块 Satellizer Satellizer是一…
今天将奉献一个在在几个angularjs项目中抽离的angular组件 input mask.在我们开发中经常会对用户的输入进行控制,比如日期,货币格式,或者纯数字格式之类的限制,这就是input mask的使用场景,在项目中也是会经常被提及需的需求之一. 当然在官方的angular-ui ui-utils中有一个相应的组件叫做ui-mask,但是其mask功能是很初级脆弱的.所以我希望能得到一个更强大的mask组件.我所知的jquery.inputmask就是这样一个我所期望的强大的mask组…