无法在TableLayout中删除textEdit

时间:2012-07-18 17:32:00

标签: android android-edittext

我使用的是Android 4.2和Eclipse indigo(3.7.0)。我创建了一个包含6行的TableLayout。我想使用eclipse中的Graphic Layout在一行中添加TextViewEditText。添加TextView没问题但是当我拖放EditText时,会显示以下错误:

NOTE: This project contains Java compilation errors, which can cause rendering failures for custom views. Fix compilation problems first.
java.util.LinkedHashMap.eldest()Ljava/util/Map$Entry;

我还没有编写任何代码。当我第一次创建项目时,任何代码都是由eclipse生成的。 editText包含在xml中,但图形布局显示有问题。我剪切并粘贴了xml:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:stretchColumns="1,2,3" >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <EditText
                android:id="@+id/editText1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ems="10" >

                <requestFocus />
            </EditText>

        </TableRow>

        <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

        <TableRow
            android:id="@+id/tableRow3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

        <TableRow
            android:id="@+id/tableRow4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

        <TableRow
            android:id="@+id/tableRow5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

        <TableRow
            android:id="@+id/tableRow6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

</TableLayout>

2 个答案:

答案 0 :(得分:1)

我在Eclipse中尝试了你的代码,我没有任何问题。一切正常。在SDK Manager中检查SDK是否是最新的,或者是否所有插件都已更新。图形布局是用户友好的,但不适合开发人员。

答案 1 :(得分:0)

尝试在EditText上添加:

机器人:的inputType = “textNoSuggestions”

Exception in loading layout: java.util.LinkedHashMap.eldest()Ljava/util/Map$Entry;