0

我有一个图像按钮,单击该按钮会打开一个带有网络视图的新活动。网络视图将显示一些自定义 HTML。当我单击按钮时,Web 视图不显示任何内容。

这是我的按钮视图的代码:-

    public void GoToContact(View view)  
{

        WebView webView;

        setContentView(R.layout.webview);

        webView = (WebView) findViewById(R.id.myWebView);
        webView.getSettings().setJavaScriptEnabled(true);


        String customHtml = "<html><body><h1>Hello, WebView</h1></body></html>";
           webView.loadData(customHtml, "text/html", "UTF-8");

}  

这是我的网络视图布局:-

    <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal">



    <ImageButton
    android:id="@+id/GoToHome"
    android:onClick="GoToTC" 
    android:background="@drawable/test"
    android:layout_width="360dp"
    android:layout_height="60dp"
    android:contentDescription="@string/header"/>

    <WebView
    android:id="@+id/myWebView"
    android:layout_width="match_parent"
    android:layout_height="400dp" />
    </LinearLayout>
4

2 回答 2

1

尝试这个

public class MainActivity extends Activity {

    private Button button;

    public void onCreate(Bundle savedInstanceState) {
        final Context context = this;

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        button = (Button) findViewById(R.id.buttonUrl);

        button.setOnClickListener(new OnClickListener() {

          @Override
          public void onClick(View arg0) {
            Intent intent = new Intent(context, WebViewActivity.class);
            startActivity(intent);
          }

        });

    }

}


public class WebViewActivity extends Activity {

    private WebView webView;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.webview);

        webView = (WebView) findViewById(R.id.webView1);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.loadUrl("http://www.google.com");

    }

}
于 2013-03-21T10:29:34.353 回答
0

首先将 WebView 声明为您的活动的类成员:

    WebView webView;

    public void GoToContact(View view)  
    {

    setContentView(R.layout.webview);

    webView = (WebView) findViewById(R.id.myWebView);
    webView.getSettings().setJavaScriptEnabled(true);


    String customHtml = "<html><body><h1>Hello, WebView</h1></body></html>";
       webView.loadData(customHtml, "text/html", "UTF-8");

   } 

然后再试一次...顺便说一句,请向我们展示您的 layout.xml 和整个活动类的代码。

于 2013-03-21T10:26:48.813 回答