我正在开发一个ListActivity,它有一个内部类,它是SimpleAdapter的子类,实现了SectionIndexer。
class MySimpleAdapter extends SimpleAdapter implements SectionIndexer {
HashMap<String, Integer> letters;
Object[] sections;
AlphabetIndexer alphaIndexer;
public MySimpleAdapter(Context context, List<? extends Map<String, ?>> data,
int resource, String[] from, int[] to,
HashMap<String, Integer> letters, Object[] sections) {
super(context, data, resource, from, to);
this.letters = letters;
this.sections = sections;
}
@SuppressWarnings("unchecked")
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = getLayoutInflater().inflate(R.layout.common_image_row1, null);
}
HashMap<String, Object> data = (HashMap<String, Object>) getItem(position);
Integer idArtist = Integer.parseInt((String) data.get("idArtist"));
convertView.setTag(idArtist);
((TextView) convertView.findViewById(R.id.item_name))
.setText((String) data.get("sName"));
ImageView image = (ImageView) convertView.findViewById(R.id.item_image);
image.setTag((String) data.get("sImageUrl"));
image.setImageResource(R.drawable.default_artwork);
((TextView) convertView.findViewById(R.id.item_count))
.setText((String) data.get("iSongs") + " Songs");
if (!bScrolling) {
new API.DownloadImagesTask().execute(image);
}
return convertView;
}
public int getPositionForSection(int section) {
String letter = (String) sections[section];
return letters.get(letter);
}
public int getSectionForPosition(int position) {
return 0;
}
public Object[] getSections() {
return sections;
}
}
活动在单独的AysncTask中接收JSON对象。该对象由各种JSONArrays组成,其键是项的第一个字母,即数组的项。因此,该数组由一系列以字母“B”开头的项目组成。因此,JSONArray的关键是“B”。
{
B: ["ball", "buck", "bill"]
C: ["charlie", "chuck", "chap"]
}
该对象不一定具有字母表中的所有字母。我也知道JSONObjects无法保证顺序,所以我对它们进行排序 列表&gt; maps = new ArrayList&gt;(); ArrayList sections = new ArrayList(); HashMap letters = new HashMap();
String[] alphabet = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N"
,"O","P","Q","R","S","T","U","V","W","X","Y","Z"};
int k = 0;
for (int i = 0; i < alphabet.length; i++) {
if (playlistArtists.optJSONArray(alphabet[i]) != null) {
try {
JSONArray artists = playlistArtists.getJSONArray(alphabet[i]);
sections.add(alphabet[i]);
for (int j = 0; j < artists.length(); j++) {
JSONObject artist = (JSONObject) artists.get(j);
HashMap<String, String> map= new HashMap<String, String>();
map.put("idArtist", artist.getString("idArtist"));
map.put("sName", artist.getString("sName"));
map.put("sImageUrl", artist.getString("sImageUrl-thumb"));
map.put("iSongs", artist.getString("iSongs"));
maps.add(map);
letters.put(alphabet[i], k);
k++;
}
} catch (JSONException e) {
Log.d(TAG,"JSONException in Music::GetMusicCatlog.doInBackground");
e.printStackTrace();
}
}
}
SimpleAdapter adapter = new MySimpleAdapter(Catalog.this,
maps,
R.layout.common_image_row1,
new String[] {"idArtist","sName", "sImageUrl", "iSongs" },
new int[] {R.id.item_id, R.id.item_name, R.id.item_image, R.id.item_count },
letters,
sections.toArray());
setListAdapter(adapter);
我遇到的问题是使用FastScroll。我的一切都在努力。列表按首字母分组,使用FastScroll时,弹出的字母出现在正确的组中。问题是当我转到FastScroll“跳转”到列表的随机部分所需的部分之后放开FastScroll。它不会停留在我放开它的位置。我认为它会在该部分中的任意位置,因为我没有正确实现SectionIndexer。我认为问题在于这种方法。
public int getSectionForPosition(int position) {
return 0;
}
我只是不确定如何正确实现SectionIndexer方法......
答案 0 :(得分:1)
TL; DR第一个答案不正确。如果您需要getSectionForPosition
方法的示例实现,请参阅here。
你是对的,对getSectionForPosition
的实施来说,这看起来很麻烦。 到目前为止提供的答案 无法正确,因为您需要返回与某个位置相关的部分的索引,而不是与部分相关的位置(这就是getPositionForSection
方法应该做的事情。
所以你应该重新修改getSectionForPosition
方法(再次)。您需要为每个位置指向部分的有效映射。文档说:
给定适配器中的位置,返回节对象数组中相应节的索引。
如果您需要有关如何构建此类映射的示例,请参阅here。正确实现,它将解决跳转滚动条的问题,而不是正确定位。
答案 1 :(得分:-2)
我看到很多时候getSectionForPosition以与getPositionForSection
相同的方式实现 public int getPositionForSection(int section) {
String letter = (String) sections[section];
return letters.get(letter);
}
public int getSectionForPosition(int position) {
String letter = (String) sections[position];
return letters.get(letter);
}