使用以下代码,但我无法WebView
垂直滚动。在水平方向上它工作正常,但在垂直方向上是不可能的。我已经尝试了一切,不知道什么是错的......
public class OAuthentication extends Activity
{
private WebView myWebView = null;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.oauth_layout);
myWebView = (WebView) findViewById(R.id.webView);
myWebView.setVerticalScrollBarEnabled(true);
myWebView.setHorizontalScrollBarEnabled(true);
try {
String authUrl = String.format(Constants.OAUTH_URL,
Constants.API_KEY,
URLEncoder.encode("r_fullprofile rw_nus r_emailaddress r_network w_messages", "UTF-8"),
UUID.randomUUID().hashCode(),
Constants.REDIRECT_URI_OAUTH);
myWebView.setWebViewClient(new MyWebViewClient());
myWebView.loadUrl(authUrl);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
在oauth_layout.xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_header"
/>
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>