【发布时间】:2018-06-25 17:08:52
【问题描述】:
我现在正尝试在我的片段中设置一个 ExpandableListView 并具有以下行为。 我有三个带有 CheckedTextViews 的组:
- 品牌(大众、奥迪、西亚特...)
- 类型(马球、高尔夫、A3、A2、伊维萨岛...)
- 颜色(红、绿、蓝...)
在扩展一个组时,其他组应关闭(已管理)。 单击一组中的一个子项时,它会显示为已选中(已管理)。
这是我现在被卡住了
单击同一组的另一个子项时,应取消选择其他项。 例如,下一个组也会自动打开
- 如果选择了组 1 中的子 1 并单击了组 1 中的子 2
- 应取消选择子 1 并
- 第 2 组应该展开
- 现在您必须选择第 2 组中的孩子(这也会取消选择该组中其他选定的孩子)
- 第 3 组打开
- 选择组 3 的子项 --> 所有组折叠
将来,Arraylists 将从服务器动态检索。在此之后,应该有一种行为,只显示第一组中所选品牌的车型。也许您也知道如何解决这个问题。
我的代码是
package de.tubs.cs.ibr.androidlab.flexcarpool.ui;
import android.content.Context;
import android.graphics.Color;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.text.TextUtils;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.CheckedTextView;
import android.widget.ExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import de.tubs.cs.ibr.androidlab.flexcarpool.R;
public class ConfigureCarFragment extends Fragment implements View.OnClickListener {
ExpandableListView expandableListView;
ExpandableListAdapter expandableListAdapter;
List<String> expandableListTitle;
HashMap<String, List<String>> expandableListDetail;
private int lastExpandedPosition = -1;
private String[] mBrand;
private String[] mTypes;
private String[] mColors;
private Button configure_car;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_car_configure, container, false);
setHasOptionsMenu(true);
mColors = getResources().getStringArray(R.array.colors);
mBrand = getResources().getStringArray(R.array.brands);
mTypes = getResources().getStringArray(R.array.types);
expandableListView = (ExpandableListView) view.findViewById(R.id.expandableListView);
((MainActivity) getActivity())
.setActionBarTitle(getString(R.string.profil));
expandableListDetail = ConfigureCarData.getData();
expandableListTitle = new ArrayList<String>(expandableListDetail.keySet());
expandableListAdapter = new ConfigureCarAdapter( (MainActivity)getContext(), expandableListTitle, expandableListDetail);
expandableListView.setAdapter(expandableListAdapter);
expandableListView.setAdapter(expandableListAdapter);
expandableListView.setOnGroupExpandListener(new ExpandableListView.OnGroupExpandListener() {
@Override
public void onGroupExpand(int groupPosition) {
if (lastExpandedPosition != -1
&& groupPosition != lastExpandedPosition) {
expandableListView.collapseGroup(lastExpandedPosition);
}
lastExpandedPosition = groupPosition;
}
});
expandableListView.setOnGroupCollapseListener(new ExpandableListView.OnGroupCollapseListener() {
@Override
public void onGroupCollapse(int groupPosition) {
}
});
expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
long childcount = expandableListAdapter.getChildrenCount(groupPosition);
CheckedTextView checkbox = (CheckedTextView) v.findViewById(R.id.expandedListItem);
if (checkbox.isChecked()) {
checkbox.setCheckMarkDrawable(null);
checkbox.setChecked(false);
} else {
checkbox.setCheckMarkDrawable(R.drawable.ic_check_black_24dp);
checkbox.setChecked(true);
}
return true;
}
});
configure_car = view.findViewById(R.id.configure_car);
configure_car.setOnClickListener(this);
((MainActivity) getActivity())
.setActionBarTitle(getString(R.string.configure_car));
return view;
}
public void onPrepareOptionsMenu(Menu menu) {
menu.clear();
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.configure_car:
((MainActivity) getActivity()).getSupportFragmentManager().popBackStack();
}
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
getActivity().setTitle(R.string.login);
}
}
Adapter的代码是
package de.tubs.cs.ibr.androidlab.flexcarpool.ui;
import java.util.HashMap;
import java.util.List;
import android.content.Context;
import android.graphics.Typeface;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;
import de.tubs.cs.ibr.androidlab.flexcarpool.R;
public class ConfigureCarAdapter extends BaseExpandableListAdapter{
private Context context;
private List<String> expandableListTitle;
private HashMap<String, List<String>> expandableListDetail;
public ConfigureCarAdapter(Context context, List<String> expandableListTitle,
HashMap<String, List<String>> expandableListDetail) {
this.context = context;
this.expandableListTitle = expandableListTitle;
this.expandableListDetail = expandableListDetail;
}
@Override
public Object getChild(int listPosition, int expandedListPosition) {
return this.expandableListDetail.get(this.expandableListTitle.get(listPosition))
.get(expandedListPosition);
}
@Override
public long getChildId(int listPosition, int expandedListPosition) {
return expandedListPosition;
}
@Override
public View getChildView(int listPosition, final int expandedListPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final String expandedListText = (String) getChild(listPosition, expandedListPosition);
if (convertView == null) {
LayoutInflater layoutInflater = (LayoutInflater) this.context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = layoutInflater.inflate(R.layout.list_item, null);
}
TextView expandedListTextView = (TextView) convertView
.findViewById(R.id.expandedListItem);
expandedListTextView.setText(expandedListText);
return convertView;
}
@Override
public int getChildrenCount(int listPosition) {
return this.expandableListDetail.get(this.expandableListTitle.get(listPosition))
.size();
}
@Override
public Object getGroup(int listPosition) {
return this.expandableListTitle.get(listPosition);
}
@Override
public int getGroupCount() {
return this.expandableListTitle.size();
}
@Override
public long getGroupId(int listPosition) {
return listPosition;
}
@Override
public View getGroupView(int listPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
String listTitle = (String) getGroup(listPosition);
if (convertView == null) {
LayoutInflater layoutInflater = (LayoutInflater) this.context.
getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = layoutInflater.inflate(R.layout.list_group, null);
}
TextView listTitleTextView = (TextView) convertView
.findViewById(R.id.listTitle);
listTitleTextView.setTypeface(null, Typeface.BOLD);
listTitleTextView.setText(listTitle);
return convertView;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public boolean isChildSelectable(int listPosition, int expandedListPosition) {
return true;
}
}
感谢您的帮助,我是新手,请耐心等待!
【问题讨论】:
标签: android expandablelistview checkedtextview