0N/A<?xml version="1.0" encoding="utf-8"?>
3261N/A<!--
0N/A The contents of this file are subject to the terms of the Common Development and
0N/A Distribution License (the License). You may not use this file except in compliance with the
0N/A License.
0N/A
0N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
0N/A specific language governing permission and limitations under the License.
0N/A
0N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
0N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
0N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
0N/A information: "Portions copyright [year] [name of copyright owner]".
0N/A
0N/A Copyright 2015-2016 ForgeRock AS.
0N/A-->
0N/A<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
0N/A android:layout_width="match_parent"
2362N/A android:layout_height="match_parent"
2362N/A xmlns:tools="http://schemas.android.com/tools"
2362N/A android:orientation="vertical">
0N/A <LinearLayout
0N/A android:layout_width="match_parent"
0N/A android:layout_height="0dp"
0N/A android:layout_weight="1"
0N/A android:layout_margin="16dp"
0N/A android:orientation="vertical">
0N/A <TextView
0N/A android:id="@+id/confirmation_message"
0N/A android:layout_width="match_parent"
0N/A android:layout_height="wrap_content"
0N/A android:text="@string/delete_confirmation_message" />
0N/A
0N/A <LinearLayout
0N/A android:layout_width="match_parent"
0N/A android:layout_height="0dp"
0N/A android:layout_weight="1"
0N/A android:layout_marginTop="16dp"
0N/A android:layout_marginLeft="16dp"
0N/A android:layout_marginRight="16dp"
0N/A android:orientation="horizontal">
2612N/A <ImageView
0N/A android:id="@+id/image"
0N/A android:layout_width="48dp"
0N/A android:layout_height="48dp"
0N/A android:scaleType="fitCenter"
0N/A android:src="@drawable/forgerock_placeholder" />
0N/A
0N/A <LinearLayout
2612N/A android:layout_width="match_parent"
2612N/A android:layout_height="48dp"
0N/A android:layout_marginLeft="8dp"
0N/A android:orientation="vertical">
0N/A <TextView
0N/A android:id="@+id/issuer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:ellipsize="end"
android:gravity="left|center"
android:singleLine="true"
tools:text="example@example.com"
android:textColor="@android:color/primary_text_light"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:gravity="left|center"
android:singleLine="true"
tools:text="eb40924b-1d13-4807-9a76-30eb7ffa7eba"
android:textColor="@android:color/secondary_text_light"
android:textSize="12sp"
android:textStyle="normal" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<View style="@style/Divider" />
<LinearLayout style="@style/Dialog.Button.Layout">
<Button
style="@style/Dialog.Button"
android:id="@+id/cancel"
android:text="@android:string/cancel"
/>
<Button
style="@style/Dialog.Button"
android:id="@+id/delete"
android:text="@string/title_menu_item_delete"
/>
</LinearLayout>
</LinearLayout>