以下のレイアウトでいくつかの属性のリソース識別子が見つかりません。タクウルフのレイアウトでリソース識別子が見つかりません
<?xml version="1.0" encoding="utf-8"?>
<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:background="@drawable/bg_lock"
android:gravity="center"
android:orientation="vertical">
//image
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_launcher" />
//textview
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="32dp"
android:text="@string/draw_pattern"
android:textSize="20dp"
android:gravity="center"
android:textColor="@color/white" />
//problem seems at the end of this block
<com.takwolf.android.lock9.Lock9View
android:id="@+id/lock_9_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:nodeSrc="@drawable/lock_9_view_node_normal"
app:nodeOnSrc="@drawable/lock_9_view_node_highlighted"
app:lineColor="#ff006699"
app:lineWidth="8dp" />
<hell.sathan.applockmasters.Custom.FlatButton
android:id="@+id/forgetPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Forget Password"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:textSize="12dp"
android:textColor="@color/white"
app:buttonColor="@color/fbutton_color_carrot"
app:cornerRadius="5dp"
app:shadowEnabled="true"
app:shadowHeight="2dp" />
</LinearLayout>
私は以下のエラーを持っている:
Error:(24) No resource identifier found for attribute 'nodeSrc' in package
Error:(24) No resource identifier found for attribute 'nodeOnSrc' in package
Error:(24) No resource identifier found for attribute 'lineColor' in package
Error:(24) No resource identifier found for attribute 'lineWidth' in package
の編集を、彼らはどういたしまして –