3860N/A<?xml version="1.0" encoding="utf-8"?>
3860N/A<!--
3860N/A ~ The contents of this file are subject to the terms of the Common Development and
3860N/A ~ Distribution License (the License). You may not use this file except in compliance with the
3860N/A ~ License.
3860N/A ~
3860N/A ~ You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
3860N/A ~ specific language governing permission and limitations under the License.
3860N/A ~
3860N/A ~ When distributing Covered Software, include this CDDL Header Notice in each file and include
3860N/A ~ the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
3860N/A ~ Header, with the fields enclosed by brackets [] replaced by your own identifying
3860N/A ~ information: "Portions copyright [year] [name of copyright owner]".
3860N/A ~
3860N/A ~ Copyright 2016 ForgeRock AS.
3860N/A -->
3860N/A
3860N/A<LinearLayout
3860N/A xmlns:android="http://schemas.android.com/apk/res/android"
3860N/A android:layout_width="match_parent"
3860N/A android:layout_height="match_parent"
3860N/A android:orientation="vertical"
3860N/A android:background="@color/light_gray"
3860N/A >
4103N/A
3860N/A <LinearLayout
3860N/A android:layout_width="match_parent"
3860N/A android:layout_height="wrap_content"
3860N/A android:layout_marginTop="30dp"
3860N/A android:orientation="vertical"
3860N/A android:background="@color/white">
3860N/A <TextView
3860N/A android:layout_width="wrap_content"
3860N/A android:layout_height="wrap_content"
3860N/A android:layout_marginTop="30dp"
4124N/A android:layout_marginLeft="30dp"
3860N/A android:textStyle="bold"
3860N/A android:textSize="18dp"
3860N/A android:text="@string/title_activity_settings" />
3860N/A <RelativeLayout
3860N/A xmlns:android="http://schemas.android.com/apk/res/android"
3860N/A android:layout_width="match_parent"
3860N/A android:layout_height="50dp"
3860N/A android:orientation="horizontal"
3860N/A android:layout_gravity="center"
3860N/A android:layout_marginBottom="30dp"
4124N/A >
4124N/A <TextView
4103N/A android:text="@string/enable_camera"
3860N/A android:layout_centerVertical="true"
3860N/A android:layout_marginLeft="50dp"
3860N/A android:layout_alignParentLeft="true"
3860N/A android:layout_width="wrap_content"
3860N/A android:layout_height="wrap_content" />
3860N/A <Switch
3860N/A android:id="@+id/camera_button"
3860N/A android:checked="true"
3860N/A android:layout_centerVertical="true"
3860N/A android:layout_alignParentRight="true"
3860N/A android:layout_marginRight="50dp"
3860N/A android:layout_width="wrap_content"
3860N/A android:layout_height="wrap_content" />
3860N/A </RelativeLayout>
3860N/A
3860N/A </LinearLayout>
3860N/A
3860N/A <LinearLayout
3860N/A android:layout_width="match_parent"
3860N/A android:layout_height="wrap_content"
3914N/A android:layout_marginTop="30dp"
3860N/A android:orientation="vertical"
3972N/A android:background="@color/white">
4124N/A <TextView
3914N/A android:layout_width="wrap_content"
3972N/A android:layout_height="wrap_content"
4124N/A android:layout_marginTop="30dp"
3972N/A android:layout_marginLeft="30dp"
3972N/A android:textStyle="bold"
3860N/A android:textSize="18dp"
3860N/A android:text="@string/settings_other_title" />
3860N/A
3860N/A <LinearLayout
3860N/A android:layout_width="wrap_content"
3860N/A android:layout_height="wrap_content"
3860N/A android:orientation="vertical"
3860N/A android:layout_gravity="center"
3860N/A android:layout_marginBottom="30dp">
3860N/A <Button
3860N/A android:id="@+id/clear_notifications_button"
3972N/A android:text="@string/settings_clear_notification_history"
3972N/A android:layout_gravity="center"
3860N/A android:layout_width="wrap_content"
3860N/A android:layout_height="wrap_content"
3860N/A />
3860N/A
3860N/A <Button
3860N/A android:id="@+id/about_button"
3860N/A android:text="@string/settings_about"
3860N/A android:layout_gravity="center"
3860N/A android:layout_width="match_parent"
3860N/A android:layout_height="wrap_content" />
3860N/A </LinearLayout>
3860N/A </LinearLayout>
3860N/A
3860N/A</LinearLayout>