SectionedAdapter传递多个字符串

时间:2011-11-09 13:42:14

标签: android adapter android-adapter

适配器中的

我有类似的东西

protected View getHeaderView(String caption, int index, 
                             View convertView, ViewGroup parent) {

并且在标题变量中我有一个字符串。该字符串沿适配器传递

adapter.addSection("the string", myadapter);

如何传递多个字符串?例如,我有字符串A和字符串B,如何将它们传递给适配器,如何在后面读取它们? 我需要这样的东西

adapter.addsection(a, b, myadapter);

1 个答案:

答案 0 :(得分:0)

我是愚蠢的:),解决方案很容易传递字符串我只是传递了字符串数组......

我的问题是我不知道我可以改变方法定义......