ListView-NullpointerException中的Horizo​​ntalListView

时间:2013-06-17 17:05:17

标签: android android-listview horizontal-scrolling horizontallist

我正在尝试在Listview中实现Horizo​​ntalListView(http://www.dev-smart.com/archives/34)。但我的应用程序关闭,Logcat在Main和NullPointer Exception中显示Exception。 我尝试的是..我的主要活动使用包含listview的xml。它调用一个扩展基本适配器的自定义适配器。这个cumstom适配器膨胀一个包含Horizo​​ntalListview的xml,而getView方法调用另一个适配器。这个最终的Adapter调用一个xml,它将填充每个行项。 应用程序工作正常,直到适配器1调用..当我尝试ninflating另一个正常的xml(包含textview),它工作。

我的应用程序在水平和垂直方向都有动态数量的元素,这就是为什么我要实现这种方法。

任何建议。 如果你想要的话可​​以提供代码。

这是我的第一个适配器的getview方法

 public View getView(int position, View convertView, ViewGroup parent) 
    {

        View ret=convertView;
         if (convertView==null)
        ret = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_row, null);
         HorizontalListView listview = (HorizontalListView)ret.findViewById(R.id.listview1);

         listview.setAdapter(madapter);
        return ret;
}

0 个答案:

没有答案