0

我为我的 android 应用程序创建了一个 webview,最初我想让应用程序尽可能简单地理解事物。我创建了一个 webview 来显示其中的不同页面。我只是创建了一个按钮,它将 url 加载到 webview 中,它工作得很好,但是 webview 正在加载按钮下方的 url。它没有覆盖主布局或没有在新页面中打开 url。我在 webview 中看到网页和上面的按钮。如何摆脱这个按钮。提前致谢。这是我的 java 和 xml 代码

活动

public class TestinglinkActivity extends Activity {
     final Activity activity = this;
     WebView webview;

    private class MyWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            view.loadUrl(url);
            return true;


        }
    }


    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    webview = (WebView) findViewById(R.id.webview);
    webview.getSettings().setJavaScriptEnabled(true);
    webview.setWebViewClient(new MyWebViewClient());

    webview.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(WebView view, int progress)
        {
            activity.setTitle("Loading...");
            activity.setProgress(progress * 100);

            if(progress == 100)
                activity.setTitle(R.string.app_name);
        }
    });


    Button btn_login = (Button) findViewById(R.id.btn_click_login);
    btn_login.setOnClickListener(new OnClickListener() {
         public void onClick(View v) {
             webview.loadUrl("http://www.google.com.pk");
             webview.goBack();
             webview.goForward();

          }
         }
     );


           }




}

xml

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent" 
        android:isScrollContainer="true" 
        android:scrollbarAlwaysDrawVerticalTrack="true" 
        android:scrollbarStyle="outsideInset" 
        android:scrollbars="vertical"  
        android:scrollbarSize="10dp"
        >

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <Button 
            android:id="@+id/btn_click_login"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent"
            android:layout_weight="2"
            android:text="GO"/>

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >


    <TextView
        android:id="@+id/date"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:layout_marginRight="5dp"
        android:layout_alignParentLeft="true"
        android:gravity="center_vertical"
        android:lines="4"

        />
     <ImageView android:id="@+id/imageBtn"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:padding="5dp"
        android:contentDescription="@string/hello"
        android:layout_alignParentLeft="true"

         />

</RelativeLayout>

      <TextView
        android:id="@+id/date"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:gravity="center_vertical"
        android:lines="4"

        />

    <WebView 
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>


</LinearLayout>

 </ScrollView>
4

1 回答 1

0

听起来你想在按下按钮时开始一个新的活动。您的 WebView 出现在其他布局下方的原因是因为这正是您的 XML 所描述的。如果您希望您的 WebView 全屏显示,您需要将 WebView 移动到一个单独的 Activity,该 Activity 在您单击按钮时启动。

您可能希望在用于启动新 Activity 的 Intent 的 Extra 中传递 URL。

于 2012-06-19T08:26:06.283 回答