android:layout_width
=
"match_parent"
android:layout_height
=
"wrap_content"
>
<
LinearLayout
android:layout_width
=
"match_parent"
android:layout_height
=
"wrap_content"
android:background
=
"#999"
android:clickable
=
"true"
android:orientation
=
"vertical"
tools:context
=
".MainActivity"
>
<
ScrollView
android:id
=
"@+id/scrollView1"
android:layout_width
=
"match_parent"
android:layout_height
=
"100dp"
>
<
LinearLayout
android:layout_width
=
"match_parent"
android:layout_height
=
"match_parent"
android:orientation
=
"vertical"
>
<
ImageView
android:id
=
"@+id/childImage"
android:layout_width
=
"100dp"
android:layout_height
=
"200dp"
android:layout_margin
=
"5dp"
android:background
=
"@drawable/icon"
android:contentDescription
=
"@string/hello_world"
/>
<
TextView
android:id
=
"@+id/html"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:text
=
"@string/hello_world"
android:textColor
=
"#FFFFFF"
android:textSize
=
"14sp"
android:textStyle
=
"bold"
/>
</
LinearLayout
>
</
ScrollView
>
<
View
android:layout_width
=
"match_parent"
android:layout_height
=
"1dp"
android:background
=
"@android:color/white"
/>
</
LinearLayout
>
</
RelativeLayout
>