Index: adblockplussbrowser/res/layout/add_filter_by_url_pref.xml |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/adblockplussbrowser/res/layout/add_filter_by_url_pref.xml |
@@ -0,0 +1,34 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
diegocarloslima
2017/09/08 15:06:07
As we already discussed through IRC, the add filte
jens
2017/09/13 08:50:29
Acknowledged.
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:layout_width="fill_parent" |
+ android:layout_height="wrap_content" |
+ android:gravity="center_vertical" |
+ android:minHeight="?android:attr/listPreferredItemHeight" |
+ android:paddingRight="?android:attr/scrollbarSize"> |
+ <LinearLayout |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:layout_margin="6dip" |
+ android:orientation="horizontal"> |
+ <TextView |
+ android:id="@+id/title" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:layout_weight="1" |
+ android:ellipsize="marquee" |
+ android:fadingEdge="horizontal" |
+ android:gravity="left" |
+ android:maxLines="2" |
+ android:text="@string/add_other_list" |
+ android:textAppearance="?android:attr/textAppearanceMedium" |
+ android:textColor="?android:attr/colorAccent"/> |
+ <TextView |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:gravity="right" |
+ android:paddingRight="10dp" |
+ android:text=">" |
+ android:textAppearance="?android:attr/textAppearanceLarge" |
+ android:textColor="#9a9a9a"/> |
+ </LinearLayout> |
+</LinearLayout> |