2014-04-28 19:41:40 +00:00
|
|
|
<?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" >
|
2015-01-29 02:17:25 +00:00
|
|
|
<include layout="@layout/toolbar_settings" />
|
2014-04-28 19:41:40 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-09-02 01:26:54 +00:00
|
|
|
android:id="@+id/browserLicense"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:paddingLeft="16dp"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/app_name"
|
2014-04-28 19:41:40 +00:00
|
|
|
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"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/mpl_license"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
2015-01-28 18:16:00 +00:00
|
|
|
|
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
|
|
|
|
2014-04-28 19:41:40 +00:00
|
|
|
<LinearLayout
|
2014-09-02 01:26:54 +00:00
|
|
|
android:id="@+id/licenseAOSP"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:paddingLeft="16dp"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/android_open_source_project"
|
2014-04-28 19:41:40 +00:00
|
|
|
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"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/apache"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
2015-01-28 18:16:00 +00:00
|
|
|
|
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
|
|
|
|
2014-04-28 19:41:40 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/licenseHosts"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:paddingLeft="16dp"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/hphosts_ad_server_list"
|
2014-04-28 19:41:40 +00:00
|
|
|
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"
|
2014-07-20 11:17:53 +00:00
|
|
|
android:text="@string/freeware"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
2015-01-28 18:16:00 +00:00
|
|
|
|
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
|
|
|
|
2014-08-26 21:07:35 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/licenseOrbot"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
2014-08-26 21:07:35 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 18:25:19 +00:00
|
|
|
android:paddingLeft="16dp"
|
2014-08-26 21:07:35 +00:00
|
|
|
android:text="@string/library_netcipher"
|
|
|
|
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"
|
2014-08-26 21:07:35 +00:00
|
|
|
android:text="@string/license_gnu"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
</LinearLayout>
|
2015-01-28 18:16:00 +00:00
|
|
|
|
2014-08-26 21:07:35 +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-02-05 20:33:23 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/licenseSnactory"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
|
|
|
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/snacktory"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:text="@string/apache"
|
|
|
|
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"
|
2015-03-31 15:20:41 +00:00
|
|
|
android:background="?attr/dividerColor" />
|
2015-02-09 20:30:50 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/licenseJsoup"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/listChoiceBackgroundIndicator"
|
|
|
|
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/jsoup"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:text="@string/mit_license"
|
|
|
|
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"
|
2015-03-31 15:20:41 +00:00
|
|
|
android:background="?attr/dividerColor" />
|
2015-01-28 18:16:00 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|