- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
问题:在可以处理我的双 Pane Fragment
容器的设备上,两个显示 ListView 和选定的 View 并排显示,EditView android:hint
在显示文本时隐藏输入。但是,在 Motorola XOOM 和 Nexus 7 上,插入文本时 android:hint
不会消失。
更新:我已经解决了 ListView
调整 Activity 大小的问题。由于重绘,它只是看起来 ListView
没有调整大小。但是,我的 EditText
没有隐藏 android:hint
的问题仍然存在。我现在添加了我的问题的更新图像以及下面的更新代码。除非其他人认为适合删除,否则我会保留旧内容以供记录。:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contact_detail_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/chat_camera_button"
style="android:selectableItemBackground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/camera_button" />
<ImageButton
android:id="@+id/chat_text_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@+id/chat_record_button"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/send_text_button" />
<ImageButton
android:id="@+id/chat_record_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:background="@android:color/transparent"
android:focusableInTouchMode="true"
android:longClickable="true"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:src="@drawable/mic_disabled" />
<EditText
android:id="@+id/chat_message_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@+id/chat_text_button"
android:layout_toRightOf="@+id/chat_camera_button"
android:ems="10"
android:hint="@string/message_hint"
android:inputType="textMultiLine|textCapSentences"
android:maxLines="3"
android:minLines="1" />
<ListView
android:id="@+id/messages_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/chat_message_text"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:stackFromBottom="true"
android:transcriptMode="alwaysScroll" />
</RelativeLayout>
更新 [旧]:这似乎只适用于我在家测试的 Droid RAZR。我已经测试了 3。其他人在 Droid RAZR 上有问题吗?
我正在尝试让我的 ListView 和编辑文本在用户输入更多行(最多 3 行)时重新调整大小。但是,出于某种原因,提示并没有消失, ListView 也没有重新调整大小。
另外,当文本在里面时,我的编辑文本中使用的 android:hint 不会消失。
这是错误图像的示例(忽略发送按钮,我不再调整它的大小)
想要它的人的图像:http://i.stack.imgur.com/e7FJJ.png
Black - ListView
White - EditText + Button
Green - Text inside EditText
以下是我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contact_detail_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/details_record_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Send" />
<EditText
android:id="@+id/chat_message_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/details_record_button"
android:ems="10"
android:hint="@string/message_hint"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:inputType="textMultiLine"
android:minLines="1"
android:maxLines="3"
android:textColor="#00FF00"/>
<ListView
android:id="@+id/messages_list"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/chat_message_input"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#000000" />
</RelativeLayout>
最佳答案
在我的例子中,发生这种情况是因为我膨胀了同一布局的多个层。例如,我在 Activity 的 onCreate
中这样做:
setContentView(R.layout.activity_login);
同时也在我的 fragment 中这样做:
View view = inflater.inflate(R.layout.activity_login, container, false);
...
return view;
这将创建 2 个完全重叠的控件。因此,当您在 EditText
控件中键入文本时,您只需将其键入其中一个控件。因此,其中一个显示您键入的文本,而另一个是空的且没有焦点,可以正确显示提示。
因此,解决方案是从 Activity 或所有 fragment 中删除布局。
关于android - EditText 提示不会消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14098597/
我有几个系统使用 docker-compose 并且没有问题。 但是,我在这里有一个“向下”根本不做任何事情的地方。 'up'虽然完美。这是在 MacOS 上。 该项目的昵称是“ Storm ”,脚本
解释起来确实很奇怪,所以就这样...... 我正在从 phpmyadmin 获取包含未转义单引号的数据。我正在尝试转换'至'通过使用Content-Type: text/html;在 php
伙计们?在这里需要一些帮助。我使用委托(delegate)协议(protocol)将一些字符串从“第二个 View Controller ”传回给它的前一个。 我的数组附加了我在委托(delegate
我有以下 eval() 东西: c = Customer() eval("c.name = row.value('customer', '{c}')".format(c=column_name), {
我写了这个测试类: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) public class Candi
我这样写代码: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) @RunWith(SpringJUnit
假设我更改了文件,然后进行 pull 。 Git 会报错,因为本地仓库还没有保存,将被覆盖。如果我然后删除该添加并使文件与以前相同(与远程 repo 相同),那么会发生 pull 吗? 最佳答案 是的
前言 很多同学将虚拟列表当做亮点写在简历上面,但是却不知道如何手写,那么这个就不是加分项而是减分项了。在上一篇文章欧阳教会你 如何实现一个定高虚拟列表 ,但是实际项目中更多的是不定高虚拟列表,这篇文
我正在阅读《Java for Dummies》一书,但遇到了问题。我不明白为什么 @Override 不起作用。我确信这与我的代码有关,因为我之前已经获得了一个多态数组来使用覆盖,但它对我来说太简单了
我从我的项目中提取了这段代码,因为我试图找到我犯的一个错误,该错误使我的 BeginStoryboard 无法自行停止。我尽可能地简化了代码,但仍然没有发现问题。你认为它可能是什么?
这个问题在这里已经有了答案: Difference between char[] and char * in C [duplicate] (3 个答案) 关闭 7 年前。 我想我知道自己问题的答案,
我一直在使用 java 的 Scanner 类时遇到问题。我可以让它很好地读取我的输入,但问题是当我想要输出一些东西时。给定多行输入,我想在完全读取所有输入后只打印一行。这是我用来读取输入的代码:
对于这个问题,我已经用最简单的术语表达了这一点。 如果元素被点击,'active'类被添加到元素,'active'类从其他元素中移除。 但是,如果该元素是“事件的”并且它被第二次单击,则“事件”类不应
这会在桌面上创建一个新文件夹,但不会将文件夹 .pfrom 的内容 move 到文件夹 .pTo。 int main() { SHFILEOPSTRUCT sf = {0}; TCHA
我有一个关于多线程调试 DLL (/MDd) 和多线程调试 (/MTd) 设置的问题。它们之间的区别很明显:一个是使用动态库,一个是使用静态库。当我使用/MDd 编译我的程序时,一切都进行得很好。但是
我的问题是,如果我在页面加载时创建一个克隆变量,jQuery 只会 append 它一次。奇怪! Click to copy This is an element! $(document)
所以...我是一个开发 django 应用程序的新手,但是当我尝试通过 virtualbox heroku 运行 heroku run python manage.py syncdb 时,它一直在下面
我在 Spring Boot 初始化时遇到了问题。我在一个简单的 Spring Boot 项目中有这个结构。 com.project.name |----App.java (Annoted with
我在 www.7hermanosmx.com/menu.php 页面上有以下代码 - 一切正常,除了黄色框(类 menuholder)应该每行三个相互 float 。他们坚决拒绝这样做!我知道我做错了
我正在尝试在我正在构建的小型网站上添加一个下拉菜单。出于某种原因,我可以获得我想要向下滑动到 fadeOut() 的 div 并执行其他类似的操作,但我无法将它获取到 slideDown()。我不知道
我是一名优秀的程序员,十分优秀!