Enable nested scrolling for Trusted credentials

The list of trusted root certs cannot be scrolled to the end. This is
caused by the disabled nested scrolling. To ensure the
CollapsingToolbarLayout works well with the list, the nested scrolling
feature of ListView needs to be enabled.

Bug: 191011957
Test: manual test
Change-Id: Ic7a41377f983e90c85ca304798851112aebcc349
This commit is contained in:
Mill Chen
2021-12-28 18:34:36 +08:00
parent 4ae3127eaf
commit d29ead1824

View File

@@ -53,6 +53,7 @@
</LinearLayout> </LinearLayout>
<ListView <ListView
android:id="@+id/cert_list" android:id="@+id/cert_list"
android:nestedScrollingEnabled="true"
style="@style/TrustedCredentialsList"> style="@style/TrustedCredentialsList">
</ListView> </ListView>
</LinearLayout> </LinearLayout>