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

时间:2017-01-11 13:45:00

标签: java json object adapter expandablelistview

从服务器端,我基本上回到了一个包含各种元素的对象。我需要帮助提取一个元素(sensorID)我很确定我提取sensorID的代码必须改变一点,因为我使用的是expandableListView。  我已经尝试了下面的代码,但是我得到一个错误,内容为

  

java.lang.ClassCastException:java.lang.String无法强制转换为   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;
   }*/
}

2 个答案:

答案 0 :(得分:2)

编辑:您的_listDataHeader List和_listDataChild HashMap的类型为String。所以当你调用getChild时,它会返回一个String而不是一个OrganisationDeviceSensorsResult对象。

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

@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);
}

答案 1 :(得分:0)

以下代码应避免类强制转换异常。该错误表明您正在尝试将字符串强制转换为OrganisationDeviceSensorsResult对象。

Object obj = adapter.getChild(groupPosition , childPosition);

if(obj instanceof OrganisationDeviceSensorsResult){
OrganisationDeviceSensorsResult deviceSensor = (OrganisationDeviceSensorsResult)obj;
sensorID = deviceSensor.SensorID;
}