码迷,mamicode.com
首页 > 其他好文 > 详细

访问 views onCreate()方法报NullPointerException

时间:2014-12-19 12:19:43      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:android开发

我跟着教程 ,通过向导创建了一个新的activity ,当我运行时在 onCreate方法里面调用findViewById()方法时报错 NullPointerException 。

Layout XML (fragment_main.xml):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="packagename.MainActivity$PlaceholderFragment" >

<View
android:layout_width="100dp"
android:layout_height="100dp"
android:id="@+id/something" />

</RelativeLayout>

处理方法


教程明显过期了。你应该尝试创建基于 activity的活跃ui 而不是基于 fragment 的,你的代码明显是基于 fragment 的

参考如下的代码:

1
2
3
4
5
6
7
8
9
10
11
Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container,
false);
View something = rootView.findViewById(R.id.something); // not activity findViewById()
something.setOnClickListener(new View.OnClickListener() { ... });
return rootView;
}

findViewById 方法是在 super.onStart() after onCreate(). 后面执行,他们有先后顺序的.


原文地址:http://www.itmmd.com/201410/37.html
该文章由 萌萌的IT人 整理发布,转载须标明出处。            

访问 views onCreate()方法报NullPointerException

标签:android开发

原文地址:http://blog.csdn.net/androidmylove/article/details/42024365

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!