You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
233 lines
9.8 KiB
233 lines
9.8 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:orientation="vertical" > |
|
|
|
<include layout="@layout/toolbar_settings" /> |
|
|
|
<ScrollView |
|
android:id="@+id/scrollView1" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" > |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:orientation="vertical" > |
|
|
|
<RelativeLayout |
|
android:id="@+id/rAllowPopups" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="?attr/listChoiceBackgroundIndicator" |
|
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:id="@+id/textView1" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="30dp" |
|
android:text="@string/window" |
|
android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
|
|
<TextView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="30dp" |
|
android:text="@string/recommended" |
|
android:textAppearance="?android:attr/textAppearanceSmall" |
|
android:textColor="@color/light" /> |
|
</LinearLayout> |
|
|
|
<CheckBox |
|
android:id="@+id/cbAllowPopups" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_alignParentRight="true" |
|
android:layout_centerVertical="true" /> |
|
</RelativeLayout> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="1dp" |
|
android:layout_marginLeft="10dp" |
|
android:layout_marginRight="10dp" |
|
android:background="#cdcdcd" /> |
|
|
|
<RelativeLayout |
|
android:id="@+id/rAllowCookies" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="?attr/listChoiceBackgroundIndicator" |
|
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:id="@+id/textView2" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="30dp" |
|
android:text="@string/cookies" |
|
android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
|
|
<TextView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:paddingLeft="16dp" |
|
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> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="1dp" |
|
android:layout_marginLeft="10dp" |
|
android:layout_marginRight="10dp" |
|
android:background="#cdcdcd" /> |
|
|
|
<RelativeLayout |
|
android:id="@+id/rAllowIncognitoCookies" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="?attr/listChoiceBackgroundIndicator" |
|
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" |
|
android:paddingLeft="16dp" |
|
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> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="1dp" |
|
android:layout_marginLeft="10dp" |
|
android:layout_marginRight="10dp" |
|
android:background="#cdcdcd" /> |
|
|
|
<RelativeLayout |
|
android:id="@+id/rRestoreTabs" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="?attr/listChoiceBackgroundIndicator" |
|
android:minHeight="60dp" |
|
android:paddingBottom="10dp" |
|
android:paddingRight="10dp" |
|
android:paddingTop="10dp" > |
|
|
|
<TextView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_alignParentLeft="true" |
|
android:layout_centerVertical="true" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="30dp" |
|
android:text="@string/restore" |
|
android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
|
|
<CheckBox |
|
android:id="@+id/cbRestoreTabs" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_alignParentRight="true" |
|
android:layout_centerVertical="true" /> |
|
</RelativeLayout> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="1dp" |
|
android:layout_marginLeft="10dp" |
|
android:layout_marginRight="10dp" |
|
android:background="#cdcdcd" /> |
|
|
|
<LinearLayout |
|
android:id="@+id/layoutRendering" |
|
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/rendering_mode" |
|
android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
|
|
<TextView |
|
android:id="@+id/renderText" |
|
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> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="1dp" |
|
android:layout_marginLeft="10dp" |
|
android:layout_marginRight="10dp" |
|
android:background="#cdcdcd" /> |
|
</LinearLayout> |
|
</ScrollView> |
|
|
|
</LinearLayout> |