所以这是我的主要布局,我想以编程方式添加项目,因为它们是动态的。
<LinearLayout 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:id="@+id/mainlayout" >
</LinearLayout>
问题是,当我寻找 LinearLayout 时;
LinearLayout layout = (LinearLayout)findViewById(R.id.mainlayout);
super.onCreate(savedInstanceState);
它返回后立即null
。即使我等到onStart()
or onResume()
,它似乎也不存在。关于为什么会出现这种情况的任何建议?