我正在尝试构建一个应用程序。
我想要的是一个expandable List
。 ArrayList<Object>
的每个元素也应该是List的元素。 Parenttitle应该是对象的标题。该对象还包含带有四个元素的ArrayList<Double>
。
每个父母都应该有一个孩子。父母的孩子应该显示四个ProgressBar。 ArrayList<Double>
的第一个元素应设置第一个progressBar的进度,依此类推。
这就是我现在所拥有的:
public class Lernen extends Activity {
private ExpandableListView mExpandableList;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_lernen);
mExpandableList = (ExpandableListView) findViewById(R.id.expandable_list);
ArrayList<Parent> arrayParents = new ArrayList<Parent>();
ArrayList<String> arrayChildren = new ArrayList<String>();
// MUSS GEÄNDERT WERDEN WENN DIE METHODE GETALLCARDS FERTIG IST!!!
ArrayList<Karteikasten> kasten = new ArrayList<Karteikasten>();
// teststub:
Karteikasten foo = new Karteikasten("Kasten 1");
Karteikasten bar = new Karteikasten("Kasten 2");
kasten.add(bar);
kasten.add(foo);
System.out.println(kasten.size());
try{
// here we set the parents and the children
for (int i = 0; i < kasten.size(); i++) {
System.out.println("Durchlauf: " + i);
System.out.println(kasten.get(0).getProgress().get(0).intValue());
// for each "i" create a new Parent object to set the title and the
// children
Parent parent = new Parent();
parent.setmTitle(kasten.get(i).getName());
arrayChildren.add("Child " + i);
parent.setmArrayChildren(arrayChildren);
ProgressBar pb1 = (ProgressBar) findViewById(R.id.progressBar1);
pb1.setProgress(kasten.get(i).getProgress().get(0).intValue());
ProgressBar pb2 = (ProgressBar) findViewById(R.id.progressBar2);
pb2.setProgress(kasten.get(i).getProgress().get(1).intValue());
ProgressBar pb3 = (ProgressBar) findViewById(R.id.progressBar3);
pb3.setProgress(kasten.get(i).getProgress().get(2).intValue());
ProgressBar pb4 = (ProgressBar) findViewById(R.id.progressBar4);
pb4.setProgress(kasten.get(i).getProgress().get(3).intValue());
System.out.println("Kasten: " + kasten.get(i).getName());
// in this array we add the Parent object. We will use the
// arrayParents at the setAdapter
arrayParents.add(parent);
}
} catch (Exception e){
String stackTrace = Log.getStackTraceString(e);
System.out.println("Fehlermeldung:");
System.out.println(stackTrace);
}
// sets the adapter that provides data to the list.
mExpandableList.setAdapter(new MyExpandableListAdapter(Lernen.this,
arrayParents));
}
}
我在行中得到了NullPointerException
pb1.setProgress(kasten.get(i).getProgress().get(0).intValue());
问题可能是progressBar在布局
list_item_child.xml
中,但是此布局不适用于活动。有谁知道如何修理它?
非常感谢你!
(对不起,因为语言不好;)
最佳答案
您可以通过定义自己的适配器(从BaseAdapter扩展)并在其中定义所有样式参数来在每一行中设置项目。您可以在这里找到有关此主题的优秀教程:http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html
关于java - ExpandableListview的Childview中的进度栏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14614399/