gpt4 book ai didi

java - 如何从包含多个元素的对象中提取对象的单个元素

转载 作者:行者123 更新时间:2023-12-02 03:07:01 25 4
gpt4 key购买 nike

从服务器端,我基本上返回一个包含各种元素的对象。我需要帮助来提取一个元素(sensorID),我很确定我提取sensorID的代码必须稍微改变一下,因为我使用的是expandableListView。 我已尝试以下代码,但收到错误消息

java.lang.ClassCastException: java.lang.String cannot be cast to com.xera.deviceinsight.api.OrganisationDeviceSensorsResult

 private void load(View view)
{
final Context context = getContext();
expListView = (ExpandableListView) view.findViewById(R.id.lvExp);
prepareListData();
//listAdapter = new ExpandableListAdapter(this.getActivity(), listDataHeader, listDataChild);
listAdapter = new com.xera.deviceinsight.home.ExpandableListAdapter(this.getActivity(), listDataHeader, listDataChild);
expListView.setAdapter(listAdapter);
expListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {

System.err.println("child clicked");
Toast.makeText(getActivity(), "child clicked", Toast.LENGTH_SHORT).show();
EventBus.getDefault().post(new ItemClickedEvent(SensorInformationChildFragment.TAB_CALL));
//ExpandableListAdapter adapter = (ExpandableListAdapter)parent.getAdapter();
ExpandableListAdapter adapter = (ExpandableListAdapter)parent.getExpandableListAdapter();
Object sensorData = adapter.getChild(groupPosition , childPosition);
OrganisationDeviceSensorsResult deviceSensor = (OrganisationDeviceSensorsResult) adapter.getChild(groupPosition , childPosition);
sensorID = deviceSensor.SensorID;

ReportingGroup.get(childPosition);
return true;
}
});
}

我的适配器类

public class ExpandableListAdapter extends BaseExpandableListAdapter  {

private Context _context;
private List<String> _listDataHeader; // header titles
// child data in format of header title, child title
private HashMap<String, List<String>> _listDataChild;
public List<OrganisationDeviceSensorsResult> Items;
List<String> ReportingGroup= new ArrayList<String>();

public ExpandableListAdapter(Context context, List<String> listDataHeader,
HashMap<String, List<String>> listChildData) {
this._context = context;
this._listDataHeader = listDataHeader;
this._listDataChild = listChildData;
}

public ExpandableListAdapter(Context context) {
}

@Override
public Object getChild(int groupPosition, int childPosititon) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.get(childPosititon);
}

@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}

public Object getItemAtPosition(int index)
{
return getItemAtPosition(index);
//return this.getItem(index);
// return this.getChild(index , index2);
//return this.getItem(index);
//return index;
//return this.get
//return OrganisationDeviceSensorsResult.class;
}

@Override
public View getChildView(int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {

final String childText = (String) getChild(groupPosition, childPosition);
//OrganisationDeviceSensorsResult deviceSensor = getItemAtPosition(childPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_item, null);
}

TextView txtListChild = (TextView) convertView
.findViewById(R.id.lblListItem);

txtListChild.setText(childText);
String child=(String) getChild(groupPosition, childPosition);
// int s = deviceSensor.SensorID;
// Log.i(TAG, "value selected: " + deviceSensor.SensorID);
return convertView;
}

/*private OrganisationDeviceSensorsResult getItemAtPosition(int childPosition) {
}*/

@Override
public int getChildrenCount(int groupPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.size();
}

@Override
public Object getGroup(int groupPosition) {
return this._listDataHeader.get(groupPosition);
}

@Override
public int getGroupCount() {
return this._listDataHeader.size();
}

@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}

@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
String headerTitle = (String) getGroup(groupPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_group, null);
}

TextView lblListHeader = (TextView) convertView
.findViewById(R.id.lblListHeader);
lblListHeader.setTypeface(null, Typeface.BOLD);
lblListHeader.setText(headerTitle);

return convertView;
}

@Override
public boolean hasStableIds() {
return false;
}

@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}


public void get(int groupPosition) {
}


/*public int getName() {
return name;
}*/
}

最佳答案

编辑:您的 _listDataHeader List 和 _listDataChild HashMap 的类型为 String。因此,当您调用 getChild 时,它返回一个字符串,而不是 OrganizationDeviceSensorsResult 对象。

<小时/>

如果无法看到您的适配器类,我建议更改:

@Override
public Object/String getChild(int groupPosition, int childPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.get(childPosititon);
}

@Override
public OrganisationDeviceSensorsResult getChild(int groupPosition, int childPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.get(childPosititon);
}

关于java - 如何从包含多个元素的对象中提取对象的单个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41592605/

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