Expanded List View
は、設定のためのチェックボックスなどで理想的です。拡張リストビューが機能していません
しかし、何らかの理由で私のためにうまく機能しません。
私は多くの異なるチュートリアルを試して、それに多くの時間を費やしました。しかし、彼らはすべて同じように終わるようです。それは私の活動に現れますが、膨張したり崩壊したりすることはありません。ここ
はsettings.xmlのための私のコードです:ここでは
<ExpandableListView
android:id="@+id/lvExp"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
は、親XMLのための私のコードです:ここでは
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp"
android:background="#000000">
<TextView
android:id="@+id/lblListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="?
android:attr/expandableListPreferredItemPaddingLeft"
android:textSize="17dp"
android:textColor="#f9f93d" />
</LinearLayout>
は、子XMLのための私のコードです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="55dip"
android:orientation="vertical" >
<TextView
android:id="@+id/lblListItem"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="17dip"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="?
android:attr/expandableListPreferredChildPaddingLeft" />
</LinearLayout>
私の展開可能なリストアアダプタ
package com.example.edonfreiner.siddur;
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;
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 ExpandableListAdapter(Context context, List<String>
listDataHeader,
HashMap<String, List<String>>
listChildData) {
this._context = context;
this._listDataHeader = listDataHeader;
this._listDataChild = listChildData;
}
@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;
}
@Override
public View getChildView(int groupPosition, final int childPosition,
boolean isLastChild, View convertView,
ViewGroup parent) {
final String childText = (String) getChild(groupPosition,
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);
return convertView;
}
@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;
}
}
これまでのところ、私はこれを動作させることができました。それにチェックボックスを置くことはできませんでしたが、これは簡単です。
したがって、リスト内の親アイテムのみが表示されますか? getChildrenCount()のサイズは?また、私は正確にどこにチェックボックスがあるのか分からなかった。 – Laura
はいリスト内の親アイテムのみが表示されていますので、画像がアップロードされていますが、チェックボックスは展開可能リストビューの一部ではなく、後ろのxmlチェックボックスに含まれています。私はまだチェックボックスを組み込んでいない。全体的なプロジェクトを教えていただきたいので、私の助けとなるかもしれません。あるいは、私がアイデアを実現するための別の方法があります。 –
あなたの助けてくれてありがとう、その問題は、ビューが小さすぎて、あなたがそれを見ることができないことを除いて、すべてがうまくいきました。私もそこにチェックボックスを取得することができたが、私はチェックボックスのリスナーを動作させることはできない。何故ですか?また、いくつかのものが開いているときと閉じるときにビューのサイズを変更する方法はありますか?ありがとう –