我想限制webView's
limit
裏面的一些pixels
已在webView
初始化時聲明。如何限制android程序中的WebView內
View insertPoint = findViewById(R.id.layout);
WebView web = new WebView(this) ;
web.setBackgroundColor(Color.GRAY);
int lHeight = 200 ;
int lWidth = 200 ;
((ViewGroup) insertPoint).addView(web, lWidth, lHeight) ;
web.loadUrl("http://www.google.com");
編輯:
全屏拍攝由WebView
,它並不位於內200px*200px
。
編輯:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:id="@+id/layout" >
</LinearLayout>
問題是? – 2013-03-21 05:37:34
你想要什麼????? – duggu 2013-03-21 05:39:04
全屏幕由該WebView拍攝,它不在200px * 200px內部。 – Tushar 2013-03-21 05:40:18