Note that there are some explanatory texts on larger screens.

plurals
  1. POOutofMemoryError ImageView
    primarykey
    data
    text
    <p>I have a problem with imageview, i have 77 picture jpg and have 126 quote text, just simple app i want is i want show all quote with background picture and i use viewflipper so when i swipe left/right get into next quote. I give you my code that i use now. Hope that anyone can help me.. Really wasting my time to fix it. My picture : 320x480.</p> <pre><code> vf = (ViewFlipper) findViewById(R.id.pages); for (i = 0; i&lt;totalphrase;i++) { Log.i("ID",""+i); var = arrayphrase.get(i); //iv.setBackgroundColor(Color.rgb((int)Math.ceil(Math.random()*100), (int)Math.ceil(Math.random()*100), (int)Math.ceil(Math.random()*100))); FrameLayout a = new FrameLayout(this); FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.FILL_PARENT, FrameLayout.LayoutParams.FILL_PARENT); a.setLayoutParams(lp); b = new ImageView(this); LinearLayout.LayoutParams lp1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); FrameLayout.LayoutParams lp2= new FrameLayout.LayoutParams(740, 800,Gravity.CENTER); //b.setBackgroundColor(Color.rgb((int)Math.ceil(Math.random()*100), (int)Math.ceil(Math.random()*100), (int)Math.ceil(Math.random()*100))); // i got outofmemoryerror with this, Imgid[] -&gt; my picture in drawable there ara 77picture b.setBackgroundResource(Imgid[(int)(Math.random()*Imgid.length)]); // -- ERROR -- outofmemory b.setLayoutParams(lp1); a.addView(b); c = new ScrollView(this); c.setLayoutParams(lp2); //c.setBackgroundColor(Color.CYAN); c.setBackgroundColor(Color.argb(65, 53, 52, 52)); //idsc = c.getId(); a.addView(c); LinearLayout d = new LinearLayout(this); d.setLayoutParams(lp1); //d.setBackgroundResource(R.drawable.background0); c.addView(d); TextView e = new TextView(this); LinearLayout.LayoutParams lp3 = new LinearLayout.LayoutParams(730, 800); e.setLayoutParams(lp1); e.setText(var.phraseKey); d.addView(e); vf.addView(a); } } </code></pre> <p>The result that i want like this : <a href="http://img577.imageshack.us/img577/7577/20120620163458.jpg" rel="nofollow">example that i want to build in android</a></p> <p>and this is xml</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/fl1" &gt; &lt;ViewFlipper android:id="@+id/pages" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@android:color/transparent" android:layout_gravity="top" &gt; &lt;/ViewFlipper&gt; &lt;/FrameLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload