在eclipse中添加谷歌播放服务作为参考库时出错

时间:2014-03-09 14:41:03

标签: android eclipse google-play-services

1>当我添加谷歌播放服务库时,它会显示绿色右侧标记,但是当我按下确定并重新打开项目属性时,它会显示红叉标记。

2 - ;在eclipse中,当我创建新的android项目时,它默认创建ActionBarActivity所引用的Activity活动。为什么呢?

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {

    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

1 个答案:

答案 0 :(得分:0)

我得到了解决方案

*复制google-play-services-lib并将其粘贴到其他位置 *改变eclipse工作区 *将google-play-services-lib作为现有Android代码导入Workspace。浏览到新位置并选择google-play-services-lib文件夹 *转到项目属性 - > android->添加并选择google-play-services-lib。