i have a little problem with an little android project here.
every time i load a certain project, VS will crash after some seconds. well... i've added each class into a new project and opend it to see when VS crashes, but i figured out, that not the classes were the problem, the layouts made VS crash. the two following(almost exactly the same) codes made it crash seperatly. could you please tell me what is wrong with them?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<TableLayout
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/tableLayout1">
<TableRow
android:id="@+id/tableRow1">
<TextView
android:text="@string/lbEqID"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/lbEqID" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/lbEqIDVar" />
</TableRow>
<TableRow
android:id="@+id/tableRow2">
<TextView
android:text="@string/lbEqDesc"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/lbEqDesc" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/lbEqDescVar" />
</TableRow>
<TableRow
android:id="@+id/tableRow3">
<TextView
android:text="@string/lbTaskID"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/lbTaskID" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/lbTaskIDVar" />
</TableRow>
<TableRow
android:id="@+id/tableRow4">
<TextView
android:text="@string/lbTaskDesc"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/lbTaskDesc" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/lbTaskDescVar" />
</TableRow>
<TableRow
android:id="@+id/tableRow5">
<TextView
android:text="@string/lbTaskDate"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/lbTaskDate" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/lbTaskDateVar" />
</TableRow>
</TableLayout>
</LinearLayout>
and this one
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content">
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/textView1"
android:layout_column="0" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/textView11"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:id="@+id/tableRow3" />
<TableRow
android:id="@+id/tableRow4">
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/textView12" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/textView13"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
</TableRow>
<TableRow
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/tableRow5" />
<TableRow
android:id="@+id/tableRow6">
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/textView26" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="2"
android:id="@+id/textView28"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
</TableRow>
<TableRow
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/tableRow7" />
<TableRow
android:id="@+id/tableRow8">
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_column="0"
android:id="@+id/textView27" />
<TextView
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/textView29"
android:layout_column="2"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
</TableRow>
</TableLayout>
</LinearLayout>