ExpandableListview中Childview中的进度条

时间:2013-01-30 21:45:08

标签: java android-layout expandablelistview

我正在尝试构建一个App。

我想要的是expandable ListArrayList<Object>的每个元素也应该是List的元素。 Parenttitle应该是对象的标题。该对象还包含一个包含四个元素的ArrayList<Double>

每位家长都应该有一个孩子。父母的孩子应该显示四个ProgressBars。 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中,但此布局不适用于活动。

有谁知道如何修复它?

非常感谢!

(对不好的语言表示抱歉;))

1 个答案:

答案 0 :(得分:2)

您可以通过定义自己的适配器(从BaseAdapter扩展)并在那里定义所有样式参数来设置每个行中的项目。你可以在这里找到关于这个主题的好教程:http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html