Android:无法输入EditText

时间:2015-02-19 20:04:13

标签: android android-edittext

我不知道为什么但是当我尝试这样做时,我无法在EditText上输入/写入。 EditText的光标不会出现,键盘出现时不是数字键盘。 我有以下部分代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.android.asminhasdespesas.Meta_1Activity">


    <TextView android:text="Test:"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TableLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TableRow>


            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:inputType="number"
                android:textColor="#000000"
                android:cursorVisible="true"
                android:ems="10"
                android:id="@+id/editTextMeta"
                android:layout_gravity="center_vertical"
                android:layout_weight="1"
                android:focusable="true"
                android:focusableInTouchMode="true" />

            <TextView
                android:text="€"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </TableRow>


        <TableRow>

            <Button
                android:id="@+id/buttonNaoColocar"
                android:text="Cancel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="onClick"/>

            <Button
                android:id="@+id/buttonOk"
                android:text="Ok"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="onClick"/>

        </TableRow>

    </TableLayout>

</LinearLayout>

我尝试用&#34; android:cursorVisible =&#34; true&#34; 甚至&#34; android:textColor =&#34;来解决这种情况。 #000000&#34; ,我也试过&#34; android:focusable =&#34; true&#34; &#34; android:focusableInTouchMode =&#34; true&#34;&#34; 但问题仍然存在,我无法在EditText上输入内容。

你能帮帮我吗?

5 个答案:

答案 0 :(得分:2)

您可能需要以下内容:

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="number"
        android:textColor="#000000"
        android:cursorVisible="true"
        android:ems="10"
        android:id="@+id/editTextMeta"
        android:layout_gravity="center_vertical"
        android:focusable="true"
        android:focusableInTouchMode="true" />
  • 移除重量(未使用)

答案 1 :(得分:2)

我是 Android开发领域的新手。好吧,我遇到了同样的问题。所以我只是设置

android:text=""

这导致我在EditText中输入文本时出现。我不确定为什么这样做,但我只是从个人经验中说出来

答案 2 :(得分:1)

检查您是否拥有setOnKeyListener,无论您拥有edittext,并确保在不需要该事件时返回false,例如:

OnKeyListener listener = new OnKeyListener() {
        @Override
        public boolean onKey(View v, int keyCode, KeyEvent event) {
            if (keyCode == KeyEvent.KEYCODE_BACK) {
                //Do something
                return true;
            }
            return false;
        }
    };

答案 3 :(得分:0)

正如其他人所说,上面的代码看起来不会引起问题。这让我想到,当你在java文件中制作对象时,你可能会搞砸了一个设置。我会通过从编辑文本字段中删除大量标记来解决问题,并使其尽可能小,例如

 <EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="number"
    android:id="@+id/editTextMeta"
 />

答案 4 :(得分:0)

我遇到了同样的问题,然后我从editbox的父视图(LinearLayout)中删除了android:focusableInTouchMode =“ true”,并且工作正常