我正在使用cardslib库进行开发并实现this示例。

尽管在创建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。我有事吗

最佳答案

也许是因为您设置了setContentView(R.layout.native_recyclerview_card_layout)但您的CardRecyclerView在cardslib_activity_recycler.xml中?

从技术上讲,findViewById仅按在由setContentView设置的布局的视图层次结构中注册的ID查找视图。如果要合并视图,则应使用<include>

08-06 09:43