1

ライブラリを使用して開発し、このcardslibを実装しています。

オブジェクトを作成するときは、チュートリアルの指示に忠実に従いCardRecyclerViewますが、そのオブジェクトは常にnull.

私のコードをチェックしてください:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.native_recyclerview_card_layout);

    ArrayList<Card> cards = new ArrayList<Card>();

    //Create a Card
    Card card = new Card(this);//getContext()

    //Create a CardHeader and Add Header to card
    CardHeader header = new CardHeader(this);
    card.addCardHeader(header);

    cards.add(card);

    CardArrayRecyclerViewAdapter mCardArrayAdapter = new CardArrayRecyclerViewAdapter(this,cards);
    //Staggered grid view
    CardRecyclerView mRecyclerView = (CardRecyclerView) 
                   this.findViewById(R.id.carddemo_recyclerview); //**mRecyclerView null here**
    mRecyclerView.setHasFixedSize(false); //**NullPointerException here**
    mRecyclerView.setLayoutManager(new LinearLayoutManager(this));

    //Set the empty view
    if (mRecyclerView != null) {
        mRecyclerView.setAdapter(mCardArrayAdapter);
    }

    //Set card in the cardView
    CardViewNative cardView = (CardViewNative) this.findViewById(R.id.carddemo);
    cardView.setCard(card);
}

cardslib_activity_recycler.xml:

<it.gmariotti.cardslib.library.recyclerview.view.CardRecyclerView
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:card="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   card:list_card_layout_resourceID="@layout/native_recyclerview_card_layout"
   android:id="@+id/carddemo_recyclerview"/>

cardslib_item_card_view:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.CardView
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/card_view"
    android:layout_width="match_parent" android:layout_height="match_parent"
    card_view:cardCornerRadius="4dp"
    android:layout_margin="5dp">

<RelativeLayout android:id="@+id/nativecardlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:background="?android:selectableItemBackground">        

  <!--some more layout-->

</RelativeLayout>
</android.support.v7.widget.CardView>

CardRecyclerViewオブジェクトを正しい xmlに参照しているにもかかわらずcardslib_activity_recycler.xml、最終的に null であることがわかりました。私は何かを見落としましたか?

4

1 に答える 1