This crash occurs because the background loader is loading the storage for an app which is currently being moved off of the device. In the native code which is calculating the storage, it throws an InstallerException which is caught and rethrown as an IllegalStateException. We handle this in the view by reporting that we could not calculate the size of the app. Change-Id: I109b1be60ae60f8ef31b08cb4392b576261fa806 Fixes: 35922033 Test: Robotest
92 lines
3.3 KiB
XML
92 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2015 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.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/application_info_label">
|
|
|
|
<com.android.settings.applications.SpacePreference
|
|
android:key="storage_space"
|
|
android:layout_height="8dp" />
|
|
|
|
<Preference
|
|
android:key="storage_used"
|
|
android:title="@string/storage_used"
|
|
android:summary="@string/storage_type_internal"
|
|
android:selectable="false"
|
|
android:layout="@layout/horizontal_preference" />
|
|
|
|
<com.android.settings.applications.LayoutPreference
|
|
android:key="change_storage_button"
|
|
android:selectable="false"
|
|
android:layout="@layout/single_button_panel" />
|
|
|
|
<PreferenceCategory
|
|
android:key="storage_category"
|
|
android:layout="@layout/tall_preference_category"
|
|
android:title="@string/storage_label">
|
|
|
|
<Preference
|
|
android:key="total_size"
|
|
android:title="@string/total_size_label"
|
|
android:selectable="false"
|
|
android:layout="@layout/horizontal_preference" />
|
|
|
|
<Preference
|
|
android:key="app_size"
|
|
android:title="@string/application_size_label"
|
|
android:selectable="false"
|
|
android:layout="@layout/horizontal_preference" />
|
|
|
|
<Preference
|
|
android:key="data_size"
|
|
android:title="@string/data_size_label"
|
|
android:selectable="false"
|
|
android:layout="@layout/horizontal_preference" />
|
|
|
|
<com.android.settings.applications.LayoutPreference
|
|
android:key="clear_data_button"
|
|
android:selectable="false"
|
|
android:layout="@layout/single_button_panel" />
|
|
</PreferenceCategory>
|
|
|
|
<com.android.settings.applications.SpacePreference
|
|
android:layout_height="8dp" />
|
|
|
|
<Preference
|
|
android:key="cache_size"
|
|
android:title="@string/cache_size_label"
|
|
android:selectable="false"
|
|
android:layout="@layout/horizontal_preference" />
|
|
|
|
<com.android.settings.applications.LayoutPreference
|
|
android:key="clear_cache_button"
|
|
android:selectable="false"
|
|
android:layout="@layout/single_button_panel" />
|
|
|
|
<com.android.settings.applications.SpacePreference
|
|
android:layout_height="8dp" />
|
|
|
|
<PreferenceCategory
|
|
android:key="uri_category"
|
|
android:layout="@layout/headerless_preference_category" >
|
|
<com.android.settings.applications.LayoutPreference
|
|
android:key="clear_uri_button"
|
|
android:layout="@layout/single_button_panel"
|
|
android:selectable="false" />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|