私はこのライブラリを使用したいLIB "Getting Started"の手順を実行しました。インポートされたAARファイル。追加されたレポと依存関係。 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