我想限制在初始化时声明的webView's
limit
一些内容。pixels
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");
编辑:
Full Screen 是由那个取的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>