2013-07-29 20:39:47 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-07-29 20:39:47 -04:00
|
|
|
android:layout_width="match_parent"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
2013-07-29 20:39:47 -04:00
|
|
|
|
2015-01-28 21:17:25 -05:00
|
|
|
<include layout="@layout/toolbar_settings" />
|
2015-01-28 19:16:00 +01:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scrollView1"
|
2013-07-29 20:39:47 -04:00
|
|
|
android:layout_width="match_parent"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_height="match_parent" >
|
2013-07-29 20:39:47 -04:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
2013-07-29 20:39:47 -04:00
|
|
|
android:layout_width="match_parent"
|
2014-07-16 22:26:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:orientation="vertical" >
|
2013-07-29 20:39:47 -04:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/rAllowPopups"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-19 19:19:25 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:minHeight="60dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
2013-07-29 20:39:47 -04:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
2013-07-30 20:25:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:text="@string/window"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:text="@string/recommended"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cbAllowPopups"
|
2013-07-30 20:25:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:background="#cdcdcd" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/rAllowCookies"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-19 19:19:25 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:minHeight="60dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:text="@string/cookies"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:text="@string/recommended"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cbAllowCookies"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:background="#cdcdcd" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/rAllowIncognitoCookies"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:minHeight="60dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:text="@string/incognito_cookies"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cbAllowIncognitoCookies"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
2014-04-28 15:41:40 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:background="#cdcdcd" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/rRestoreTabs"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-19 19:19:25 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:minHeight="60dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
2013-08-13 20:32:58 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2014-07-16 22:26:27 +02:00
|
|
|
android:paddingRight="30dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:text="@string/restore"
|
2013-08-13 20:32:58 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cbRestoreTabs"
|
2013-08-13 20:32:58 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
2014-04-28 15:41:40 -04:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:background="#cdcdcd" />
|
2014-04-28 15:41:40 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-01-28 19:16:00 +01:00
|
|
|
android:id="@+id/layoutRendering"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-19 19:19:25 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:minHeight="60dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
2013-07-29 20:39:47 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:text="@string/rendering_mode"
|
2013-07-29 20:39:47 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/renderText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:paddingLeft="16dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:text="Small Text"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2015-01-29 13:25:19 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-01-28 19:16:00 +01:00
|
|
|
android:background="#cdcdcd" />
|
2014-12-31 12:56:33 -05:00
|
|
|
</LinearLayout>
|
2015-01-28 19:16:00 +01:00
|
|
|
</ScrollView>
|
2014-06-19 19:19:25 +02:00
|
|
|
|
2015-01-28 19:16:00 +01:00
|
|
|
</LinearLayout>
|