安卓学习之路

时间:2021-10-31 19:37:57

常见问题及其解决办法

ps:更新中
1. Unable to resolve target ‘android-19’ until the SDK is loaded
解决办法
Description Resource Path Location Type
Unable to resolve target ‘android-19’ until the SDK is loaded. appcompat_v7
2. Unknown Android Target Problem This Android SDK requires An… ADT to the latest version.
解决办法
3. Description Resource Path Location Type
The container ‘Android Dependencies’ references non existing library ‘E:\android\appcompat_v7\bin\appcompat_v7.jar’ hahahhah Build path Build Path Problem 解决办法

学习疑问

  1. eclipse自动生成代码的问题
if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();

在自动生成的MainActivity文件里的OnCreate方法中有这样一段代码,不太理解是什么意思。而且因为这段代码出现了如下错误:

unfortunately ** has stopped
把这段代码注释掉程序就可以正常运行了。感觉需要好好的研究一下这段代码具体的意思。