我要做的是让我的TabWidget中的Tabs指向一个webview,而不是所有三个都有一个单独的webview。
我到目前为止所做的基本上是采用此Tab-Layout-tutorial并在不同标签中创建网页浏览。这很好。
问题是,这显然会同时打开三个网站。这不是我想要完成的。我想要的是所有三个标签链接到一个webview。
我已经找到了答案,但遗憾的是找不到答案。我确实找到了一个在SO here上做同样事情的人,但不幸的是我不太明白自己该怎么做。
目前我的应用程序与教程中的应用程序非常相似,除了当然在选项卡中有三个单独的Web视图(而不是textview),就像这样(完全相同,除了名称,时间) 3):
public class SongsActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
WebView webView = (WebView) findViewById(R.id.myWebView);
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("http://www.google.com");
}
}
class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
boolean result = false;
/* ... */
// Return false to proceed loading page, true to interrupt loading
return result;
}
}
然后我有 main.xml 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
和 webview.xml 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myWebView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
我的 AndroidManifest.xml :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="hellotabwidget.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HelloTabWidgetActivity"
android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SongsActivity" android:label="@string/app_name"></activity>
<activity android:name=".AlbumsActivity" android:label="@string/app_name"></activity>
<activity android:name=".ArtistsActivity" android:label="@string/app_name"></activity>
</application>
</manifest>
答案 0 :(得分:1)
我不太确定,但尝试使用单身人士:
setContentView(R.layout.webview);
WebView webView = (WebView) findViewById(R.id.myWebView);
webView.getSettings().setJavaScriptEnabled(true);
// webView.setWebViewClient(new WebViewClient());
webView.setWebViewClient(MyWebViewClient.getInstance());
webView.loadUrl("http://www.google.com");
public class MyWebViewClient extends WebViewClient {
private static MyWebViewClient uniqInstance;
private MyWebViewClient() {
super();
}
public static synchronized MyWebViewClient getInstance() {
if (uniqInstance == null) {
uniqInstance = new MyWebViewClient();
}
return uniqInstance;
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}