- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这对我来说是一种令人困惑的行为,我找不到其他人完全有我的问题。
我正在尝试创建一个登录 Activity ,到目前为止,用户名字段给我带来了很多麻烦。无论如何,文本字段都会保持焦点。
如果我在外部单击,它不会失去焦点,我无法单击任何其他字段,也无法关闭键盘。只有后退按钮才能退出。我尝试通过使用 SingleLine
、MaxLines
和 Lines
的每种组合使其成为单行字段....我还尝试使用 ImeOptions/ImeActionId actionNext
也没有效果。
尽管将 SingleLine
设置为 true,但它顽固地保留了继续创建新行的输入按钮。
现在我的 xml 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".LoginActivity"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:paddingTop="@dimen/spacing_huge">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/mini_logo"/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="@dimen/spacing_huge">
<ImageView
android:layout_width="fill_parent"
android:src="@drawable/orange_ring"
android:layout_height="fill_parent"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_centerInParent="true">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/loginUsername"
android:hint="Username"
android:imeOptions="actionNext"
android:singleLine="true"/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/loginPassword"
android:hint="Password"
android:inputType="textPassword"
android:textAlignment="center"
android:maxLines="1"
android:singleLine="true"
android:imeActionId="6"/>
<Button
android:id="@+id/loginButton"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="login!"
android:onClick="userLogin"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
编辑:嗯抱歉,我忘了问这个问题。有人可以告诉我发生了什么事,或者我是否误解了什么或如何解决这个问题? :) 我真的不知道我现在能做什么。谢谢你的帮助。
最佳答案
将 android:maxLines="1"
与 android:inputType="text"
结合使用对您有效。
关于android - actionNext(or any ImeOption) doesn't work on my Edittext, also I can't select any other text field when this particular one is selected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33541737/
如何将以下行分成 3 组,其中“美元”总和为 10。所有行都必须使用,且不得超过一次。 row|dollars 1|1 2|1 3|1 4|1 5|1 6|1 7|3 8|4 9|7 10|10 一个
我试图使用 JSoup 和 Java 来获取满足我的条件的特定标记后的定义列表(或任何标记)的内容。作为示例,我们假设我们有一个 html 文档,如下所示。 PageID: 2816; NS: 0;
我想编写一个应用程序来识别当前的变更集并标记它们。 我知道我们可以通过使用 hg identify 来获取变更集. 获得变更集后,有没有办法标记它? 谢谢 最佳答案 来自 documentation
当在一个元素上触发多个动画时,我如何监听特定的 animationend。在我的例子中,我设计了一个覆盖歌曲列表(包含 li's,当悬停在上面时会触发动画),当单击列表图标时会弹出。然而,问题不在于菜
我目前正在使用来自支持库 (https://developer.android.com/tools/support-library/features.html#v7-palette) 的 Palett
我已将TinyMCE设置为可与“管理”面板一起使用(按照Django Docs http://code.djangoproject.com/wiki/AddWYSIWYGEditor中的说明进行操作)
我通过调用 API 获得响应。就像这样。 [{"id":213132},{"id":241132},{"id":465413},{"id":546351},{"id":164854,"data":[{
我的 makefile 包含这些片段(以及其他片段): SRC = src OBJ = obj DEPS = $(wildcard $(SRC)/*.cpp) # ... all : $(BINARI
当另一个元素包含特定 ID 时,我试图获取一个 jQuery 条件来将类应用于该特定元素。这是我到目前为止所拥有的: $(document).ready(function() { if( $('.c
这个问题已经有答案了: Is floating point math broken? (33 个回答) 已关闭 7 年前。 我想要这样的值 -1,1.02,1.04,1.06,1.08 等...所以在
我正在为寻呼机使用 fragmentpageadapter,我想用新的一组值重新加载特定的 fragment 。 NotifyDataSetcanged 正在重新加载所有 fragment ,我也在使
我有一个名为“checkInGuestUsers”的表,其中有“checkInTime(DATETIME)、checkOutTime(DATETIME)、rooms(varchar)”等列 有特定用户
我正在使用 JMeter 进行负载测试我面临以下问题: 我有一个视频制作网站要测试,我想点击由多个用户创建和播放视频按钮。 最佳答案 本教程介绍了很多用户如何在jmeter中播放 Action ,必须
假设我有以下列表,其中只有字符串。 appliances = ['blender', 'microwave', 'oven', 'toaster'] 如何生成一个由列表组件的元素组成的新列表,该列表仅
我有一个字符串 (Python 2.7.3),它在 Django 中呈现为模板,但我认为这不是 Django 特有的。该字符串来自 docx 文件中的 document.xml 文件。我正在提取呈现它
我正在尝试抓取网站的特定部分 ( https://flightmath.com/from-CDG-to-BLR ),但我无法定位到我需要的元素。 下面是html部分 flight dis
我正在使用 Ubuntu 12。我试图在我的 Ubuntu 机器主目录中搜索单词“SymbolSetThree”。 为此我使用了 grep "SymbolSetThree" /home 简单的显示为
我如何才能获得特定“place_id”的所有图片?。当我检索特定位置的“位置”列表时,我只能访问一个特定的图像“PHOTO_REFERENCE”。。我想通过它的“Places_id”(更具体的搜索)来
我有一个 Student 表,其中包含如下列: | email (PK) | name | 我有一个书 table ,里面有这样的列: | bookid(PK) | title | 我有一个复制表,上
在serverless.yml中,部署配置文件是这样设置的 custom: defaultStage: dev profiles: dev: b***2_dev prod: b***2_pro
我是一名优秀的程序员,十分优秀!