我遇到了一个问题,在SDK 23之前一切都很好。但现在我收到了这些错误:
W/art: Throwing OutOfMemoryError "Failed to allocate a 61819212 byte allocation with 4032304 free bytes and 3MB until OOM"
W/JavaBrowserViewRendererHelper: Error allocating bitmap
E/chromium: [ERROR:java_browser_view_renderer_helper.cc(133)] Error unlocking java bitmap pixels.
WebView没有显示。这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/post_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffffff">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:fillViewport="false"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollbars="vertical"
android:touchscreenBlocksFocus="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:touchscreenBlocksFocus="false">
<ImageView
android:id="@+id/icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/placeholder" />
<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|top"
android:layout_marginBottom="30dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="30dp"
android:gravity="center|center_horizontal"
android:text="Title"
android:textAppearance="?android:attr/textAppearanceLarge" />
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/textView"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollbars="none" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_gravity="center" />
<ImageView
android:id="@+id/nextprev"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="30dp"
android:adjustViewBounds="true"
android:src="@drawable/nextprev" />
</LinearLayout>
</ScrollView>
正如您所看到的,WebView位于ScrollView中,因为我希望WebView上方和下方的视图滚动。我也从这里尝试了没有ScrollView的解决方案Webview in Scrollview并且WebView加载得很好,但是上面的任何内容都滚出来但留下了覆盖WebView的空白区域。
我不知道,也许只是模拟器故障?无论如何,我很想知道是什么导致了这个以及如何解决它。
答案 0 :(得分:2)
我认为你已经解决了这个问题,但要回答你的问题,你的模拟器内存不足(OOM)。
我在管理图片方面遇到了同样的问题,因此我认为您可以减少应用中的图片数量。此外,如果您想正确管理它们,我建议您看到此视频https://www.youtube.com/watch?v=JTlJT2b5dd4
如果我错了,请纠正我。