随笔分类 -  Android

摘要:使用Intent时intent =new Intent(getApplicationContext(),Register.class);时报错calling startActivity() from ourside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag改为intent =new Intent(this,Register.class);后。可以正常跳转。Context中有一个startActivity方法,Activity继承自Context,重载了startActivity方法。如果使用 Activity 阅读全文
posted @ 2013-06-13 16:31 qinyan 阅读(94) 评论(0) 推荐(0)
摘要:project-->右键-->properties-->Resource-->Text file encoding-->选择Other-->下拉框选择UTF-8 阅读全文
posted @ 2013-04-28 10:35 qinyan 阅读(150) 评论(0) 推荐(0)
摘要:导入文件 Android layout布局文件 没有明显的错误 提示:Incorrect line ending: found carriage return (\r) without corresponding newline (\n)project-->clean 由ADT版本引起 阅读全文
posted @ 2013-04-28 10:14 qinyan 阅读(686) 评论(0) 推荐(0)