private void displayLeadSection() { try { final Page page = model.getPage(); final PageProperties pageProperties = page.getPageProperties(); JSONObject marginPayload = new JSONObject(); int margin = DimenUtil.roundedPxToDp(activity.getResources().getDimension(R.dimen.content_margin)); marginPayload.put("marginLeft", margin); marginPayload.put("marginRight", margin); bridge.sendMessage("setMargins", marginPayload); JSONObject leadSectionPayload = new JSONObject(); leadSectionPayload.put("sequence", pageSequenceNum); leadSectionPayload.put("title", page.getDisplayTitle()); leadSectionPayload.put("section", page.getSections().get(0).toJSON()); leadSectionPayload.put( "string_page_similar_titles", activity.getString(R.string.page_similar_titles)); leadSectionPayload.put("string_page_issues", activity.getString(R.string.button_page_issues)); leadSectionPayload.put("string_table_infobox", activity.getString(R.string.table_infobox)); leadSectionPayload.put("string_table_other", activity.getString(R.string.table_other)); leadSectionPayload.put("string_table_close", activity.getString(R.string.table_close)); leadSectionPayload.put("string_expand_refs", activity.getString(R.string.expand_refs)); leadSectionPayload.put("isBeta", app.getReleaseType() != WikipediaApp.RELEASE_PROD); leadSectionPayload.put("siteLanguage", model.getTitle().getSite().getLanguageCode()); leadSectionPayload.put("isMainPage", page.isMainPage()); leadSectionPayload.put("apiLevel", Build.VERSION.SDK_INT); bridge.sendMessage("displayLeadSection", leadSectionPayload); Log.d(TAG, "Sent message 'displayLeadSection' for page: " + page.getDisplayTitle()); Utils.setupDirectionality( model.getTitle().getSite().getLanguageCode(), Locale.getDefault().getLanguage(), bridge); // Hide edit pencils if anon editing is disabled by remote killswitch or if this is a file // page JSONObject miscPayload = new JSONObject(); boolean isAnonEditingDisabled = app.getRemoteConfig().getConfig().optBoolean("disableAnonEditing", false) && !app.getUserInfoStorage().isLoggedIn(); miscPayload.put("noedit", (isAnonEditingDisabled || page.isFilePage() || page.isMainPage())); miscPayload.put("protect", !pageProperties.canEdit()); bridge.sendMessage("setPageProtected", miscPayload); } catch (JSONException e) { // This should never happen throw new RuntimeException(e); } if (webView.getVisibility() != View.VISIBLE) { webView.setVisibility(View.VISIBLE); } refreshView.setRefreshing(false); activity.updateProgressBar(true, true, 0); }
/** * Update the current topmost backstack item, based on the currently displayed page. (Things like * the last y-offset position should be updated here) Should be done right before loading a new * page. */ @Override public void updateCurrentBackStackItem() { if (backStack.isEmpty()) { return; } PageBackStackItem item = backStack.get(backStack.size() - 1); item.setScrollY(webView.getScrollY()); }
private boolean isFirstPage() { return backStack.size() <= 1 && !webView.canGoBack(); }