android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
android:padding=
"10dp"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"50dp"
android:orientation=
"horizontal"
android:weightSum=
"10"
>
<EditText android:id=
"@+id/edit"
android:layout_width=
"0dp"
android:layout_height=
"match_parent"
android:layout_weight=
"8"
android:textSize=
"12sp"
android:hint=
"enter text to search"
/>
<Button android:id=
"@+id/button"
android:layout_width=
"0dp"
android:layout_height=
"match_parent"
android:layout_weight=
"2"
android:text=
"search"
android:textSize=
"12sp"
android:onClick=
"mOnClick"
/>
</LinearLayout>
<ScrollView
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<TextView android:id=
"@+id/text"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:textSize=
"8sp"
android:textStyle=
"bold"
/>
</ScrollView>
</LinearLayout>