#IE

Android适配器之基于BaseAdapter定义AbslistView万能适配器

推荐优先本地搜索浏览 Android适配器之DataModifyHelper数据操作类的封装定义BaseAdapter抽象基类,抽取共性部分,即实现getCount、getItem、getItemId观察源码可知,在构造函数中实例化DataModifyHelper对象,该对象负责数据的增删改查等操作。适配器中...

Android适配器之 V7扩展包 RecyclerView 的使用以及万能适配器的封装实现

compile'com.android.support:appcompat-v7:23.2.1'compile'com.android.support:recyclerview-v7:23.2.1'备注:recyclerview的版本号要与appcompat的一致,此处为:v7:23.2.1以泛型方式定义通用Recyc...

Android之View.getRootView

view.getRootView的官方解释是Findsthetopmostviewinthecurrentviewhierarchy那这个顶层的View究竟是xml的最外层布局,还是getDecorView,抑或其他的呢?下面通过测试来了解getRootView的真正含义,定义xml文件如下:<?xmlversi...
代码星球 ·2020-04-09

Android之ViewPager.PageTransformer

继承PageTransformer,滑动ViewPager,可以观察到publicabstractclassAbsBaseViewPagerTransferimplementsViewPager.PageTransformer{privatestaticfinalUtilsLoglg=UtilsLog.getLogge...
代码星球 ·2020-04-09

1120 Friend Numbers (20 分)

Twointegersarecalled"friendnumbers"iftheysharethesamesumoftheirdigits,andthesumistheir"friendID".Forexample,123and51arefriendnumberssince1+2+3=5+1=6,and6istheir...
代码星球 ·2020-04-08

1013. Battle Over Cities (25)

Itisvitallyimportanttohaveallthecitiesconnectedbyhighwaysinawar.Ifacityisoccupiedbytheenemy,allthehighwaysfrom/towardthatcityareclosed.Wemustknowimmediatelyifwe...
代码星球 ·2020-04-08

1073. Scientific Notation (20)

Scientificnotationisthewaythatscientistseasilyhandleverylargenumbersorverysmallnumbers.Thenotationmatchestheregularexpression[+-][1-9]"."[0-9]+E[+-][0-9]+whichm...
代码星球 ·2020-04-08

localStorage、sessionStorage、Cookie的区别及用法

 webstorage是本地存储,存储在客户端,包括localStorage和sessionStorage。localStorage生命周期是永久,这意味着除非用户显示在浏览器提供的UI上清除localStorage信息,否则这些信息将永远存在。存放数据大小为一般为5MB,而且它仅在客户端(即浏览器)中保存,...

(fields.E130) DecimalFields must define a 'decimal_places' attribute.

DecimalField类型:固定精度的十进制数,一般用来存金额相关的数据。额外的参数包括DecimalField.max_digits(整个数字的长度)和DecimalField.decimal_places(小数点后面的有效位数)模型定义时,DecimalField类型字段如下定义:aaf_1kg_all=mode...

Django模型的Field Types总结

FieldTypes常用参数:null如果设置为True,Django存放一个NULL到数据库字段。默认为False。blank如果设置为True,此field允许为blank(空白),默认为False。choices一个2元元组的元组或者列表,如果执行choices,Django的admin就会使用选择框而不是标准的...

Django CreateView 简单使用

django.views.generic中的CreateView类,是基于View的子类。CreateView可以简单快速的创建表对象。下面记录小作代码。#polls/views.pyfromdjango.views.genericimportCreateViewclassQuestionCreate(CreateVi...

Django 模型中FileField字段

FileField¶class FileField([upload_to=None, max_length=100, **options])¶一个上传文件的字段。注意FileField字段不支持primary_key 和unique参数,如果使用会生成&nbs...

Django 模型中DateField字段

DateField¶class DateField([auto_now=False, auto_now_add=False, **options])¶这是一个使用Python的datetime.date实例表示的日期. 有几个额外的设置参数:DateField...

Django 模型中字段类型的ImageField

model_pic=models.ImageField(upload_to='pic_folder/',default='pic_folder/None/no-img.jpg') 参数upload_to是指定将图片上传到哪个文件夹。参数default是指定在没有上传图片的时指向的图片。...
首页上一页...246247248249250...下一页尾页