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: Changed screen title Created July 20, 2015, 5 p.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..b2ec2bf56c5aa105b8c097eee561ec2315f6b466
--- /dev/null
+++ b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml
@@ -0,0 +1,40 @@
+<?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_marginStart="6dip"
Felix Dahlke 2015/07/26 17:06:22 Does marginStart/End actually work here? How I und
René Jeschke 2015/07/28 10:55:26 Done.
+ android:layout_marginEnd="6dip"
+ android:layout_marginTop="6dip"
+ android:layout_marginBottom="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