Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/vb.net/16.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 字母在安卓键盘上弹出_Android_Android Edittext - Fatal编程技术网

Android 字母在安卓键盘上弹出

Android 字母在安卓键盘上弹出,android,android-edittext,Android,Android Edittext,我的应用程序中有以下编辑文本: <EditText android:id="@+id/text_url_servidor" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentStart="tr

我的应用程序中有以下编辑文本:

<EditText
        android:id="@+id/text_url_servidor"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="10dp"
        android:hint="@string/text_url"
        android:singleLine="true"
        android:textSize="7pt" />


当我运行应用程序时,第一个会显示字母弹出窗口,但第二个不会。它们在不同的xml布局中。两者都在相对论的框架内。唯一的区别是第一个显示在对话框中。为什么第二个不将字母显示为弹出窗口?谢谢。

我想这可能是因为android:password=true。请删除它,然后再试一次。我真傻!谢谢:4分钟,我接受
  <EditText
                android:id="@+id/login_password"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/login_username"
                android:hint="@string/login_password"
                android:password="true"
                android:singleLine="true"/>