我想在布局中添加两个 webview..我使用 frameLayout
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webview1"
android:layout_width="350dip"
android:layout_height="350dip" />
<WebView
android:layout_height="250dip"
android:layout_width="250dip"
android:id="@+id/webview2"
/>
</FrameLayout>
在主要活动中:
web1=(WebView)findViewById(R.id.webview1);
web2=(WebView)findViewById(R.id.webview2);
web1.loadUrl("http://www.google.com");
web2.loadUrl("http://www.youtube.com");
web2.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
Animation anim=AnimationUtils.loadAnimation(FrameWebViewActivity.this, android.R.anim.slide_in_left);
web2.setAnimation(anim);
}
});
但是当运行项目时,它只显示 webview youtube 全屏..我想同时显示两个 webview ..我必须做什么?