I would like to display a sort of ListView with divider lines between each item. Because each row of this list will show a different custom view I thought it would be easier to have a TableLayout instead and use setShowDividers and SHOW_DIVIDER_MIDDLE in order to show that white line between each item.

Why do I get NoSuchMethod exception at setShowDividers?

 TableLayout table = (TableLayout)findViewById(R.id.my_table_layout);
 if( table != null )
 {
      table.setShowDividers(TableLayout.SHOW_DIVIDER_MIDDLE);
 }

I also get the same error if I cast everything to LinearLayout instead.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

What API target are you using? setShowDividers was added in API level 11 (Honeycomb).

link|improve this answer
OH okay, I was using level 10, thank-you I no longer get this exception. However I do not see any divider lines between table rows? Do I have to supply a resource or anything for this to work? – lost_bits1110 Nov 29 '11 at 0:56
I think so, but I've not used it personally. The TableLayout docs show a setDividerDrawable(Drawable) method that should do what you need. – kcoppock Nov 29 '11 at 0:58
Okay, I tried setting the drawable and it does something but certainly does not look right..! I guess this is a separate issue, but yes I needed a later API, thx – lost_bits1110 Nov 29 '11 at 18:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.