- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
故事是这样的:
我正在尝试在 Android Studio 中构建猜谜游戏。用户必须猜测一个介于 0 和 1000 之间的数字。每次用户猜测时,计算机都会告诉您猜测是小于实际数字(冷)还是大于实际数字(热)。我决定让用户在 editTextView 中输入他的猜测。我将 onFocus
事件监听器绑定(bind)到 editTextView,这样当用户按下 enter 或点击其他地方时,它会将猜测提交给计算机。我在模拟器中运行了代码,并从控制台收到了一些类似于以下内容的消息:
W/ViewRootImpl:由于没有窗口焦点而取消事件:MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=605.52246, y[0]=969.4336, toolType [0]=TOOL_TYPE_FINGER,buttonState=0,metaState=0,flags=0x0,edgeFlags=0x0,pointerCount=1,historySize=0,eventTime=238238,downTime=235422,deviceId=0,source=0x1002
public class GameActivity extends AppCompatActivity implements View.OnFocusChangeListener {
public final int MAXNUMBER = 1000;
private int theAnswer; // stores the number the user has to guess
public int guesses = 0;
public EditText userGuess;
public TextView hotOrCold;
public String isHotOrCold(int userInput){
return theAnswer < userInput?"Hot":"Cold"; // Utility to tell the user if his guess is greater than or less than the number.
}
public boolean isValidInput(int num){
return num >= 0 && num <= MAXNUMBER;
}
public void resetGame(){
guesses = 0;
theAnswer = (int) (Math.random() * (MAXNUMBER + 1));
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_game);
userGuess = (EditText)findViewById(R.id.userGuess);
hotOrCold = (TextView) findViewById(R.id.hotOrCold);
resetGame();
userGuess.setOnFocusChangeListener(this);
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
/* When focus is lost check that the text field
* has valid values.
*/
Log.i("","RAN!");
if (!hasFocus) {
guesses++;
int userInput = Integer.valueOf(userGuess.getText().toString()); // get user input
Log.i("userInput is: ",userInput+"");
if (isValidInput(userInput)){
if (theAnswer == userInput){
Toast.makeText(getApplicationContext(),"Congrats! The number was: "+userInput+". You got it in " + guesses + " guesses!",Toast.LENGTH_LONG); // Tell user he got it right
hotOrCold.setText("Hot Or Cold"); // set text to default
resetGame();
} else {
hotOrCold.setText(isHotOrCold(userInput)); // Tells user if he is hot or cold.
}
} else {
// do nothing
}
} else {
Log.i("Did Run","");
}
}
}
这是生成消息的代码。如果您需要更多信息或希望我详细说明某些内容,请告诉我!
假设 ID 正确,并且程序中的所有 View 都存在于 Activity 中。似乎函数 onFocusChange
没有在用户按下 enter 键或更改焦点时运行。
编辑:当我打开 edittext 元素上的 focusable 属性时出现了一个新错误。这是错误:
W/ResourceType: Failure getting entry for 0x01080346 (t=7 e=838) (error -75)
[ 07-13 12:54:05.572 2725: 2725 I/ ]
RAN!
它只在程序开始时发生一次
以下代码提供代码链接到的 Activity 。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.alexander.guessinggame.GameActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Hot or Cold"
android:id="@+id/hotOrCold"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textIsSelectable="false"
android:textSize="50sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="*Hot:too big, cold:too small"
android:id="@+id/textView3"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:textIsSelectable="false"
android:textSize="17sp" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:ems="10"
android:id="@+id/userGuess"
android:layout_above="@+id/textView3"
android:layout_centerHorizontal="true"
android:layout_marginBottom="111dp"
android:numeric="integer"
android:selectAllOnFocus="true"
android:editable="true"
android:focusableInTouchMode="true"
android:focusable="true"
android:enabled="true"
android:singleLine="true"
android:clickable="true"
android:maxLength="4" />
</RelativeLayout>
如果有任何需要,请尽管问我!
谁能告诉我以下错误是什么意思?当我点击编辑文本框时,它们就会出现。
W/EGL_emulation:eglSurfaceAttrib 未实现
W/OpenGLRenderer:无法在表面 0xa9fc6300 上设置 EGL_SWAP_BEHAVIOR,错误=EGL_SUCCESS
E/Surface:getSlotFromBufferLocked:未知缓冲区:0xae3f3fb0
最佳答案
你可以覆盖:
onKeyUp(int keyCode, KeyEvent event)
关于android - 由于没有窗口焦点而取消事件 : MotionEvent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38341339/
我需要一些帮助。这都是关于选项卡索引的。我有一个使用 document.getElementById("name").focus(); 的 JavaScript,其中 id="name"的 textb
这是我的第一篇文章,如果您想了解更多信息,请告诉我! 我正在使用选择列表和 jQuery Accordion 。当用户从列表中选择一个值时,它会使用 activate 方法打开折叠面板的相关部分。 除
JQM 1.3.2/ASP.NET MVC 4 当选择一个值时,焦点没有正确设置到输入字段,我错过了什么? 周围的典型 jqm-shadow 没有从选择中移除,输入得到阴影效果,但光标没有设置到输入字
我正在为 Android 开发一个播放列表应用程序,它有一个包含歌曲名称 (TextView) 作为其列表项的 ListView。 随着歌曲的播放,我想突出显示 ListView 中的项目,直到歌曲结
我在这里不知所措,以前从来没有遇到过这个问题。 我无法让 focus() 在任何浏览器中工作。我正在使用 jquery,甚至不能让它与标准的 javascript 一起工作。我也尝试添加超时但仍然没有
登录后我有一个文本字段。登录后光标将自动聚焦在该文本字段上。如何验证该文本字段上是否存在光标/焦点? 文本框的HTML代码如下: 最佳答案 您也可以尝试直接的 webdriver 方法: drive
我有一个框架和一个面板。我永久删除面板并添加另一个面板。添加新面板后,我需要 JTextField 来获得焦点。我该怎么做? 我尝试了 panel.requestFocus() 方法,但没有成功。 示
这个问题在这里已经有了答案: 关闭 13 年前。 Possible Duplicate: Trouble with jquery lavalamp 出于某种原因,无论我点击哪个链接,我的背景颜色都会
在我的表单验证中,在提交时,我正在验证表单,并找到未填充的元素并使用此函数进行聚焦:工作正常 switch (tagName) { case 'TEXT': if (!actualVa
我最近构建了一个 JS/CSS 模态系统。该元素使用的是 Bootstrap 模式,但通过在其中放置无法滚动或无法正确聚焦在移动设备上的表单和大量内容,将其推向了极限。 可以触发模态系统here单击大
我正在建立一个网站,但我想将图片放在背景中,但我无法将其放在我想要的位置。 我希望网页上图像的“焦点”位于图像中心几像素处。宽度我都能看出来,但是高度没有。 图像分辨率为“5760x3840px”。
这个问题在这里已经有了答案: using :focus pseudo class on li or other element else than a,input,button, etc (2 个
每当我创建编辑器的另一个实例(在我的例子中,通过 onkeypress 事件),我就会失去对创建新编辑器时正在输入的编辑器的关注。我怎样才能防止所有编辑都失去对任何事件的关注? 最佳答案 为此,Qui
我试图将焦点放在一个字段上,更改文本的颜色,但无论我尝试什么:它都不起作用。以下是 HTML: .register-section input:focus + .register-section la
我已经为微调器选择的变化设置了一个监听器。在监听器中,我想关注一个 EditText 字段。我使用了以下代码: text_other_msg.setFocusable(true); 它不起作用。我还尝
我在表单屏幕上有几个 UITextField 输入,其中一些有一个数字键盘显示,通过自定义弹出窗口显示。当用户在字段中前进时,我们会根据需要关闭或打开弹出窗口。在 iOS 11 中,似乎“第一响应者”
我在 jQueryUI 中输入焦点时遇到问题。我在按钮上使用了 hover() 方法并且它正在工作,但是输入上的 focus() 不起作用。我不知道为什么。这是代码和 fiddle $(documen
有没有办法在自动对焦完成后随时获取对焦点? 在 Apple 的示例代码中,他们使用: - (void)subjectAreaDidChange:(NSNotification *)notifi
如果我的焦点不在 textField 上,如何移除 NSTextField 上的焦点? 我有一个 NSTextField,我设置了操作:编辑结束时发送。单击 textField 后,当我单击 View
如何通过 jQuery 实现这一点? 当用户单击表单中的任何输入时,它就会获得焦点。当用户从任何输入中单击表单外时,它会变得模糊,但是,在表单本身的输入之间进行 Tab 键切换之间不会触发模糊。 对于
我是一名优秀的程序员,十分优秀!