iOS类微信返回导航WebViewController 经验

wself = self; for (UIView *_view in _webView.scrollView.subviews) { if ([_view isKindOfClass:NSClassFro

yeliz 2016-08-02   17605   0

仿照网易云音乐界面 经验

项目大体框架,由ViewPager和TabContentPagerAdapter实现顶部的左右滑动切换view. 右侧滑动DrawerLayout 实现左右滑动。 项目大体实现: package

IT蓝豹 2015-12-18   20924   0

蘑菇街开源的安卓单元测试框架 经验

那当然是Fork & PR啦! ViewTestBase 这个类一般是用来测试Custom View的,你的CustomView对应的TestClass可以继承这个类。它给你提供的辅助有 上面提到

rmpp2195 2016-12-28   5297   0

Android实现可随意拖动的悬浮窗体 经验

android.view.Gravity; import android.view.MotionEvent; import android.view.View; import android.view.View

jopen 2014-09-12   50311   0

自定义Listview实现横向的HorizontalListView 经验

android.util.Log; import android.view.GestureDetector; import android.view.GestureDetector.OnGestureListener;

jopen 2013-04-25   109224   0

关于Android MVP模式的思考 经验

目和包结构。今天就来总结一下我在这个过程中理解和实践吧。 MVP概述 MVP是指Model,View和Presenter的缩写,是MVC模式的一种改进版。MVP是一种非常适合Android应用的开发模式,它

NewAE77 2017-03-13   5061   0

Android实现动画PopupWindow 经验

Activity { private View view; private Button btn; private PopupWindow mPopupWindow; private View[] btns; /**

jopen 2013-12-25   36344   0

Android listview 实现分页 经验

Log; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android

jopen 2013-08-06   23795   0

Android 五子连珠背后的故事 经验

方面进行展开。 ok,进入正题。对于五子棋,因为涉及到棋盘、棋子的绘制,所以肯定离不开自定义View。可能有人还会想到,因为是游戏,那么考不考虑SurfaceView,恩,因为五子棋的绘制基本都是

ChetBacon 2016-11-22   6386   0

MixPanel:Android 端埋点技术研究 经验

takeScreenshot(final RootViewInfo info) { final View rootView = info.rootView; Bitmap rawBitmap = null;

jason_guo 2017-10-28   26566   0

快速入门GreenDao框架并实现增删改查案例 经验

text.TextUtils; import android.view.LayoutInflater; import android.view.View; import android.widget.Button;

TimothyFuen 2016-05-12   64430   0

生成RecyclerView和AbsListView适配器:AnnotatedAdapter 经验

create an adapter class like this and annotate the view types with @ViewType and provide some more information

jopen 2014-10-20   20887   0

PolygonImageView - 多边形、圆形效果的自定义ImageView 经验

多边形、圆形效果。 运行效果: 使用说明: XML view.PolygonImageView         android:layout_width="250dp"

jopen 2015-06-16   35092   0

jQuery 滚动插件:ScrollAdvance 经验

turns the number of pixels that are hidden from view under the scrollable area. If the scroll bar is

jopen 2014-09-15   14206   0
P4

  android spinner实例 文档

Bundle; import android.view.MotionEvent; import android.view.View; import android.view.animation.Animation;

wolf_xuan 2014-08-19   745   0

Android开源:TreeView-利用 RecyclerView 打造高性能树形控件 经验

TreeView An android tree view with high performance and rich functions Captures There are some gifs

chongchuan 2017-05-03   24117   0
P21

  iOS提高性能技巧 文档

1.使用ARC进行内存管理 2.在适当的情况下使用reuseIdentifier 3.尽可能将View设置为不透明(Opaque) 4.避免臃肿的XIBs 5.不要阻塞主线程 6.让图片的大小跟UIImageView一样

lzl0910 2014-12-27   700   0

ORACLE创建表空间、创建用户、以及授权、权限 博客

[java] view plain copy SELECT * FROM DBA_SYS_PRIVS; SELECT * FROM USER_SYS_PRIVS; 创建临时表空间: [java]

lishoubin 2013-07-10   1771   0

iOS7风格的联系人选择器:MBContactPicker 经验

this method to pre-populate contacts in the picker view. Optional. - (NSArray *)selectedContactModelsFo

jopen 2014-01-05   18922   0

Android LoadingLayout 经验

LoadingLayout集成自Framelayout,默认把第一个子view当做内容视图,其他的子view会被忽略 使用如下:

jopen 2015-08-28   21438   0
1 2 3 4 5 6 7 8 9 10