#android #android-webview
#Android #android-webview
Вопрос:
Я создаю приложение для Android (Android 2.3.3), в котором есть верхний, нижний колонтитулы и WebView между ними. Проблема в том, что WebView не открывает ни одной веб-страницы. (ПРИМЕЧАНИЕ: я запускаю приложение на эмуляторе).
Я попытался открыть веб-страницы с помощью браузера Android, и веб-страницы открываются правильно. Я также пытался:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
И код работает правильно (открывает страницу в браузере).
Я работал с www.google.com и с моим собственным доменом я также работал с IP-адресами обеих веб-страниц (для Google 72.14.204.147 и для моего собственного, ip моего собственного сервера разработки).
Кроме того, перед написанием самого популярного ответа у меня уже есть <uses-permission android:name="android.permission.INTERNET" />
перед тегом application.
Я добавляю код, прежде чем кто-либо его попросит:
Файл activity java:
public class MyActivity extends Activity {
//Global Variables
WebView mainWebView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
loadActivityViews();
mainWebView.getSettings().setJavaScriptEnabled(true);
mainWebView.loadUrl("www.google.com");
mainWebView.setWebViewClient(new MyWebViewClient());
}
/** Loads all global views of the Activity */
private void loadActivityViews(){
mainWebView = (WebView) findViewById(R.id.index_main_web_view);
}
//Internal Classes
/*
* MyWebView Class
*
* Forces links to open in the same webView
* Handles the back button.
* */
public class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
@Override
public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
if ((event.getKeyCode() == KeyEvent.KEYCODE_BACK) amp;amp; view.canGoBack()) {
view.goBack();
return true;
}
return super.shouldOverrideKeyEvent(view, event);
}
}
}
Манифест Android:
(ПРИМЕЧАНИЕ: у него есть «android.permission.ИНТЕРНЕТ» перед тегом приложения)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pixable.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".MyActivity"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
the main.xml (Я не думаю, что это важно, но я добавляю это на всякий случай)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@ id/index_main_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF" >
<RelativeLayout
android:id="@ id/index_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#000000" >
... My header butons ...
</RelativeLayout>
<WebView
android:id="@ id/index_main_web_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@ id/index_header"
android:layout_above="@ id/index_botom_layout" />
<LinearLayout
android:id="@ id/index_botom_layout"
android:layout_width="fill_parent"
android:layout_height="50px"
android:layout_alignParentBottom="true"
android:background="#000000"
android:orientation="horizontal" >
... My Footer Butons ...
</LinearLayout>
</RelativeLayout>
</LinearLayout>
Ответ №1:
Я думаю, ваша проблема в том, что вы не добавляете URL с http://
. Бьюсь об заклад, http://www.google.com
работает.
Комментарии:
1. Проблема решена, спасибо. Я ожидал чего-то более сложного.