CA certificate settings fragment
Change-Id: I8d4b595d6cc8d20be9bea655c7674c86a9183818
This commit is contained in:
41
res/layout/trusted_credential.xml
Normal file
41
res/layout/trusted_credential.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2011 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="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingRight="?android:attr/scrollbarSize"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:padding="15dip"
|
||||
>
|
||||
<TextView
|
||||
android:id="@+id/trusted_credential_subject"
|
||||
android:layout_width="0px"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
<!-- checkbox is invisible and not gone so that the height is consistent between tabs -->
|
||||
<CheckBox
|
||||
android:id="@+id/trusted_credential_status"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="invisible"
|
||||
android:clickable="false"
|
||||
android:focusable="false"
|
||||
android:layout_weight="0"
|
||||
/>
|
||||
</LinearLayout>
|
34
res/layout/trusted_credential_details.xml
Normal file
34
res/layout/trusted_credential_details.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2011 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:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
<FrameLayout
|
||||
android:id="@+id/cert_details"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
/>
|
||||
<Button
|
||||
android:id="@+id/cert_remove_button"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_gravity="right"
|
||||
android:layout_margin="6dip"
|
||||
/>
|
||||
</LinearLayout>
|
80
res/layout/trusted_credentials.xml
Normal file
80
res/layout/trusted_credentials.xml
Normal file
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2011 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.
|
||||
-->
|
||||
<TabHost
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
>
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:padding="5dp"
|
||||
>
|
||||
<TabWidget
|
||||
android:id="@android:id/tabs"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
<FrameLayout
|
||||
android:id="@android:id/tabcontent"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:padding="5dp"
|
||||
>
|
||||
<FrameLayout
|
||||
android:id="@+id/system_tab"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
<ProgressBar
|
||||
android:id="@+id/system_progress"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
<ListView
|
||||
android:id="@+id/system_list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:visibility="gone"
|
||||
>
|
||||
</ListView>
|
||||
</FrameLayout>
|
||||
<FrameLayout
|
||||
android:id="@+id/user_tab"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
<ProgressBar
|
||||
android:id="@+id/user_progress"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
<ListView
|
||||
android:id="@+id/user_list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:visibility="gone"
|
||||
>
|
||||
</ListView>
|
||||
</FrameLayout>
|
||||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
</TabHost>
|
@@ -3091,6 +3091,10 @@ found in the list of installed applications.</string>
|
||||
<string name="credentials_reset">Clear credentials</string>
|
||||
<!-- Summary of preference to reset credential storage [CHAR LIMIT=NONE] -->
|
||||
<string name="credentials_reset_summary">Remove all certificates</string>
|
||||
<!-- Title of preference to display trusted credentials (aka CA certificates) [CHAR LIMIT=30] -->
|
||||
<string name="trusted_credentials">Trusted credentials</string>
|
||||
<!-- Summary of preference to display trusted credentials (aka CA certificates) [CHAR LIMIT=NONE] -->
|
||||
<string name="trusted_credentials_summary">Display trusted CA certificates</string>
|
||||
|
||||
<!-- Title of dialog to enable credential storage [CHAR LIMIT=30] -->
|
||||
<string name="credentials_unlock">Enter password</string>
|
||||
@@ -3533,4 +3537,22 @@ found in the list of installed applications.</string>
|
||||
<string name="vpn_menu_edit">Edit network</string>
|
||||
<!-- Menu item to delete a VPN network. [CHAR LIMIT=40] -->
|
||||
<string name="vpn_menu_delete">Delete network</string>
|
||||
|
||||
<!-- Tab label for built-in system CA certificates. -->
|
||||
<string name="trusted_credentials_system_tab">System</string>
|
||||
<!-- Tab label for user added CA certificates. -->
|
||||
<string name="trusted_credentials_user_tab">User</string>
|
||||
<!-- Button label for disabling a system CA certificate. -->
|
||||
<string name="trusted_credentials_disable_label">Disable</string>
|
||||
<!-- Button label for enabling a system CA certificate. -->
|
||||
<string name="trusted_credentials_enable_label">Enable</string>
|
||||
<!-- Button label for removing a user CA certificate. -->
|
||||
<string name="trusted_credentials_remove_label">Remove</string>
|
||||
<!-- Alert dialog confirmation when enabling a system CA certificate. -->
|
||||
<string name="trusted_credentials_enable_confirmation">Enable the system CA certificate?</string>
|
||||
<!-- Alert dialog confirmation when disabling a system CA certificate. -->
|
||||
<string name="trusted_credentials_disable_confirmation">Disable the system CA certificate?</string>
|
||||
<!-- Alert dialog confirmation when removing a user CA certificate. -->
|
||||
<string name="trusted_credentials_remove_confirmation">Permanently remove the user CA certificate?</string>
|
||||
|
||||
</resources>
|
||||
|
@@ -56,6 +56,11 @@
|
||||
|
||||
<PreferenceCategory android:title="@string/credentials_title"
|
||||
android:persistent="false">
|
||||
<Preference android:title="@string/trusted_credentials"
|
||||
android:summary="@string/trusted_credentials_summary"
|
||||
android:persistent="false"
|
||||
android:fragment="com.android.settings.TrustedCredentials"/>
|
||||
|
||||
<Preference android:title="@string/credentials_install"
|
||||
android:summary="@string/credentials_install_summary"
|
||||
android:persistent="false">
|
||||
|
Reference in New Issue
Block a user