-1

我正在尝试使用 android-undergarment 库来创建侧边菜单,但我似乎无法弄清楚如何将项目添加到我提供给构造函数的列表视图布局中。任何帮助将不胜感激。

4

1 回答 1

0

嗯,终于知道怎么做了。

ListView view = (ListView)mDrawerGarment.findViewById(R.id.sideMenuList);
    List<String> menuItems = new ArrayList<String>();
    menuItems.add("One");
    menuItems.add("two");
    menuItems.add("three");
    menuItems.add("four");
于 2013-03-30T10:37:18.217 回答