I'm reading this tutorial http://android.amberfog.com/?p=296 . I have just a question: if I definire an xml layout like this one:
<LinearLayout>
<ListView/>
<TextView android:id="@+id/id1" />
<TextView android:id="@+id/id2" />
<ImageView android:id="@+id/id3" />
<TextView android:id="@+id/id4" />
</LinearLayout>
Now, suppose that to show the item type A I use the Textview id1 and id2: For the item type B I use id1 and the imageview id3. For the item type C id1, id2 and id3. For the item type D the id4, etc etc. In a case like this, having textviews and imageviews (in the xml layout) which will not be used by every item in the listview, will it be slow (in performance)? Thank you in advance