您的位置:首页 > 编程语言 > Java开发

This version of the rendering library is more recent than your version of ADT plug-in. Please update

2015-03-03 13:10 531 查看
预览layout.xml文件时提示:

This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in

导致无法正常预览布局文件;

问题根源:SDK版本过高,ADT版本低;

解决办法有好几种,如下:

1.
Click Help > Install New Software.
In the Work with field, enter: 
https://dl-ssl.google.com/android/eclipse/

Select Developer Tools / Android Development Tools.
Click Next and complete the wizard. 

2.
Change android version while rendering layout.



3,

Change the Target version to new updates you have. Otherwise, change what SDK version you have in the Android manifest file.
<code><span class="pln">android</span><span class="pun">:</span><span class="pln">minSdkVersion</span><span class="pun">=</span><span class="str">"8"</span><span class="pln">
android</span><span class="pun">:</span><span class="pln">targetSdkVersion</span><span class="pun">=</span><span class="str">"18"</span></code>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  eclipse adt
相关文章推荐