我使用了this post所描述的PageAdapter。
在我的一个布局页面中有一个ListView,我想在运行时添加项目。通常我会这样做: -
lv = (ListView) findViewById(R.id.list);
但由于未设置ContentView,因此无效 有没有其他方法来获取listview
答案 0 :(得分:0)
您必须使用layoutinflater来获取未由setContent视图设置的视图,例如ListView lv = Layoutinflater.from(mContext).inflate(R.id.list,null);