ManuelPeinado / FadingActionBar

Android library implementing a fading effect for the action bar, similar to the one found in the Play Music app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebView Bug

N1cE-tm opened this issue · comments

Hi, when I use Activity with WebView, I see a bug!
In the simple on googple play I see this bug too...
Version 3.1.2 (last)
Screenshots (from code this activity I change only url):
http://rghost.ru/57429506/image.png
http://rghost.ru/57429515/image.png
http://rghost.ru/57429516/image.png

pls help me

Hi, I found the solution
Simply replace the contents of the xml file with webview this:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:scrollbars="vertical" />
</LinearLayout>