0

我是编码新手,我目前有一个 webview 在底部显示页面和按钮,例如;

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/webview2"
        android:text="Facebook" />

我怎样才能让这个查看facebook?

4

1 回答 1

0

您需要一个 OnClickListener 为您的按钮,例如开发人员指南按钮

Button button = (Button) findViewById(R.id.button_send);
button.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
        // Do something in response to button click
    }
});

在此之后,您的布局上还需要一个 WebView 项目,例如WebView 开发人员指南

<?xml version="1.0" encoding="utf-8"?>
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

与 WebView 的 Button 相同

WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.loadUrl("http://www.example.com");

你必须做好你的工作,把自己读懂这些事情。关键字是 OnClickListener、WebView、WebViewClient(用于 facebook)。

于 2013-09-08T19:59:17.680 回答