gpt4 book ai didi

android - 将页脚 View 添加到 ListView

转载 作者:行者123 更新时间:2023-11-29 18:01:54 25 4
gpt4 key购买 nike

friend 。将页脚 View 添加到 ListView 时出现问题。我使用以下代码添加页脚 View 。

TextView totalIncome = new TextView(this);
TextView totalExpense = new TextView(this);
totalIncome.setGravity(Gravity.CENTER);
totalExpense.setGravity(Gravity.CENTER);
totalIncome.setPadding(0, 5, 0, 5);
totalExpense.setPadding(0, 5, 0, 5);
totalIncome.setText("Total Income is : " + tIncome + "");
totalExpense.setText("Total Expense is : " + tExpense + "");
final ListView lv1 = (ListView) findViewById(R.id.ListView);
lv1.addFooterView(totalIncome);
lv1.addFooterView(totalExpense);
lv1.setAdapter(adapter);

但我的问题是在动态更改列表内容时,页脚 View 会下降一些步骤。我不明白为什么它在移动。请帮助我的 friend 。

供引用:

enter image description here

改变内容后

enter image description here

查看列表与页脚 View 之间的差距。我不想要这个空间。我试图在更改内容时删除 footerview。但我不能。我通过互联网搜索了很多。但是我没有找到任何解决方案的 friend 。请帮忙。提前致谢。

最佳答案

我想你可以尝试在更改 ListView 的内容时删除并读取页脚 View

删除:

lv1.removeFooterView(totalIncome);
lv1.removeFooterView(totalExpense);

阅读

lv1.addFooterView(totalIncome);
lv1.addFooterView(totalExpense);

关于android - 将页脚 View 添加到 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15515868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com