2015.01.16 Android错误集(1)

1.MainActivity里第一个方法

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
findViewById(R.id.Btn01).setOnClickListener(this);
}

如果不加findViewById,下面会按界面上的什么按钮都没反应 2.上面的findVIewById如果后面括号只有(R.id.Btn01)则运行时只有Btn01有反应其余按钮也没反应 3.AndroidManifest.xml里,activity标签中有一个android:name="com.example.test.xxx",如果这里xxx的名字对不上号,即使编译没问题也运行不出来,会在模拟器上显示"sorry ........force close"

本文出自 “Chronosphere” 博客,转载请与作者联系!

你可能感兴趣的:(android,标签,Activity)