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

Side by Side Diff: res/layout/configuration.xml

Issue 8363097: ABP/Android preferences UI (Closed) Base URL: https://hg.adblockplus.org/adblockplusandroid/
Patch Set: Created Sept. 14, 2012, 8:20 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="wrap_content"
4 android:layout_height="wrap_content"
5 android:orientation="vertical"
6 android:paddingLeft="8dip"
7 android:paddingRight="8dip" >
8
9 <TextView
10 android:id="@+id/message_text"
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content" />
13
14 <LinearLayout
15 android:layout_width="fill_parent"
16 android:layout_height="wrap_content"
17 android:gravity="center"
18 android:orientation="horizontal"
19 android:paddingBottom="8dip"
20 android:paddingTop="8dip" >
21
22 <Button
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:onClick="onHelp"
26 android:paddingRight="8dip"
27 android:text="@string/help" />
28
29 <Button
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:onClick="onOk"
33 android:text="@string/gotit" />
34 </LinearLayout>
35
36 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld