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

Unified Diff: mobile/android/base/resources/layout/abb_custom_prefscreen.xml

Issue 29322610: Issue 2720 - [Adblocking settings] Add the other filter lists category (Closed)
Patch Set: Last naming nit Created July 31, 2015, 9:36 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: mobile/android/base/resources/layout/abb_custom_prefscreen.xml
diff --git a/mobile/android/base/resources/layout/abb_custom_prefscreen.xml b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e2e2d600b843306901fa0d4ca3dff64e8bfd9257
--- /dev/null
+++ b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?android:attr/listPreferredItemHeight"
+ android:gravity="center_vertical"
+ 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="@+android:id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="#0099cc"
+ android:ellipsize="marquee"
+ android:fadingEdge="horizontal"
+ android:layout_weight="1"
+ android:gravity="left" />
+
+ <TextView android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingRight="10dp"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:textColor="#9a9a9a"
+ android:text=">"
+ android:gravity="right" />
+
+ </LinearLayout>
+
+</LinearLayout>
+

Powered by Google App Engine
This is Rietveld