我只是一個Android初學者&嘗試與ViewHolder模式RecyclerView與ViewHolder模式
與樣品在制定RecyclerView:在實施代碼https://guides.codepath.com/android/using-the-recyclerview#create-the-recyclerview-within-layout
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<android.support.v7.widget.RecyclerView
android:id="@+id/rvContacts"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
是要求在res/layout/activity_users.xml中實施
我已經使用Basic A創建了項目ctivity &有文件
activity_main.xml中& content_main.xml
是activity_users.xml其他自定義文件?或默認文件? 你能告訴我它應該在哪裏實現上面的代碼?
以上佈局是您的活動佈局,只需在您的活動佈局中放置回收站即可。否則使用該佈局作爲活動佈局 –
將此代碼放入主活動xml – KrishnaJ
您的意思是activity_main.xml? –