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