所以我遇到的问题是我有一个哈希表,其中的键值为
键:整数值:ArrayList
在我的自定义 listView 适配器中,我将其设置为仅显示哈希表中某个位置的值。但目前它正在显示整个哈希表。我不太确定我做错了什么..这是适配器
注意:Statics.mainPageListPosition 是一个静态 int,当用户单击主屏幕上的某个位置时设置。然后我希望适配器显示该位置,并且仅显示该位置的数据。
package assignments;
import java.util.ArrayList;
import java.util.Hashtable;
import com.example.mt_study.R;
import com.example.statics.Statics;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import android.widget.Toast;
public class AssignmentListViewAdapter extends ArrayAdapter<Assignment> {
private LayoutInflater inflater;
private Hashtable<Integer, ArrayList<Assignment>> assignmentList;
// class used to hold views when the user scrolls on the listView
// it stores them and then we can re-use their id's as the user scrolls
// down or up the screen so we don't have to keep calling findViewById
private class assignmentViewHolder {
TextView Title;
TextView Date;
public assignmentViewHolder(TextView assignmentTitle, TextView Date) {
this.Title = assignmentTitle;
this.Date = Date;
}
public TextView getTitle() {
return Title;
}
public TextView getDate() {
return Date;
}
}
public AssignmentListViewAdapter(Context context,
Hashtable<Integer, ArrayList<Assignment>> data) {
super(context, R.id.assignment_row_title, R.id.assignment_row_date);
inflater = LayoutInflater.from(context);
assignmentList = data;
}
// set of functions useful for the getView function
public int getCount() {
return Statics.allAssignments.get(Statics.mainPageListPosition).size();
}
public Assignment getItem(int position) {
return assignmentList.get(Statics.mainPageListPosition).get(position);
}
public long getItemId(int position) {
return position;
}
public int getViewTypeCount() {
return 1;
}
public View getView(int position, View convertView, ViewGroup parent) {
// Assignment assignment = this.getItem(position);
TextView assignmentTitle;
TextView assignmentDate;
// if theres no view yet created on the screen, create one
if (convertView == null) {
convertView = inflater.inflate(R.layout.assignment_row, null);
// give the views their respective ID's
assignmentTitle = (TextView) convertView
.findViewById(R.id.assignment_row_title);
assignmentDate = (TextView) convertView
.findViewById(R.id.assignment_row_date);
// set the tag so we can just use the viewHolder instead of calling
// findViewById over. It saves memory
convertView.setTag(new assignmentViewHolder(assignmentTitle,
assignmentDate));
}
// this gets called when the user scrolls down or up the screen and the
// adapter
// wants to maximize efficiency by just calling the viewHolder instead
// of findViewById
else {
assignmentViewHolder viewHolder = (assignmentViewHolder) convertView
.getTag();
assignmentTitle = viewHolder.getTitle();
assignmentDate = viewHolder.getDate();
}
// down here is where you set the values for all your views/objects
// such as Buttons or textViews.
assignmentTitle.setText(Statics.allAssignments
.get(Statics.mainPageListPosition).get(position).getTitle());
assignmentDate.setText(Statics.allAssignments
.get(Statics.mainPageListPosition).get(position).getDate_due());
return convertView;
}
}
编辑:最近发现,我的哈希表将我发送的每个值都放在每个可用的位置,哈哈。我所做的是,当用户单击主页上的某个位置时,它会保存该位置并使用它将保存在该位置的数据存储在哈希表中。Temp 是一个数组列表,其中用户保存的数据以这种格式存储:
{number, String, number, string} 其中数字是哈希表中我要存储字符串的位置。
这是我将数据保存到哈希表的地方。一切对我来说都是正确的,也许我已经盯着它太久了@.@
for (int i = 0; i < temp.size(); i++) {
if (isInteger(temp.get(i))) {
currentAssignment.setTitle(temp.get(i + 1));
//currentAssignment.setDate_due(temp.get(i + 2));
currentAssignmentList.add(index, currentAssignment);
index++;
Statics.allAssignments.put(Integer.parseInt(temp.get(i)), currentAssignmentList);
//Statics.allAssignments.get(Integer.parseInt(temp.get(i))).add(currentAssignment);
currentAssignment = new Assignment();
//Toast.makeText(context, "Called" + Integer.toString(i), Toast.LENGTH_SHORT).show();
}
}