2010-04-06 15:54:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-04-12 13:44:00 -04:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
2010-04-06 15:54:51 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-09 09:12:41 -05:00
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
2010-04-06 15:54:51 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:fillViewport="true"
|
|
|
|
android:orientation="vertical" >
|
2010-04-06 15:54:51 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<LinearLayout
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:text="@string/label_passphrase" />
|
2012-04-12 13:44:00 -04:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/edit_key_no_passphrase"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:text="@string/label_no_passphrase" />
|
2012-04-12 13:44:00 -04:00
|
|
|
|
2014-01-09 09:12:41 -05:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
2012-04-12 13:44:00 -04:00
|
|
|
android:id="@+id/edit_key_btn_change_pass_phrase"
|
|
|
|
android:layout_width="match_parent"
|
2014-01-14 15:19:43 -05:00
|
|
|
android:layout_height="60dp"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:padding="4dp"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:text="@string/btn_set_passphrase"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-pencil"
|
|
|
|
bootstrapbutton:bb_type="info" />
|
2010-04-06 15:54:51 -04:00
|
|
|
|
2010-05-18 11:23:25 -04:00
|
|
|
<LinearLayout
|
2012-04-12 13:44:00 -04:00
|
|
|
android:id="@+id/edit_key_container"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2010-07-23 08:57:02 -04:00
|
|
|
</LinearLayout>
|
2012-04-12 13:44:00 -04:00
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
</ScrollView>
|