0

I'm implementing mail application for Android. I need to display mail content in ScrollView. The problem is I also need to display attachment as image backed GridView or ListView. Since it is not recommended to put aScrollable layout in ScrollView, how to organize my layout to have adapter based views inside ScrollView?

4

1 回答 1

0

如何组织我的布局以在 ScrollView 中有基于适配器的视图?

你没有。

我需要在 ScrollView 中显示邮件内容。

为什么?为什么不将它显示在不可选择的第一行ListView?这样,它和列表的其余部分一致滚动。请记住,an可以为不同的行(通过和)Adapter提供不同的行类型、不同的布局。因此,您可以将第一行作为消息,其余行作为附件等。getViewTypeCount()getItemViewType()

或者,使邮件内容可滚动ScrollView,但单独显示附件。

于 2013-04-23T23:39:32.990 回答