このサイトは初めてですので、フォーマットの問題をお許しください。私の問題は、xmlドキュメントのグラフィカルレイアウトタブでxml TableLayoutに行を追加しようとすると、eclipseでこのエラーが発生することです。私のエラーは次のとおりです
Exception raised during rendering: / by zero
Exception details are logged in Window > Show View > Error Log
これが私のXMLコードです。何らかの理由で、行がmain.xmlファイルに自動的に追加されても、グラフィックレイアウトにエラーが表示されます。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:padding="5dp"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
</TableLayout>
私が間違っていることについて何かアイデアがあれば、またはもっと情報が必要な場合は私に知らせてください。