我想创建一个像简单推特一样的新闻Feed列表。我用谷歌搜索它,我建议使用recyclerview。但在我的情况下,我已经在我的主要活动布局中使用了包含视图。我尝试修改我的代码,但总是收到错误。这是我的代码。
activty_master.xml
const somethings = await SomethingDocument.find({color:'blue'}).lean() as Something[];
app_bar_master.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
android:id="@+id/layout_include"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/app_bar_master" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/activity_master_drawer" />
</android.support.v4.widget.DrawerLayout>
MasterActivity.java中的一些代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.bangun.halo.MasterActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include
android:id="@+id/layout_content"
layout="@layout/content_master"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email"
android:visibility="gone"/>
</android.support.design.widget.CoordinatorLayout>
代码始终以: FrameLayout layoutInclude =(FrameLayout)findViewById(R.id.layout_include); // setupRecyclerview()
步骤/应用程序始终终止如何解决这个案子? 如何正确使用包含布局的recyclerview?
如果我的问题仍然缺乏信息,我会给予更多。 请
答案 0 :(得分:1)
尝试使用协调器布局而不是框架
CoordinatorLayout layoutInclude = (CoordinatorLayout)findViewById(R.id.layout_include); //application always terminated here