如何停止addContentView以隐藏我的expandablelistview的顶部?

时间:2011-04-13 13:23:36

标签: android view add

我需要你的帮助,我的消耗品列表中有一个消耗品列表 谁添加了我的addContentView隐藏。我怎么能阻止它?

我只是希望我的expeablelistview遵循我的另一种观点。

mAdapter = new MyExpandableListAdapter(context, groups, childrens);
this.setListAdapter(mAdapter);
LayoutInflater inflater = getLayoutInflater();

getWindow().addContentView(inflater.inflate(R.layout.actionbar, null),
                new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
                45));

registerForContextMenu(getExpandableListView());

1 个答案:

答案 0 :(得分:0)

在ExpandableListActivity中,您有一个ExpandableListView。期。当您将适配器设置为它时,您无法在其上添加其他视图。(我几乎可以肯定这不是一个好习惯)

我的建议是你在侧面创建一个ExpadableListView并将其放入一个加载到一个干净的普通活动中的布局(带有你想要的其他东西)。

帮助了? JQCorreia