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

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

Issue 6731909971312640: Issue 1227 - Could not close the info-text (Closed)
Patch Set: Switched to anonymous inner class for OnClickListener Created Nov. 11, 2014, 11:30 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/org/adblockplus/android/AboutDialog.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent" 3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent" > 4 android:layout_height="fill_parent" >
5 5
6 <LinearLayout 6 <LinearLayout
7 android:layout_width="wrap_content" 7 android:layout_width="wrap_content"
8 android:layout_height="wrap_content" 8 android:layout_height="wrap_content"
9 android:orientation="vertical" 9 android:orientation="vertical"
10 android:padding="8dip" > 10 android:padding="8dip" >
11 11
12 <TextView 12 <TextView
13 android:id="@+id/about_text" 13 android:id="@+id/about_text"
14 android:layout_width="fill_parent" 14 android:layout_width="fill_parent"
15 android:layout_height="wrap_content" /> 15 android:layout_height="wrap_content" />
16
17 <RelativeLayout
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content"
20 android:gravity="center"
21 android:orientation="horizontal" >
22
23 <Button
24 android:id="@+id/close_about"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:text="@string/ok" />
28 </RelativeLayout>
16 </LinearLayout> 29 </LinearLayout>
17 30
18 </ScrollView> 31 </ScrollView>
OLDNEW
« no previous file with comments | « no previous file | src/org/adblockplus/android/AboutDialog.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld