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
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---