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

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

Issue 8487098: ABP/Android crash reporter (Closed)
Patch Set: ABP/Android crash reporter Created Nov. 1, 2012, 9:44 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/CrashHandler.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent" >
5
6 <LinearLayout
7 android:layout_width="fill_parent"
8 android:layout_height="wrap_content"
9 android:orientation="vertical"
10 android:padding="4dip" >
11
12 <TextView
13 android:layout_width="fill_parent"
14 android:layout_height="wrap_content"
15 android:text="@string/crash_dialog_text" />
16
17 <TextView
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content"
20 android:paddingTop="4dip"
21 android:text="@string/crash_dialog_comment_prompt" />
22
23 <EditText
24 android:id="@+id/comments"
25 android:layout_width="fill_parent"
26 android:layout_height="wrap_content"
27 android:lines="2" />
28
29 <LinearLayout
30 android:layout_width="fill_parent"
31 android:layout_height="wrap_content"
32 android:orientation="horizontal"
33 android:paddingTop="4dip" >
34
35 <Button
36 android:layout_width="fill_parent"
37 android:layout_height="wrap_content"
38 android:layout_weight="1"
39 android:onClick="onOk"
40 android:text="@string/ok" />
41
42 <Button
43 android:layout_width="fill_parent"
44 android:layout_height="wrap_content"
45 android:layout_weight="1"
46 android:onClick="onCancel"
47 android:text="@string/cancel" />
48 </LinearLayout>
49 </LinearLayout>
50
51 </ScrollView>
OLDNEW
« no previous file with comments | « no previous file | src/org/adblockplus/android/CrashHandler.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld