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,我最终还是发现它为空。我忽略了什么吗?

4

1 回答 1

1

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

从技术上讲findViewById,只能通过 id 查找在布局设置的视图层次结构中注册的视图setContentView。如果要合并视图,则应使用<include>.

于 2015-04-29T19:24:48.840 回答