Android - 可以在自定义适配器中混合类型吗?

发布于 2024-12-12 05:34:37 字数 261 浏览 0 评论 0原文

对于适配器,您可以为其提供某种类型的对象/类型集合,例如

List<MyObject> myList = new ArrayList<MyObject>;
myCustomAdapter adapter = new myCustomAdapter(this, myList);

如果您想在适配器中使用多种类型的对象,该怎么办。因此,适配器中的某些项目将是一个对象,而其他项目将是不同的对象。你会怎样去做这样的事情呢?

For an Adapter, you would give it some type of collection of objects/types, like

List<MyObject> myList = new ArrayList<MyObject>;
myCustomAdapter adapter = new myCustomAdapter(this, myList);

What if you wanted to use multiple types of Objects in your adapter. So certain items in the adapter would be one object while other items would be different objects. How would you go about doing something like that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简单 2024-12-19 05:34:37

我假设您可以控制 myCustomAdapter 中的代码?如果是这样,您可以创建一个所有对象将共享的接口,使您的适配器通用并将类型参数限制为该接口。

public interface IAdapterItem{
    //Whatever functionality is needed
}

public class MyCustomAdapter<T extends IAdapterItem> extends ArrayAdapter<T>{
    //Adapter implementation
}

I assume that you have control over the code within myCustomAdapter? If so, you can create an interface that all of your objects will share, make your adapter generic and constrain the type parameter to that interface.

public interface IAdapterItem{
    //Whatever functionality is needed
}

public class MyCustomAdapter<T extends IAdapterItem> extends ArrayAdapter<T>{
    //Adapter implementation
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文