Net在我的android程序中不起作用

时间:2014-10-23 20:36:45

标签: android eclipse browser webview

我用WebView创建了一个简单的Web浏览器,我将其设置为加载谷歌,但它甚至不知道我的手机上有一些Wifi连接。甚至没有尝试加载它说“网页不可用”。 它甚至不加载“192.168.1.1”,这是调制解调器配置。 我的问题是我应该使用任何特殊代码才能使用我的无线网络? (我的wifi已连接并可与Firefox或Chrome配合使用)

TNX。

编辑:这是程序的整个代码,并不多。

import java.net.NetPermission;

import android.app.Activity;
import android.content.DialogInterface.OnClickListener;
import android.os.Bundle;
import android.provider.ContactsContract.CommonDataKinds.Website;
import android.support.annotation.IdRes;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.webkit.WebView;
import android.widget.Button;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    WebView wv = (WebView)findViewById(R.id.webView1);    
    wv = (WebView) findViewById(R.id.webView1);
    wv.loadUrl("192.168.1.1");

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}
}

1 个答案:

答案 0 :(得分:0)

确保您需要AndroidManifest.xml中的互联网权限:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.android"
          android:versionCode="1"
          android:versionName="1.0">
    <uses-sdk android:minSdkVersion="17"/>

    <uses-permission android:name="android.permission.INTERNET" />

    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <!-- Activities go here -->
    </application>
</manifest>