manual.xml revision 7e3fa36d69ffee874dd364b8e3d9aa3cab9a273b
<?xml version="1.0" encoding="utf-8"?>
<!--
- FreeOTP
-
- Authors: Nathaniel McCallum <npmccallum@redhat.com>
-
- Copyright (C) 2013 Nathaniel McCallum, Red Hat
-
- 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.
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp" >
<include
layout="@layout/issuerlabel"
/>
<TableRow
android:layout_width="match_parent"
android:layout_height="48dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|right"
android:paddingRight="8dp"
android:text="@string/secret"
android:textStyle="bold"
/>
<EditText
android:id="@+id/secret"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ234567="
android:inputType="textVisiblePassword|textCapCharacters|textNoSuggestions"
android:hint="(Base32 encoded)"
android:textAppearance="?android:attr/textAppearanceSmall" />
</TableRow>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="4dp"
android:layout_marginTop="12dp"
android:background="?android:attr/dividerHorizontal" />
<TableRow
android:layout_width="match_parent"
android:layout_height="48dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|right"
android:paddingRight="8dp"
android:text="@string/type"
android:textStyle="bold"
/>
<Spinner
android:id="@+id/type"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:entries="@array/token_types" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="48dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|right"
android:paddingRight="8dp"
android:text="@string/algorithm"
android:textStyle="bold"
/>
<Spinner
android:id="@+id/algorithm"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:entries="@array/algorithms" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="48dp" >
<TextView
android:id="@+id/interval_label"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|right"
android:paddingRight="8dp"
android:text="@string/interval"
android:textStyle="bold"
/>
<EditText
android:id="@+id/interval"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="number"
android:text="30" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="48dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|right"
android:paddingRight="8dp"
android:text="@string/digits"
android:textStyle="bold"
/>
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/digits6"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:checked="true"
android:text="6" />
<RadioButton
android:id="@+id/digits8"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="8" />
</RadioGroup>
</TableRow>
</TableLayout>
</ScrollView>