程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> app-android_studio xmln自定義不識別問題~ 求解答

app-android_studio xmln自定義不識別問題~ 求解答

編輯:編程綜合問答
android_studio xmln自定義不識別問題~ 求解答

在最布局中,已定義:
xmlns:app="http://schemas.android.com/apk/res-auto"(自動識別)
在控件打app就是出不來屬性
gradle裡面的dependencies中已經依賴過:compile 'com.zhy:percent-support-extends:1.0.1'這是我需要的控件
圖片說明
Rebuild和CloseProject都已經試過,沒用!! 在線求解答

最佳回答:


方法一:引入aar包方法

將aar包賦值到libs目錄下
//這句很重要,親身試驗
repositories { flatDir { dirs 'libs' } }

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'

//這樣引用
compile(name: 'mylibrary-debug', ext: 'aar')
}

方法二、將第三方庫作為module導入到工程,然後在自己的module中添加第三方module庫依賴

        dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.android.support:support-v4:22.2.0'
    compile project(':percent-support-extends')
        }

圖片說明
圖片說明

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved