|
|
@@ -9,6 +9,7 @@ import android.text.TextUtils;
|
|
|
import android.view.View;
|
|
|
import android.view.ViewGroup;
|
|
|
import android.webkit.WebView;
|
|
|
+import android.webkit.WebViewClient;
|
|
|
import android.widget.ImageView;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
@@ -145,6 +146,13 @@ public class ActFindInformation extends BaseActivity implements Action1<Integer>
|
|
|
|
|
|
WebView find_information_content_wb = itemView.findViewById(R.id.find_information_content_wb);
|
|
|
ViewUtil.loadDataWithBaseURL(find_information_content_wb, findItem.getContent());
|
|
|
+ find_information_content_wb.setWebViewClient(new WebViewClient() {
|
|
|
+ @Override
|
|
|
+ public boolean shouldOverrideUrlLoading(WebView view, String url) {
|
|
|
+ Jump2View.getInstance().goWeb(ActFindInformation.this, url);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
}
|
|
|
private TaskHelper taskHelper = new TaskHelper(this);
|