Android开发
fuckchen412
这个作者很懒,什么都没留下…
展开
-
java.lang.InstantiationException:no empty constructor解决方法
问题描述:定义一个MyFragment,明明有一个空的构造函数,却始终报java.lang.InstantiationException:no empty constructor错误public class MyFragment extends Fragment { public MyFragment() { } @Override public View原创 2015-07-09 15:02:38 · 2995 阅读 · 0 评论 -
Android开发引入项目报invalid resource directory name bin/res/crunch”错误
原因分析: 这种情况是版本不一致造成的,这个无效的目录不是当前编译的时候生成的,有可能是Debug情况下,生成的。因为1.6版本以前是只有drawable一个图片资源目录。所以, 解决方法一: 修改项目版本到1.6以上。 解决方法二: 直接在项目中删除报错的crunch文件夹。 然后运行即可。转载 2015-07-02 10:45:31 · 536 阅读 · 0 评论 -
Android:报" Incorrect line ending: found carriage return (\r) without corresponding newline (\n) "解决
详细提示如下:Incorrect line ending: found carriage return (\r) without corresponding newline (\n)由于ADT版本问题,若打开layout时 如果提示:Incorrect line ending: found carriage return (\r) without corresponding n转载 2015-07-02 17:23:48 · 515 阅读 · 0 评论 -
java.lang.ClassNotFoundException: android.view.LinearLaout
创建了一个工程的android代码,运行的时候出现以下错误:Caused by: java.lang.ClassNotFoundException: android.view.linearlayout 这个异常在android开发中无非就是告诉你类没有找到,那么什么原因导致没找到呢?其实一般分为3种情况:1、启动activity的时候,在Android原创 2015-07-04 09:17:30 · 488 阅读 · 0 评论 -
Android开发:findViewById返回null的解决办法
1.在另一个view的元素应该用baseView.findViewById()来拿findViewById()是要指定view的,如果在该view下找不到,自然报null。平时注意养成写view.findViewById()的习惯就不容易错了。 2.findViewById在setContentView(R.layout.main);之前.即在setContentView调用之前,转载 2015-07-06 10:07:57 · 414 阅读 · 0 评论 -
Android中不同参数的Timer.schedule()方法之间的区别
Timer.schedule(TimerTask task, long delay, long period):延时delay毫秒后周期性的执行task,其中周期是period毫秒Timer.schedule(TimerTask task, long delay):延时delay毫秒后执行task。区别:前者是周期性执行任务,后者是只执行一次。原创 2015-07-14 11:02:37 · 5331 阅读 · 0 评论