在onCreate或onResume中调用了getChildAt()方法,这时候adapter中的Item还没有放入到AdapterView中去.... 解决方法,当activity获得焦点事件的时候在调用就没问题了         @Override           public void onWindowFocusChanged(boolean hasFocus) {               // TODO Auto-generated method stub            …
这篇文章主要介绍了BootStrap iCheck插件全选与获取value值的解决方法,解决方法其实很简单,下面小编给大家分享下这方面的知识 在使用jQuery iCheck 插件的时候遇到了一个问题,就是当我们使用普通的js全选功能无效了. $("#checkall").click( function(){ if(this.checked){ $("input[name='checkname']").each(function(){this.checked=tru…
Laravel5.4 vuejs和axios使用钩子mounted不能获取属性data的解决方法 //出错问题:在then 这个里边的赋值方法this.followed = response.data.followed会出现报错,什么原因呢?原来是在 then的内部不能使用Vue的实例化的this, 因为在内部 this 没有被绑定.解决:self.followed = response.data.followed;或者使用 ES6 的 箭头函数arrow function,箭头方法可以和父方法…
php session获取不到的解决方法 因为sesson数据是存在服务器端的硬盘一般临时空间不足 /tmp/ 1 这个需要清空下系统盘就可以了2 你可以在空间充足的地方mkdir 文件夹——你可以使用的文件夹,例如:mkdir /home/username/tmp 为了是设置生效,需要设置环境变量,只要export TMPDIR=/home/username/tmp,编辑完成记得source ~/.bashrc 这样就不会出现 tmp文件夹不够用的情况.…
使用ListView时遇到如下的异常信息: 10-26 18:30:45.085: E/AndroidRuntime(7323): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a backgr…
http://blog.csdn.net/hqzxsc2006/article/details/50036911 待实践.. 解决方法:appium下切换selendroid模式去获取Android的toast提示. desired_caps配置: desired_caps_android={ 'platformVersion':'4.4',\ 'deviceName':'',\ 'udid':'34d7d220',\ 'platformName':'android',\ 'automation…
今天遇到一个问题,那就是当使用for循环批量注册事件处理函数,然后最后通过事件处理函数获取当前元素的索引值的时候会失败,先看一段代码实例: <script type="text/javascript"> window.onload=function(){ var oLis=document.getElementsByTagName("li"); var oshow=document.getElementById("show"); fo…
用如下方法获取UserId报空引用异常 public class BaseController : Controller { protected SiteContext db = new SiteContext(); protected Guid userId; public BaseController() { userId = Guid.Parse(User.Identity.GetUserId()); } }   由于Controller未初始化完成,User为空,重写初始化方法,在初始化…
移动端手机ios网页,apppend添加html class名用 on()方法没效果 解决方案:在html里面给需要点击的元素加一个onclick="javascript:void(0)" 就好了: 主要原因是之前dom中没有没有append添加的元素 解决方法就是在click之前重新获取添加后的dom, 贴代码: $(document).on('click','.single-option-li',function (){ $(this).addClass('selected').s…
这几天做一个自动扫描SD卡上所有APK文件的小工具,扫描过程中会把APK添加到LISTVIEW中显示,结果出现以下错误:(有时候触摸更新数据时候,触摸listview也会报错) E/AndroidRuntime(): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of…