您好,登錄后才能下訂單哦!
錯誤: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"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="@color/redColor" >
大功告成,values-v21是對資源進行版本適配
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。