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.
我想将联系人列表视图中的联系人照片修改为更小的分辨率。但我似乎找不到定义列表视图条目的布局。我已经艰难地浏览了代码,但这是一个巨大的布局迷宫。有谁知道它可能是哪一个?
试试这个,对我来说它有效......
使用custom adapter, by extending a class to BaseAdapter。您可以通过此方法创建要在您选择的 listView 上显示的视图。
custom adapter
extending a class to BaseAdapter
任何延伸到 BaseAdapter 的类都将实现 4 种方法,getCount, getItem, getItemId, getView
getCount, getItem,
getItemId, getView
标签