Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为 Android 列表视图中的每个项目创建单独首选项的最简单方法是什么?我发现了这个问题,但它有点笼统。谁能更具体,可能举一个简单的例子?
如果你想这样做,你应该在你的适配器 getView 方法中写一些代码。
您可以在方法中检查位置(使用 if 子句)并根据位置添加自定义设计/布局。 如果您在 ListView 项目 XML 中使用 LinearLayout 或 RelativeLayout,您可以在 getView 方法中以编程方式填充您需要的所有小部件(edittext、复选框等)。