天天看點

xxx cannot be resolved or is not a field

1.protected void onCreate(Bundle savedInstanceState) {

2. // TODO Auto-generated method stub

3. super.onCreate(savedInstanceState);

4. setContentView(R.layout.first_layout);

5. }

此代碼會報

first_layout cannot be resolved or is not a field

解決辦法:

在第四行前加上完整包名,例如:

改為:com.example.activitytest.R.layout.first_layout