static ProgressBar progressBar;
static EditText urlTextBox;
static ImageView favoriteIcon;
- static final String homepage = "https://www.google.com/";
+ static final String homepage = "https://www.duckduckgo.com/";
// Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
@SuppressLint("SetJavaScriptEnabled")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
-
- // FEATURE_ACTION_BAR_OVERLAY is required to scroll the actionBar.
- supportRequestWindowFeature(AppCompatDelegate.FEATURE_SUPPORT_ACTION_BAR_OVERLAY);
-
setContentView(R.layout.activity_webview);
mainWebView = (WebView) findViewById(R.id.mainWebView);
favoriteIcon = (ImageView) actionBar.getCustomView().findViewById(R.id.favoriteIcon);
urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
progressBar = (ProgressBar) actionBar.getCustomView().findViewById(R.id.progressBar);
-
- // Scroll the actionBar.
- actionBar.setHideOnContentScrollEnabled(true);
}
mainWebView.setWebViewClient(new WebViewClient() {
-<!-- nextedScrollingEnabled is required to enable scrolling of the actionBar. -->
-<ScrollView
- android:id="@+id/scrollView"
+<RelativeLayout
+ android:id="@+id/relativeLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:nestedScrollingEnabled="true" >
+ android:layout_height="match_parent">
- <!-- layout_marginTop is required to force the top of the website below the overlayed actionBar. -->
<WebView
android:id="@+id/mainWebView"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
+ android:layout_height="match_parent"
android:focusable="true"
- android:focusableInTouchMode="true"
- android:layout_marginTop="?attr/actionBarSize"/>
+ android:focusableInTouchMode="true" />
-</ScrollView>
+</RelativeLayout>