oathcell.xml revision 4daaf3ed5fb272fb8a6850af6b81c0ef1b983a52
3863N/A<?xml version="1.0" encoding="utf-8"?>
3863N/A<!--
3863N/A The contents of this file are subject to the terms of the Common Development and
3863N/A Distribution License (the License). You may not use this file except in compliance with the
3863N/A License.
3863N/A
3863N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
3863N/A specific language governing permission and limitations under the License.
3863N/A
3863N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
3863N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
3863N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
3863N/A information: "Portions copyright [year] [name of copyright owner]".
3863N/A
3863N/A Copyright 2015-2016 ForgeRock AS.
3863N/A
3863N/A Portions Copyright 2013 Nathaniel McCallum, Red Hat
3863N/A-->
3863N/A<com.forgerock.authenticator.mechanisms.oath.OathLayout
3863N/A xmlns:android="http://schemas.android.com/apk/res/android"
3863N/A xmlns:freeotp="http://schemas.android.com/apk/res-auto"
3863N/A android:layout_width="match_parent"
3863N/A android:layout_height="96dp"
3863N/A android:background="@drawable/token"
3863N/A >
3863N/A <RelativeLayout
3863N/A android:layout_width="match_parent"
3863N/A android:layout_height="match_parent">
3863N/A <com.forgerock.authenticator.ui.MechanismIcon
3863N/A android:id="@+id/icon"
3863N/A android:layout_width="wrap_content"
3863N/A android:layout_height="wrap_content"
3863N/A android:layout_gravity="center_vertical"
3863N/A android:layout_centerVertical="true" />
3863N/A
3863N/A <com.forgerock.authenticator.ui.ProgressCircle
3863N/A android:id="@+id/progressOuter"
3863N/A android:layout_width="48dp"
3863N/A android:layout_height="48dp"
3863N/A android:padding="5dp"
3863N/A android:layout_alignParentRight="true"
3863N/A android:layout_alignParentEnd="true"
3863N/A android:layout_marginRight="16dp"
3863N/A android:layout_marginEnd="16dp"
3863N/A android:layout_centerVertical="true"
3863N/A freeotp:hollow="true"
3863N/A freeotp:max="1000"
3863N/A />
3863N/A
3863N/A <ImageButton
3863N/A android:id="@+id/refresh"
3863N/A android:layout_width="48dp"
3863N/A android:layout_height="48dp"
3863N/A android:padding="5dp"
3863N/A android:background="@color/white"
3863N/A android:layout_alignParentRight="true"
3898N/A android:layout_alignParentEnd="true"
3863N/A android:layout_marginRight="16dp"
3863N/A android:layout_marginEnd="16dp"
3863N/A android:layout_centerVertical="true"
3863N/A android:src="@drawable/forgerock_icon_refresh"
3863N/A />
3863N/A
3863N/A <LinearLayout
3863N/A android:layout_width="wrap_content"
3863N/A android:layout_height="wrap_content"
3863N/A android:layout_centerVertical="true"
3957N/A android:orientation="vertical"
3863N/A android:layout_marginLeft="60dp">
3863N/A
3863N/A <TextView
3863N/A android:layout_width="match_parent"
3863N/A android:layout_height="32dp"
3863N/A android:paddingLeft="8dp"
3863N/A android:paddingRight="8dp"
3863N/A android:gravity="left|center"
3863N/A android:text="One-time Password"
3863N/A android:textSize="20sp"
3863N/A />
3863N/A
3863N/A <TextView
3863N/A android:id="@+id/code"
3863N/A android:layout_width="match_parent"
3863N/A android:layout_height="40dp"
3863N/A android:paddingLeft="8dp"
3863N/A android:paddingRight="8dp"
3863N/A android:gravity="left|bottom"
3863N/A android:text="123 456"
3863N/A android:textSize="34sp"
3863N/A android:textColor="#4d4d4d"
3863N/A android:textStyle="bold"
3898N/A android:typeface="monospace"
3898N/A />
3898N/A </LinearLayout>
3898N/A
3898N/A </RelativeLayout>
3898N/A</com.forgerock.authenticator.mechanisms.oath.OathLayout>
3863N/A