2

我想在布局中添加两个 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 ..我必须做什么?

4

2 回答 2

2

使用 Framelayout 时需要记住的一件事是“向 FrameLayout 添加多个视图时,每个视图都将堆叠在前一个视图之上”。所以最好使用任何其他父布局,如线性布局或相对布局,其中使用两个框架布局..

代码:

   </RelativeLayout>

      <?xml version=”1.0” encoding=”utf-8”?>
        <RelativeLayout
           android:id=”@+id/RLayout”
           android:layout_width=”fill_parent”
           android:layout_height=”fill_parent”
           xmlns:android=”http://schemas.android.com/apk/res/android”&gt;

         <FrameLayout>
            <WebView
              android:id="@+id/webview1"
              android:layout_width="350dip"
              android:layout_height="350dip" />
         </FrameLayout> 

         <FrameLayout>
            <WebView
               android:layout_height="250dip"
               android:layout_width="250dip"
               android:id="@+id/webview2" />
        </FrameLayout> 
      </RelativeLayout>
于 2012-07-08T03:58:27.230 回答
2

使用另一种布局,aFrameLayout用于仅显示单个子元素。

我建议使用线性布局并指定权重以将视图划分为所需的比例。

于 2012-07-08T03:12:30.553 回答