안 드 로 이 드 간단 한 일반 카 트 만 들 기
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;
}
});
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.