1*456ef56aSSadaf Ebrahimi<?xml version="1.0" encoding="utf-8"?> 2*456ef56aSSadaf Ebrahimi<LinearLayout 3*456ef56aSSadaf Ebrahimi xmlns:android="http://schemas.android.com/apk/res/android" 4*456ef56aSSadaf Ebrahimi android:orientation="vertical" 5*456ef56aSSadaf Ebrahimi android:layout_width="match_parent" 6*456ef56aSSadaf Ebrahimi android:layout_height="match_parent"> 7*456ef56aSSadaf Ebrahimi <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/display_find"></TextView> 8*456ef56aSSadaf Ebrahimi <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/searchFind"> 9*456ef56aSSadaf Ebrahimi <requestFocus></requestFocus> 10*456ef56aSSadaf Ebrahimi </EditText> 11*456ef56aSSadaf Ebrahimi <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/display_replace"></TextView> 12*456ef56aSSadaf Ebrahimi <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/searchReplace"></EditText> 13*456ef56aSSadaf Ebrahimi <LinearLayout android:id="@+id/linearLayout1" android:layout_width="match_parent" android:layout_height="wrap_content"> 14*456ef56aSSadaf Ebrahimi </LinearLayout> 15*456ef56aSSadaf Ebrahimi <LinearLayout android:id="@+id/linearLayout2" android:layout_width="match_parent" android:layout_height="wrap_content"> 16*456ef56aSSadaf Ebrahimi </LinearLayout> 17*456ef56aSSadaf Ebrahimi <TableLayout android:id="@+id/tableLayout1" android:layout_width="match_parent" android:layout_height="wrap_content"> 18*456ef56aSSadaf Ebrahimi <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content"> 19*456ef56aSSadaf Ebrahimi <CheckBox android:text="@string/display_whole_words" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/searchWord"></CheckBox> 20*456ef56aSSadaf Ebrahimi <CheckBox android:text="@string/display_case_sensitive" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/searchCase"></CheckBox> 21*456ef56aSSadaf Ebrahimi </TableRow> 22*456ef56aSSadaf Ebrahimi <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content"> 23*456ef56aSSadaf Ebrahimi <CheckBox android:text="@string/display_replace_all" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/searchAll"></CheckBox> 24*456ef56aSSadaf Ebrahimi <CheckBox android:text="@string/display_from_start" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/searchStart"></CheckBox> 25*456ef56aSSadaf Ebrahimi </TableRow> 26*456ef56aSSadaf Ebrahimi </TableLayout> 27*456ef56aSSadaf Ebrahimi <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/textView3" android:typeface="normal" android:text="@string/findreplace_undo_reminder"></TextView> 28*456ef56aSSadaf Ebrahimi</LinearLayout> 29