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 上是可滚动的。我在 API 中看到有一个“showVerticalScrollInidicator”布尔属性,可以为 iOS 设置,但不能为 Android 设置。有什么办法吗?
在表格中,最好的方法是在 Android 中使用 ListView。它通过适配器提供了更好的内存管理和易于使用的 API。关于滚动可见,ListView 自带android:fadeScrollbars="false"
android:fadeScrollbars="false"
如果您坚持在 Android 中使用 TableView,则可以将 TableView 放在 ScrollView 中并android:fadeScrollbars="false"在其中使用
希望有帮助