gpt4 book ai didi

android - 使用 BaseAdapter 过滤自定义 ListView

转载 作者:太空狗 更新时间:2023-10-29 13:35:55 26 4
gpt4 key购买 nike

我正在尝试过滤使用 BaseAdapter 的自定义 Listview,但到目前为止失败得很惨。我想我需要一双新鲜的眼睛。我在 SO 上经历了各种问题,也在谷歌上搜索了很多。到目前为止我尝试的一切都失败了。

我正在从 Facebook 获取用户好友列表,将结果转换为 Arraylist 并将它们 bundle 到适配器的 String[] 中。

Activity 代码:

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.friends_list);

arrayUID = new ArrayList<String>();
arrayName = new ArrayList<String>();
arrayPicture = new ArrayList<String>();
arrayInfo = new ArrayList<String>();

Bundle extras = getIntent().getExtras();
apiResponse = extras.getString("API_RESPONSE");
graph_or_fql = extras.getString("METHOD");

try {
JAFriends = new JSONArray(apiResponse);

for (int i = 0; i < JAFriends.length(); i++) {
json_data = JAFriends.getJSONObject(i);

// mainAlbumID = json_data.getString("id");

if (json_data.has("uid")) {
String getFriendID = json_data.getString("uid");
arrayUID.add(getFriendID);
} else {
String getFriendID = null;
arrayUID.add(getFriendID);
}


if (json_data.has("name")) {
String getFriendName = json_data.getString("name");
arrayName.add(getFriendName);
} else {
String getFriendName = null;
arrayName.add(getFriendName);
}

if (json_data.has("current_location")) {
try {
JSONObject location = json_data.getJSONObject("current_location");
String friendLocationDetails = location.getString("city") + ", " + location.getString("state");
arrayInfo.add(friendLocationDetails);
} catch (JSONException e) {
arrayInfo.add("");
}
} else {
arrayInfo.add("");
}


if (json_data.has("pic_square")) {
String getFriendPhoto = json_data.getString("pic_square");
arrayPicture.add(getFriendPhoto);
} else {
String getFriendPhoto = null;
arrayPicture.add(getFriendPhoto);
}
}
} catch (JSONException e) {
return;
}

stringUID = new String[arrayUID.size()];
stringUID = arrayUID.toArray(stringUID);

stringName = new String[arrayName.size()];
stringName = arrayName.toArray(stringName);

stringPicture = new String[arrayPicture.size()];
stringPicture = arrayPicture.toArray(stringPicture);

stringInfo = new String[arrayInfo.size()];
stringInfo = arrayInfo.toArray(stringInfo);

listofFriends = (ListView)findViewById(R.id.list);
adapter = new FriendsAdapter(this, stringUID, stringName, stringPicture, stringInfo, arrayName);

listofFriends.setTextFilterEnabled(true);
listofFriends.setAdapter(adapter);

filterText = (EditText) findViewById(R.id.editFilterList);
filterText.addTextChangedListener(filterTextWatcher);
}

private TextWatcher filterTextWatcher = new TextWatcher() {

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
adapter.getFilter().filter(s.toString());
// adapter.notifyDataSetChanged();
// listofFriends.setAdapter(adapter);
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub

}

@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub

}
};

我的适配器类:

public class FriendsAdapter extends BaseAdapter implements Filterable {

Activity activity;
String[] fetFriendID;
String[] fetFriendName;
String[] fetFriendPicture;
String[] fetFriendInfo;

List<String> arrayList;
List<String> mOriginalValues;

LayoutInflater inflater = null;
ProfilePictureLoader profileLoader;

FriendsAdapter(Activity a, String[] stringUID, String[] stringName,
String[] stringPicture, String[] stringInfo, ArrayList<String> arrayName) {

activity = a;
fetFriendID = stringUID;
fetFriendName = stringName;
fetFriendPicture = stringPicture;
fetFriendInfo = stringInfo;

arrayList = new ArrayList<String>();
mOriginalValues = arrayName;

inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
profileLoader = new ProfilePictureLoader(activity.getApplicationContext());
}


public int getCount() {
return mOriginalValues.size();
}

public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}


public View getView(final int position, View convertView, ViewGroup parent) {
View vi = convertView;
if(convertView == null)
vi = inflater.inflate(R.layout.friends_item, null);

ImageView imgProfilePicture = (ImageView)vi.findViewById(R.id.profile_pic);
TextView txtFriendsName = (TextView)vi.findViewById(R.id.name);
TextView txtFriendsInfo = (TextView)vi.findViewById(R.id.info);

// SET THE CUSTOM FONTS
Typeface nameHeader = Typeface.createFromAsset(activity.getAssets(), "fonts/museo_slab_700_headers.otf");
Typeface tfContent = Typeface.createFromAsset(activity.getAssets(), "fonts/Cabin-Medium-TTF.ttf");
txtFriendsName.setTypeface(nameHeader);
txtFriendsInfo.setTypeface(tfContent);

txtFriendsName.setText(fetFriendName[position]);

txtFriendsInfo.setText(fetFriendInfo[position]);

if (fetFriendPicture[position] != null){
profileLoader.DisplayImage(fetFriendPicture[position], imgProfilePicture);
}
else if (fetFriendPicture[position] == null) {
imgProfilePicture.setVisibility(View.GONE);
}

return vi;
}

@Override
public Filter getFilter() {

Filter filter = new Filter() {

@SuppressWarnings("unchecked")
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
arrayList = (List<String>) results.values;
notifyDataSetChanged();
}

@Override
protected FilterResults performFiltering(CharSequence constraint) {

FilterResults results = new FilterResults();
List<String> FilteredArrList = new ArrayList<String>();

if (constraint == null || constraint.length() == 0) {
results.count = mOriginalValues.size();
results.values = mOriginalValues;
} else {
constraint = constraint.toString();

for (int i = 0; i < mOriginalValues.size(); i++) {
String data = mOriginalValues.get(i);
if (data.toLowerCase().startsWith(constraint.toString())) {
FilteredArrList.add(data);
}
}

results.count = FilteredArrList.size();
results.values = FilteredArrList;
}

return results;
}
};

return filter;
}
}

我知道这是一个很长的问题,里面有很多代码。因此,如果您花时间阅读整篇文章,谢谢。

我真的希望 SO 上的某个人可以帮助/指导我解决这个问题。

最佳答案

只需将 s 传递给 filter()。

adapter.getFilter().filter(s);

同时修复您的 getItem 方法。

public Object getItem(int position) {
return mOriginalValues.get(position);
}

关于android - 使用 BaseAdapter 过滤自定义 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10675775/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com