d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey<?xml version="1.0" encoding="utf-8"?>
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey<!--
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ The contents of this file are subject to the terms of the Common Development and
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ Distribution License (the License). You may not use this file except in compliance with the
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ License.
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ specific language governing permission and limitations under the License.
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ When distributing Covered Software, include this CDDL Header Notice in each file and include
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ Header, with the fields enclosed by brackets [] replaced by your own identifying
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ information: "Portions copyright [year] [name of copyright owner]".
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey ~ Copyright 2016 ForgeRock AS.
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey -->
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey<LinearLayout
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey xmlns:android="http://schemas.android.com/apk/res/android"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey xmlns:tools="http://schemas.android.com/tools"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:orientation="vertical"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="match_parent">
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <LinearLayout
f3fa3b65e8ebafc90b1044cf522ee35213299c42Tom Rumsey android:id="@+id/header"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:orientation="vertical"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="180dp"
8367f835047e57c70a508975d020905f0173f51aTom Rumsey android:background="@color/account_background">
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <Space
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="20dp" />
8367f835047e57c70a508975d020905f0173f51aTom Rumsey <com.forgerock.authenticator.ui.CircleImageView
f3fa3b65e8ebafc90b1044cf522ee35213299c42Tom Rumsey android:id="@+id/image"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="96dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="96dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_gravity="center_horizontal"
8367f835047e57c70a508975d020905f0173f51aTom Rumsey android:src="@drawable/forgerock_placeholder"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:scaleType="fitCenter"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_weight="5"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey />
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <TextView
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:id="@+id/issuer"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:textColor="@color/white"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="wrap_content"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="wrap_content"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_gravity="center_horizontal"
0040712a8beeb4903e52791db304c51f62487ec3Tom Rumsey tools:text="ForgeRock"
0040712a8beeb4903e52791db304c51f62487ec3Tom Rumsey android:textSize="20sp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_weight="1"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey />
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <TextView
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:id="@+id/account_name"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:textColor="@color/white"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="wrap_content"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="wrap_content"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_gravity="center_horizontal"
0040712a8beeb4903e52791db304c51f62487ec3Tom Rumsey tools:text="joe.bloggs"
0040712a8beeb4903e52791db304c51f62487ec3Tom Rumsey android:textSize="15sp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_weight="1"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey />
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <Space
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="20dp" />
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey </LinearLayout>
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <LinearLayout
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:orientation="vertical"
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey android:layout_width="match_parent"
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey android:layout_height="match_parent"
f9ae1abe01cd810f972ba1f8010e78d993c8ada5Tom Rumsey android:background="@color/light_gray"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey >
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <View
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_height="1dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:background="@android:color/darker_gray"/>
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey <GridView
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:id="@+id/grid"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:layout_width="match_parent"
8367f835047e57c70a508975d020905f0173f51aTom Rumsey android:layout_height="match_parent"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:columnWidth="250dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:gravity="center"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:horizontalSpacing="8dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:numColumns="auto_fit"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey android:stretchMode="columnWidth"
c00a5587d32883c0f366fd6c47c3e674dad9dba7Tom Rumsey android:verticalSpacing="1dp"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey tools:layout_height="80dp"
f9ae1abe01cd810f972ba1f8010e78d993c8ada5Tom Rumsey android:background="@color/light_gray"
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey />
efafbd2aa55b834f714882683fa864a0ac9e64aaTom Rumsey </LinearLayout>
d00779d35b3db7493fcdd3f8645e094c5540f4c4Tom Rumsey</LinearLayout>