Note that there are some explanatory texts on larger screens.

plurals
  1. POwrong arguments were passed to displayImage method in universal-Image
    primarykey
    data
    text
    <p>I used this library lots of time. But I get an exception from Eclipse that the title name. Codes are here;</p> <pre><code>public class HaberDetay extends Activity { private HaberlerItems haberitem = null; private ImageLoader imageloader; private ImageView haberImage; private TextView lblTitle, lblDescription, lblTarih; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_haber_detay); imageloader = ImageLoader.getInstance(); ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder( getApplicationContext()).build(); imageloader.init(config); lblTitle = (TextView)findViewById(R.id.lblTitle); lblDescription = (TextView)findViewById(R.id.lblDescription); lblTarih = (TextView)findViewById(R.id.lblTarih); haberImage = (ImageView)findViewById(R.id.imgHaber); haberitem = (HaberlerItems)getIntent().getSerializableExtra("haberitem"); if(haberitem != null){ lblTarih.setText(haberitem.getDateAdded()); lblTitle.setText(haberitem.getTitle()); lblDescription.setText(Html.fromHtml(haberitem.getDescription())); imageloader.displayImage(haberitem.getImageUrl(), haberImage); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.haber_detay, menu); return true; } </code></pre> <p>}</p> <p>you know displayImage is a method of this class. I cant see any error or exception. What can i do?</p>
    singulars
    1. This table or related slice is empty.
    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.
    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