码迷,mamicode.com
首页 > Windows程序 > 详细

Attribute xx is only used in API level xx and higher (current min is   xx)的解决方法

时间:2015-08-11 19:21:28      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:attribute   current min is   

错误:Attribute "" is only used in API level 21 and higher (current min is   10)

问题重现:

    

1、在xml布局中碰到这样的问题是由于  配置了最低兼容Api。

    例如在AndroidManifest中配置:

    <uses-sdk

        android:minSdkVersion="10"

        android:targetSdkVersion="21" />

2、兼容到Api 10 也就是2.3.3的系统。

3、此时在布局中使用了Api21的 属性 :android:transitionName="y"

    <RelativeLayout

            android:id="@+id/titleLayout"

            android:transitionName="y"

            android:layout_width="match_parent"

            android:layout_height="45dp"

            android:background="@color/redColor" >

4、就会警告:Attribute "transitionName" is only used in API level 21 and higher (current min is 

 10)

5、解决方法如下根据属性的版本新建一个values-xx,根据上述例子,我们需要新建一个values-v21的文件

在里面新建一个styles.xml

技术分享

6、在代码中引入该style

    

<RelativeLayout

            android:id="@+id/titleLayout"

            style="@style/transitionName"

            android:layout_width="match_parent"

            android:layout_height="45dp"            

            android:background="@color/redColor" >

大功告成,values-v21是对资源进行版本适配


Attribute xx is only used in API level xx and higher (current min is   xx)的解决方法

标签:attribute   current min is   

原文地址:http://3048821.blog.51cto.com/3038821/1683561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!