2016-06-20 11 views
0

の属性「el_headerLayout」が見つかりませんリソース識別子私は拡張可能なレイアウトのコンテンツを作成するつもりですので、私はこのhttps://github.com/traex/ExpandableLayout を使用する私は、リソース識別子が見つからないというエラーました:エラー:(12)パッケージ

>   Error:(12) No resource identifier found for attribute 'el_headerLayout' in package 'com.example.android.collapsedcontentapp' 
>  Error:(12) No resource identifier found for attribute 'el_contentLayout' in package 
> 'com.example.android.collapsedcontentapp' 
>  Error:(9) No resource identifier found for attribute 'el_headerLayout' in package 'com.example.android.collapsedcontentapp' 
>  Error:(9) No resource identifier found for attribute 'el_contentLayout' in package 
> 'com.example.android.collapsedcontentapp' 
をそれはここに私のレイアウトフォルダ で私view_headerとview_content xmlファイルを見つけることができません

は私のXMLコードです:

活動main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     xmlns:expandable="http://schemas.android.com/apk/res-auto" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:paddingLeft="@dimen/activity_horizontal_margin" 
     android:paddingRight="@dimen/activity_horizontal_margin" 
     android:paddingTop="@dimen/activity_vertical_margin" 
     android:paddingBottom="@dimen/activity_vertical_margin" 
     tools:context=".MainActivity"> 

     <com.andexert.expandablelayout.library.ExpandableLayout 
      android:id="@+id/first" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      expandable:el_headerLayout="@layout/view_header" 
      expandable:el_contentLayout="@layout/view_content" 
      android:background="#e74c3c"/> 

     <com.andexert.expandablelayout.library.ExpandableLayoutListView 
      android:id="@+id/listview" 
      android:layout_below="@+id/first" 
      android:layout_width="match_parent" 
      android:layout_marginTop="15dp" 
      android:layout_height="match_parent"/> 
    </RelativeLayout> 

ビューcontent.xml:

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <EditText 
     android:id="@+id/text" 
     android:layout_width="match_parent" 
     android:layout_height="48dp" 
     android:gravity="center" 
     android:hint="Hello World !" 
     android:textColor="@android:color/white" 
     android:background="#c0392b"/> 

    <Button 
     android:layout_below="@+id/text" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="click ME !"/> 

</RelativeLayout> 

view_header.xml:

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <TextView 
     android:id="@+id/header_text" 
     android:layout_width="wrap_content" 
     android:layout_height="48dp" 
     android:padding="10dp" 
     android:textColor="@android:color/white" 
     android:text="ExpandableLayout Header!" 
     android:gravity="center"/> 

</RelativeLayout> 

view_row.xml:

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:expandable="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 


    <com.andexert.expandablelayout.library.ExpandableLayout 
     android:id="@+id/row" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     expandable:el_headerLayout="@layout/view_header" 
     expandable:el_contentLayout="@layout/view_content" 
     android:background="#e74c3c"/> 

</RelativeLayout> 
+0

でプロジェクトに追加されていると仮定すると、もちろんです。 'com.example.android.collapsedcontentapp'対' com.andexert.expandablelayout.library' –

+0

私はそれをやったが解決しなかった Jumong

+0

あなたはアンドロイドスタジオIDEデフォルトオートコンプリートコード – Jumong

答えて

0

交換してみてください:

xmlns:expandable="http://schemas.android.com/apk/res-auto" 

で:

xmlns:expandable="http://schemas.android.com/apk/com.andexert.expandablelayout.library" 

これは、あなたが間違ったパッケージを指しているカスタムビューを含むライブラリがあなたのbuild.gradle

+0

次に、com.example.android.collapsedcontentapp.ExpandableLayoutListViewにxmlコードのcom.andexert.expandablelayout.libraryを変更する必要はありません – Jumong

+0

別のエラーが発生しました:アクティビティを開始するためのnable ComponentInfo {com.example.android .collapsedcontentapp/com.example.android.collapsedcontentapp.MainActivity}:android.view.InflateException:バイナリXMLファイル行#13:inflating class com.example.android.collapsedcontentapp.ExpandableLayout – Jumong

関連する問題