Cade o layout dos detalhes?
Cade o layout dos detalhes?
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/border" >
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/detalhes_das_provas"/>
<TableRow >
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/materia_"/>
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/detalhe_prova_materia"/>
</TableRow>
<TableRow >
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/data_da_prova"/>
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/detalhe_prova_data"/>
</TableRow>
<ListView android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/detalhe_prova_topicos"></ListView>
</TableLayout>