Hi everybody
I am having a little issue with the WebView package:
I am able to load and show pages, but the scroll does not work
this is my xml:
<RelativeLayout
android:id="@+id/helplayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView
android:id="@+id/textHelp"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:textColor="#FFFFFF00"/>
</RelativeLayout>
and this is the code:
WebView myTextHelp = (WebView)findViewById(R.id.textHelp);
myTextHelp.loadUrl(myPage);
and I can see the page, but I cant scroll over it...
what am I missing?
Thanks

