21

我想要keepAlive已经在ListView. 我尝试了按类addAutomaticKeepAlives:true提供的属性。ListView

这是我使用的示例代码。SliverChildBuilderDelegate由提供的委托中的相同问题SliverList

ListView.builder(
    itemBuilder: (context,index){
      return Card(
        child: Container(
          child: Image.asset("images/${index+1}.jpg",fit: BoxFit.cover,),
          height: 250.0,
        ),
      );
    },
    addAutomaticKeepAlives: true,
    itemCount:40 ,
);
4

4 回答 4

30

为了automaticKeepAlive工作,需要保持活动状态的每个项目都必须发送特定的通知。

触发此类通知的典型方法是使用AutomaticKeepAliveClientMixin

class Foo extends StatefulWidget {
  @override
  FooState createState() {
    return new FooState();
  }
}

class FooState extends State<Foo> with AutomaticKeepAliveClientMixin {
  @override
  Widget build(BuildContext context) {
    return Container(

    );
  }

  @override
  bool get wantKeepAlive => true;
}
于 2018-09-27T18:28:57.853 回答
16

正如 AutomaticKeepAliveClientMixin 和 Remi 的回答所述,

子类必须实现wantKeepAlive,并且它们的构建方法必须调用super.build(返回值总是返回null,应该被忽略)。

因此,将您的构建方法更改为:

class Foo extends StatefulWidget {
  @override
  FooState createState() {
    return new FooState();
  }
}

class FooState extends State<Foo> with AutomaticKeepAliveClientMixin {
  @override
  Widget build(BuildContext context) {
    super.build(context);
    return Container(

    );
  }

  @override
  bool get wantKeepAlive => true;
}
于 2020-07-08T11:47:37.923 回答
7

您也可以尝试查看 listview builder 上的 cacheExtent 属性。将其设置为覆盖您的项目的值将使它们保持活力。感谢上面的雷米。我不知道在列表中使用它时需要 keepAlive 的项目 - 以前不在颤振 doco 中......

于 2018-09-28T00:12:10.663 回答
5

如果你想保持一个条子列表(用于CustomScrollView),你需要做的就是使用'SliverChildListDelegate'而不是'SliverChildBuilderDelegate'

这是我的代码:

final List<Product> products;
return CustomScrollView(
  controller: _scrollController,
    slivers: [
      _mySliverAppBar(context, title),
      SliverList(
        delegate: SliverChildListDelegate(
          List.generate(products.length, (index) => _myProductCard(context,products[index]))
        )
        // SliverChildBuilderDelegate(
        //   (context, index) => _myProductCard(context, products[index]),
        //   childCount: products.length,
        // ),
      ),
   ],
);

正如您在代码中看到的,我之前使用的是 SliverChildBuilderDelegate

于 2020-09-07T05:12:08.393 回答