Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: libadblockplus-android-settings/res/layout/fragment_adblock_whitelisted_domains_settings.xml

Issue 29678581: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: addressed comments Created Jan. 29, 2018, 11:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android-settings/res/layout/fragment_adblock_whitelisted_domains_settings.xml
diff --git a/libadblockplus-android-settings/res/layout/fragment_adblock_whitelisted_domains_settings.xml b/libadblockplus-android-settings/res/layout/fragment_adblock_whitelisted_domains_settings.xml
deleted file mode 100644
index 2ee1ca0da95030f37191700d59037cf15a48368c..0000000000000000000000000000000000000000
--- a/libadblockplus-android-settings/res/layout/fragment_adblock_whitelisted_domains_settings.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:padding="@dimen/fragment_adblock_wl_padding"
- tools:context="org.adblockplus.libadblockplus.android.settings.WhitelistedDomainsSettingsFragment">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <!-- Add domain input -->
- <EditText
- android:id="@+id/fragment_adblock_wl_add_label"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:lines="1"
- android:hint="@string/fragment_adblock_settings_add_domain"
- android:inputType="textUri"
- android:textAppearance="?android:attr/textAppearanceMedium" />
-
- <!-- Add button -->
- <ImageView
- android:id="@+id/fragment_adblock_wl_add_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:src="@drawable/fragment_adblock_whitelisted_domains_add"
- android:paddingStart="@dimen/fragment_adblock_wl_item_padding" />
-
- </LinearLayout>
-
- <!-- Whitelisted domain label -->
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/fragment_adblock_settings_wl_domains"
- android:paddingTop="@dimen/fragment_adblock_wl_padding"
- android:paddingBottom="@dimen/fragment_adblock_wl_padding"
- android:textAppearance="?android:attr/textAppearanceMedium"/>
-
- <!-- ListView -->
- <ListView
- android:id="@+id/fragment_adblock_wl_listview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
-
-</LinearLayout>

Powered by Google App Engine
This is Rietveld