Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Android 完整布局未捕获
在我的 Android 应用程序中,我有列表视图和一组按钮。我想截取包含所有列表视图和按钮的布局的屏幕截图,但我只获得列表视图的可见部分。
如何在android中捕获不可见的listview项目?
总的来说,没有“不可见的列表视图项目”。
假设您有一个ListView可以显示 10 行的空间,并且您的适配器从getCount(). Android 不会创建 10000 行Views。它创建 10 行Views(或者更多行),并在用户滚动时回收它们。因此,在您拍摄“屏幕截图”时,您的大多数行根本不以可视形式存在。
ListView
getCount()
Views