我的模擬器瀏覽器沒有連接到互聯網?如何做設置?
Android模擬器瀏覽器沒有連接到互聯網
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".reader"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
</manifest>
此錯誤看起來並不是導致WebView無法加載頁面的原因。你能夠在Android瀏覽器中加載相同的頁面嗎? – 2011-03-14 08:01:55
@Sheikh是的,你是對的!任務編輯... – vnshetty 2011-03-14 08:03:48