我想使用此庫LIB 我已完成「入門」步驟。導入的AAR文件,添加了maven回購和依賴關係。我將zip文件複製到AAR導入時創建的文件夾中。當我想使用自定義的TextView導入新庫 - 屬性
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.rey.material.widget.TabPageIndicator
android:id="@+id/sliding_tabs"
style="@styles/Material.Widget.TabPageIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
我得到錯誤:
Error:(9, 16) No resource found that matches the given name (at 'style' with value '@styles/Material.Widget.TabPageIndicator').
我能做什麼呢?
你爲什麼不使用Gradle? – Eenvincible