Divide By Zero Error In .xml File
In my android application i created and xml file in \res\layout\admin.xml the layouts i used in it are : . . Component
Solution 1:
I think its your 2nd table layout, which doesn't have any columns in it, yet you're trying to stretch them all.
<TableLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:stretchColumns="*"
android:scrollbars="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true" android:id="@+id/pinDetailsTable">
<TableRow>
<!-- <TextView android:text="" android:padding="3dip" style="@style/text_subheader_wh"
/> <TextView android:text="" android:padding="3dip" style="@style/text_subheader_wh"
/> <TextView android:text="" android:padding="3dip" style="@style/text_subheader_wh"
/> <TextView android:text="" android:padding="3dip" style="@style/text_subheader_wh"
/> <TextView android:text="" android:padding="3dip" style="@style/text_subheader_wh"
/> -->
</TableRow>
</TableLayout>
Post a Comment for "Divide By Zero Error In .xml File"