안 드 로 이 드 간단 한 일반 카 트 만 들 기

7058 단어 Android쇼핑 카 트
본 논문 의 사례 는 안 드 로 이 드 일반 카 트 제작 과정 을 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
1.최신 프로젝트 에 카 트 와 유사 한 기능 이 추가 되 었 습 니 다.아래 그림 과 같 습 니 다.

당시 이 페이지 를 처음 봤 을 때 첫 번 째 반응 은 ListView 에 포 함 된 Listview 를 이용 한 것 이 었 고 한 번 의 조작 을 통 해 이 기능 을 실현 했다.당시 에 도 성능 문 제 는 생각 하지 않 고 쓸 수 있 는 것 만 생각 했다.나중에 포 함 된 데 이 터 는 데이터 의 양 이 많 을 때 Listview 를 미 끄 러 뜨리 면 카드 가 걸 리 는 것 을 뚜렷하게 느 낄 수 있 습 니 다.이것 은 사용자 에 게 참 기 어렵 기 때문에 대체 방안 을 찾 겠 다 는 생각 이 들 었 습 니 다.인터넷 의 주 류 는 ExpandableListView 로 이 기능 을 실현 하 는 것 을 보 았 기 때문에 저도 이 방안 으로 쓰 겠 습 니 다.
2.성형 후의 Demo 는 다음 그림 과 같다.

3.사고방식:
 1).컨트롤 로 ExpandableListView 선택
 2).모든 데이터 원본 에 선택 한 플래그 를 추가 합 니 다.isChecked 는 ischecked 에 따라 checkbox 의 상 태 를 제어 합 니 다.
ExpandableListView 관련 보급
\#1.우선 ExpandableListView 의 adapter 를 보 세 요.일반적인 ListView adapter 와 다 릅 니 다.

public class MyExpandAdapter extends BaseExpandableListAdapter {
//        
List<OrderDetailsEntity> group_head = new ArrayList();
//       
List<List<ProductDetails>> child = new ArrayList();
Context context;
LayoutInflater inflater;

public MyExpandAdapter(Context content) {
 //     、    
 group_head = new ArrayList<OrderDetailsEntity>();
 child = new ArrayList<List<ProductDetails>>();
 inflater = LayoutInflater.from(context);
}

public MyExpandAdapter(Context context, List<OrderDetailsEntity> group_head, List<List<ProductDetails>> child) {
 this.context = context;
 //     、    
 this.group_head = group_head;
 this.child = child;
 inflater = LayoutInflater.from(context);
}
/****************************   adapter  ******************************/
@Override
public int getGroupCount() {
 return this.group_head.size();
}

@Override
public int getChildrenCount(int position) {
 if (position < 0 || position >= this.child.size())
 return 0;
 return child.get(position).size();
}

@Override
public OrderDetailsEntity getGroup(int groupPosition) {
 return group_head.get(groupPosition);
}

@Override
public ProductDetails getChild(int groupPosition, int childPosition) {

 return child.get(groupPosition).get(childPosition);
}

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

@Override
public long getChildId(int groupPosition, int childPosition) {
 return childPosition;
}
/**************************************************************************/
@Override
public boolean hasStableIds() {
//             ID,                   
 return true;
}

private boolean isSelectAll(OrderDetailsEntity entity) {
 int count = 0;
 for (ProductDetails p : entity.getProductDetails()) {
 if (p.isChecked()) {
 count++;
 }
 }

 return entity.getProductDetails().size() == count;
}

/*************************   adapter getView    **********************/
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
 ViewHolderGroup group;
 if (convertView == null) {
 convertView = inflater.inflate(R.layout.item, parent, false);
 group = new ViewHolderGroup();
 group.cb_all = (CheckBox) convertView.findViewById(R.id.cb_checkAll);
 group.tv_name = (TextView) convertView.findViewById(R.id.tv_name);
 convertView.setTag(group);
 } else {
 group = (ViewHolderGroup) convertView.getTag();
 }
 group.tv_name.setText(
 group_head.get(groupPosition).getMemberId() + "," + group_head.get(groupPosition).getShopName());
 group.cb_all.setChecked(isSelectAll(getGroup(groupPosition)));
 return convertView;
}

@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView,
 ViewGroup parent) {
 ViewHolderChild childV;
 if (convertView == null) {
 convertView = inflater.inflate(R.layout.item_inner, parent, false);
 childV = new ViewHolderChild();
 childV.cb = (CheckBox) convertView.findViewById(R.id.cb_check);
 childV.iv = (ImageView) convertView.findViewById(R.id.iv_img);
 childV.name = (TextView) convertView.findViewById(R.id.name);
 convertView.setTag(childV);
 } else {
 childV = (ViewHolderChild) convertView.getTag();
 }

 childV.name.setText(getChild(groupPosition, childPosition).getProductName());
 childV.cb.setChecked(getChild(groupPosition, childPosition).isChecked());

 return convertView;
}

/****************************************************************************/

@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
 ////              。
 //   Activity  ChildSelect  
 // Toast.makeText(context, "gp="+groupPosition+",cp="+childPosition,
 // Toast.LENGTH_LONG).show();
 return true;
}

static class ViewHolderGroup {
 CheckBox cb_all;
 TextView tv_name;
}

static class ViewHolderChild {
 CheckBox cb;
 ImageView iv;
 TextView name;
}
}

 
\#2.ExpandableListView 전개 

for (int i = 0; i < adapter.getGroupCount(); i++) { 
sp_date_list.expandGroup(i); 
}
3).ExpandableListView 기본 아이콘 제거
 sp_date_list.setGroupIndicator(null);
4).ExpandableListView itemClick 이벤트 처리
 1. setOnChildClickListener
2. setOnGroupClickListener
3. setOnGroupCollapseListener
4. setOnGroupExpandListener
방법 명 을 통 해 우 리 는 각자 의 용 도 를 알 수 있 습 니 다.각각 하위 옵션 을 누 르 고 그룹 항목 을 누 르 며 그룹 을 나 누 어 통합 하고 그룹 을 나 누 어 펼 치 는 감청 기 를 설정 합 니 다.

//             
expandableListView.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() {
@Override
public boolean onGroupClick(ExpandableListView expandableListView, View view, int i, long l) {
 Toast.makeText(getApplicationContext(), groupStrings[i], Toast.LENGTH_SHORT).show();
 //      ,return true,  return false
 return false;
}
//            
expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
 Toast.makeText(getApplicationContext(), childStrings[groupPosition][childPosition], Toast.LENGTHshow();
 return true;
}
});

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기