将广告添加到列表
在像这样实现的列表底部包含固定广告的最简单方法是什么:
http://developer.android.com/resources/tutorials/views/hello-listview.html
What would be the easiest way of including a fixed ad at the bottom of a list implemented like this one:
http://developer.android.com/resources/tutorials/views/hello-listview.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
addFooterView(View v)
方法将静态 View 添加到列表末尾。You can use the
addFooterView(View v)
method to add a static View to the end of the list.您需要构建一个自定义列表视图,然后可以在该列表视图适配器上加载广告。
You need to build a custom listview, and on that listviewAdapter you can load the Ad.