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
60 lines
2.4 KiB
XML
60 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="true"
|
|
android:clipChildren="true"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:id="@+id/header_view"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:clickable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:visibility="gone">
|
|
|
|
<View
|
|
android:id="@+id/header_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
android:background="?android:attr/listDivider"
|
|
android:visibility="gone"/>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
|
|
<ImageView
|
|
android:id="@+id/group_indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<FrameLayout
|
|
android:id="@+id/header_content_container"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<ListView
|
|
android:id="@+id/cert_list"
|
|
android:nestedScrollingEnabled="true"
|
|
style="@style/TrustedCredentialsList">
|
|
</ListView>
|
|
</LinearLayout>
|