Android中有一个Activity
,有两个元素:
EditText
ListView
当Activity
启动时,EditText
立即有输入焦点(闪烁光标)。我不希望任何控件在启动时具有输入焦点。我试过了:
EditText.setSelected(false);
没有运气。如何在EditText
开始时说服Activity
不选择自己?
答案 0 :(得分:2338)
Luc和Mark的优秀答案但缺少一个好的代码示例。像以下示例一样将标记android:focusableInTouchMode="true"
添加到<LinearLayout>
将解决问题。
<!-- Dummy item to prevent AutoCompleteTextView from receiving focus -->
<LinearLayout
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"/>
<!-- :nextFocusUp and :nextFocusLeft have been set to the id of this component
to prevent the dummy from receiving focus again -->
<AutoCompleteTextView android:id="@+id/autotext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:nextFocusUp="@id/autotext"
android:nextFocusLeft="@id/autotext"/>
答案 1 :(得分:1630)
实际问题是你根本不希望它有焦点吗?或者你不希望它因为聚焦EditText
而显示虚拟键盘?我并没有真正看到EditText
关注start的问题,但是当用户没有明确要求关注EditText
(并打开)时,打开softInput窗口肯定是个问题。结果键盘。)
如果是虚拟键盘的问题,请参阅AndroidManifest.xml
<activity> element文档。
android:windowSoftInputMode="stateHidden"
- 在进入活动时始终隐藏它。
或android:windowSoftInputMode="stateUnchanged"
- 不要更改它(例如,如果尚未显示显示,但如果在进入活动时它已打开,请将其保持打开状态)。
答案 2 :(得分:1083)
存在一种更简单的解决方案。在父布局中设置这些属性:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true" >
现在,当活动开始时,此主要布局将默认获得焦点。
此外,我们可以通过再次将焦点放在主布局上,在运行时从子视图中删除焦点(例如,在完成子编辑后),如下所示:
findViewById(R.id.mainLayout).requestFocus();
来自Guillaume Perrot的好评:
android:descendantFocusability="beforeDescendants"
似乎是 默认值(整数值为0)。它只是通过添加工作android:focusableInTouchMode="true"
。
实际上,我们可以看到beforeDescendants
方法中的ViewGroup.initViewGroup()
设置为默认值(Android 2.2.2)。但不等于0. ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;
感谢Guillaume。
答案 3 :(得分:410)
我找到的唯一解决方案是:
android:focusable="true"
和android:focusableInTouchMode="true"
EditText
在开始活动后无法获得焦点
答案 4 :(得分:75)
问题似乎来自于我只能在布局的XML form
中看到的属性。
确保在EditText
XML标记内的声明末尾删除此行:
<requestFocus />
那应该是这样的:
<EditText
android:id="@+id/emailField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress">
//<requestFocus /> /* <-- without this line */
</EditText>
答案 5 :(得分:69)
使用其他海报提供的信息,我使用了以下解决方案:
布局XML中的
<!-- Dummy item to prevent AutoCompleteTextView from receiving focus -->
<LinearLayout
android:id="@+id/linearLayout_focus"
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"/>
<!-- AUTOCOMPLETE -->
<AutoCompleteTextView
android:id="@+id/autocomplete"
android:layout_width="200dip"
android:layout_height="wrap_content"
android:layout_marginTop="20dip"
android:inputType="textNoSuggestions|textVisiblePassword"/>
onCreate() 中的
最后,在onResume() private AutoCompleteTextView mAutoCompleteTextView;
private LinearLayout mLinearLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mylayout);
//get references to UI components
mAutoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.autocomplete);
mLinearLayout = (LinearLayout) findViewById(R.id.linearLayout_focus);
}
@Override
protected void onResume() {
super.onResume();
//do not give the editbox focus automatically when activity starts
mAutoCompleteTextView.clearFocus();
mLinearLayout.requestFocus();
}
答案 6 :(得分:66)
尝试使用clearFocus()代替setSelected(false)
。 Android中的每个视图都具有可聚焦性和可选择性,我认为您只想清除焦点。
答案 7 :(得分:65)
以下内容将阻止edittext在创建时获得焦点,但在触摸时会抓住它。
<EditText
android:id="@+id/et_bonus_custom"
android:focusable="false" />
所以你在xml中将focusable设置为false,但键是在java中,你添加了以下监听器:
etBonus.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
v.setFocusable(true);
v.setFocusableInTouchMode(true);
return false;
}
});
因为您返回false,即没有消耗该事件,所以聚焦行为将正常进行。
答案 8 :(得分:55)
我曾单独尝试了几个答案,但重点仍然是EditText。我只是通过使用以下两个解决方案来解决它。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true" >
(Silver https://stackoverflow.com/a/8639921/15695参考)
并删除
<requestFocus />
在EditText
(来自floydaddict https://stackoverflow.com/a/9681809的参考资料)
答案 9 :(得分:42)
这些解决方案都不适合我。我修复自动对焦的方式是:
<activity android:name=".android.InviteFriendsActivity" android:windowSoftInputMode="adjustPan">
<intent-filter >
</intent-filter>
</activity>
答案 10 :(得分:39)
简单的解决方案:
在AndroidManifest
Activity
标记中使用
android:windowSoftInputMode="stateAlwaysHidden"
答案 11 :(得分:35)
最迟但最简单的答案,只需在XML的父布局中添加它。
android:focusable="true"
android:focusableInTouchMode="true"
Upvote是否对你有所帮助!快乐编码:)
答案 12 :(得分:33)
以下内容适用于Manifest
。写,
<activity
android:name=".MyActivity"
android:windowSoftInputMode="stateAlwaysHidden"/>
答案 13 :(得分:28)
我需要以编程方式清除所有字段的焦点。我刚刚在主要布局定义中添加了以下两个语句。
myLayout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
myLayout.setFocusableInTouchMode(true);
就是这样。马上解决了我的问题。谢谢,西尔弗,指出我正确的方向。
答案 14 :(得分:26)
在android:windowSoftInputMode="stateAlwaysHidden"
文件的活动代码中添加Manifest.xml
。
答案 15 :(得分:22)
如果您对自己的活动有另一种观点,例如ListView
,您也可以这样做:
ListView.requestFocus();
在onResume()
中从editText
获取焦点。
我知道这个问题已得到解答,但只是提供了一个对我有用的替代解决方案:)
答案 16 :(得分:21)
在onCreate
方法中添加以下内容:
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
答案 17 :(得分:20)
在第一个可编辑字段之前尝试此操作:
<TextView
android:id="@+id/dummyfocus"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/foo"
/>
----
findViewById(R.id.dummyfocus).setFocusableInTouchMode(true);
findViewById(R.id.dummyfocus).requestFocus();
答案 18 :(得分:16)
由于我不喜欢用与功能相关的东西污染XML,我创建了这个方法,“透明地”从第一个可聚焦视图中窃取焦点,然后确保在必要时自行移除!
public static View preventInitialFocus(final Activity activity)
{
final ViewGroup content = (ViewGroup)activity.findViewById(android.R.id.content);
final View root = content.getChildAt(0);
if (root == null) return null;
final View focusDummy = new View(activity);
final View.OnFocusChangeListener onFocusChangeListener = new View.OnFocusChangeListener()
{
@Override
public void onFocusChange(View view, boolean b)
{
view.setOnFocusChangeListener(null);
content.removeView(focusDummy);
}
};
focusDummy.setFocusable(true);
focusDummy.setFocusableInTouchMode(true);
content.addView(focusDummy, 0, new LinearLayout.LayoutParams(0, 0));
if (root instanceof ViewGroup)
{
final ViewGroup _root = (ViewGroup)root;
for (int i = 1, children = _root.getChildCount(); i < children; i++)
{
final View child = _root.getChildAt(i);
if (child.isFocusable() || child.isFocusableInTouchMode())
{
child.setOnFocusChangeListener(onFocusChangeListener);
break;
}
}
}
else if (root.isFocusable() || root.isFocusableInTouchMode())
root.setOnFocusChangeListener(onFocusChangeListener);
return focusDummy;
}
答案 19 :(得分:15)
迟到,但也许有帮助。在布局顶部创建一个虚拟EditText,然后在myDummyEditText.requestFocus()
onCreate()
<EditText android:id="@+id/dummyEditTextFocus"
android:layout_width="0px"
android:layout_height="0px" />
这似乎与我期望的一样。不需要处理配置更改等。我需要这个用于具有冗长TextView(指令)的Activity。
答案 20 :(得分:13)
在父版布局中写下这一行......
android:focusableInTouchMode="true"
答案 21 :(得分:13)
是的,我做了同样的事情 - 创建一个'虚拟'线性布局,获得初始焦点。此外,我设置了“下一个”焦点ID,因此用户在滚动一次后无法再对焦:
<LinearLayout 'dummy'>
<EditText et>
dummy.setNextFocusDownId(et.getId());
dummy.setNextFocusUpId(et.getId());
et.setNextFocusUpId(et.getId());
很多工作只是为了摆脱对视图的关注..
由于
答案 22 :(得分:12)
对我来说,在所有设备上运行的是:
<!-- fake first focusable view, to allow stealing the focus to itself when clearing the focus from others -->
<View
android:layout_width="0px"
android:layout_height="0px"
android:focusable="true"
android:focusableInTouchMode="true" />
在有问题的焦点视图之前把它作为一个视图,就是这样。
答案 23 :(得分:10)
这是最完美,最简单的解决方案。我总是在我的应用中使用它。
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
答案 24 :(得分:9)
我做的最简单的事情是将焦点放在onCreate的另一个视图上:
myView.setFocusableInTouchMode(true);
myView.requestFocus();
这使软键盘停止运行,EditText中没有光标闪烁。
答案 25 :(得分:8)
<TextView
android:id="@+id/TextView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
style="@android:style/Widget.EditText"/>
答案 26 :(得分:8)
将此代码写入您不想打开键盘的Manifest
中的Activity
文件中。
android:windowSoftInputMode="stateHidden"
清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.projectt"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="24" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Login"
**android:windowSoftInputMode="stateHidden"**
android:label="@string/app_name" >
</activity>
</application>
</manifest>
答案 27 :(得分:7)
在您的Activity的onCreate
处,只需在EditText元素上添加use clearFocus()
即可。
例如,
edittext = (EditText) findViewById(R.id.edittext);
edittext.clearFocus();
如果您想将焦点转移到另一个元素,请使用requestFocus()
。
例如,
button = (Button) findViewById(R.id.button);
button.requestFocus();
答案 28 :(得分:7)
您可以通过创建布局宽度和高度设置为EditText
的虚拟0dp
来实现此目的,并请求焦点到该视图。
在xml布局中添加以下代码段:
<EditText
android:id="@+id/editText0"
android:layout_width="0dp"
android:layout_height="0dp"
android:hint="@string/dummy"
android:ems="10"
>
<requestFocus />
</EditText>
答案 29 :(得分:6)
请务必从xml中的"<requestFocus />"
标记中删除行EditText
。
<EditText
android:id="@+id/input"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<requestFocus /> <!-- remove this line -->
</EditText>
答案 30 :(得分:6)
隐藏键盘的最简单方法是使用setSoftInputMode
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
或者您可以使用InputMethodManager并隐藏这样的键盘。
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
答案 31 :(得分:6)
当您的活动打开时,键盘会自动显示,从而导致EditText聚焦。您可以通过在manifest.xml文件的活动标记中写入以下行来禁用键盘。
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
答案 32 :(得分:5)
当我按下按钮时,我使用以下代码阻止EditText窃取焦点。
addButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
View focused = internalWrapper.getFocusedChild();
focused.setVisibility(GONE);
v.requestFocus();
addPanel();
focused.setVisibility(VISIBLE);
}
});
基本上,隐藏编辑文本然后再次显示。这对我有用,因为EditText在视图中不,因此它是否显示无关紧要。
您可以尝试隐藏并连续显示它,看看是否有助于它失去焦点。
答案 33 :(得分:4)
View current = getCurrentFocus();
if (current != null)
current.clearFocus();
答案 34 :(得分:4)
/**
* set focus to top level window
* disposes descendant focus
* disposes softInput
* */
public static void topLevelFocus(Context context){
if(Activity.class.isAssignableFrom(context.getClass())){
ViewGroup tlView = (ViewGroup) ((Activity) context).getWindow().getDecorView();
if(tlView!=null){
tlView.setFocusable(true);
tlView.setFocusableInTouchMode(true);
tlView.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
}
}
}
答案 35 :(得分:3)
EditText
内的 ListView
无效。当您使用TableLayout
时,最好将EditText
与自动生成的行一起使用。
答案 36 :(得分:3)
试
edit.setInputType(InputType.TYPE_NULL);
edit.setEnabled(false);
答案 37 :(得分:3)
最简单的方法是在 Manifest.xml 文件的活动代码中添加android:windowSoftInputMode="stateAlwaysHidden"
答案 38 :(得分:2)
<EditText
android:layout_width="match_parent"
android:layout_height="100dp"
android:id="@+id/etComments"
android:hint="Comments.."
android:textSize="14dp"
android:focusable="false"
android:textStyle="italic"/>
答案 39 :(得分:2)
这样做并完成你的工作!
android:focusable="true"
android:focusableInTouchMode="true"
答案 40 :(得分:2)
从xml文件
中的编辑文本中删除<requestFocus />
<EditText
android:id="@+id/emailField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress">
//`<requestFocus />` /* <-- remove this tags */
</EditText>`
答案 41 :(得分:2)
我有这样的问题,这是由于我的选择器。第一个状态是焦点甚至thoshh我的视图被禁用它采取焦点状态,因为它是第一个匹配和使用它。您可以将第一个状态设置为禁用,如下所示:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/text_field_disabled" android:state_enabled="false"/>
<item android:drawable="@drawable/text_field_focused" android:state_focused="true"/>
<item android:drawable="@drawable/text_field_normal"/>
答案 42 :(得分:2)
在onCreate()
中禁用它
final KeyListener edtTxtMessageKeyListener = edtTxtMessage.getKeyListener();
edtTxtMessage.setCursorVisible(false);
edtTxtMessage.setKeyListener(null);
最后在EditText的onClick()中启用它
edtTxtMessage.setCursorVisible(true);
edtTxtMessage.setKeyListener(edtTxtMessageKeyListener);
但问题是我们必须先点击twise才能首次使用OnScreenKeyboard。
@Workaround
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0);
在onClick()中也尝试这个:)
答案 43 :(得分:2)
您可以使用请求焦点指定焦点到其他窗口小部件,也可以使用键盘隐藏代码。
答案 44 :(得分:2)
您已编辑文本和列表。在OnStart / On Create中,您应该将重点放在列表视图上:Listview.requestfocus()
答案 45 :(得分:1)
只需在EditText的父级布局中添加android:focusableInTouchMode="true"
,您就可以摆脱这种尴尬的行为。
答案 46 :(得分:1)
您可以将 Editext 设置为禁用焦点属性,现在这可以通过两种方式应用:
您可以禁用可聚焦作为常规属性
或者您可以禁用 FocusableInTouchMode 作为触摸模式(触摸屏)中特定于该视图的属性
默认情况下,如果 Editext 位于该活动中视图堆栈的顶部,则 focusable 属性为 true,例如标题,它将在活动启动时获得焦点。
要禁用 Focusable,您只需将其布尔值设置为 false。
那就是:
android:focusable="false"
要禁用它 FocusableInTouchMode,您只需将其布尔值设置为 false。
那就是:
android:focusable="false"
您只需找到要应用更改的 Textview 并将相应的代码段添加到 XML 文件中的 xml 规范中即可。
或者,您可以单击布局编辑器内的 Textview 并找到显示该 Textview 的所有 xml 属性的侧边栏,然后只需向下滚动到声明“Focusable”和“FocusableInTouchMode”的位置并检查它们为 true 或 false .
答案 47 :(得分:0)
可以通过继承EditText
并覆盖onTouchEvent
来实现。
class NonFocusableEditText: EditText {
constructor(context: Context): super(context)
constructor(context: Context, attrs: AttributeSet?): super(context, attrs)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int): super(context, attrs, defStyleAttr)
override fun onTouchEvent(event: MotionEvent?): Boolean {
return if (isFocusable) super.onTouchEvent(event) else false
}
}
然后,您可以在常规EditText
之类的布局中使用它:
<com.yourpackage.NonFocusableEditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/your_hint"
android:imeOptions="actionDone"
android:inputType="textNoSuggestions" />
答案 48 :(得分:0)
如果要在活动开始时隐藏键盘。然后提及
android:windowSoftInputMode =“ stateHidden”
清单文件中的活动。问题得到解决。
干杯。
答案 49 :(得分:0)
我使用提交按钮
清除所有焦点// xml file
<LinearLayout
...
android:id="@+id/linear_layout"
android:focusableInTouchMode="true"> // 1. make this focusableInTouchMode...
</LinearLayout>
// Activity file
private LinearLayout mLinearLayout; // 2. parent layout element
private Button mButton;
mLinearLayout = findViewById(R.id.linear_layout);
mButton = findViewById(R.id.button);
mButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mLinearLayout.requestFocus(); // 3. request focus
}
});
希望对您有所帮助:)
答案 50 :(得分:0)
简单可靠的解决方案,只需重写此方法即可:
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
View v = getCurrentFocus();
if (v != null &&
(ev.getAction() == MotionEvent.ACTION_UP || ev.getAction() == MotionEvent.ACTION_MOVE) &&
v instanceof EditText &&
!v.getClass().getName().startsWith("android.webkit.")) {
int scrcoords[] = new int[2];
v.getLocationOnScreen(scrcoords);
float x = ev.getRawX() + v.getLeft() - scrcoords[0];
float y = ev.getRawY() + v.getTop() - scrcoords[1];
if (x < v.getLeft() || x > v.getRight() || y < v.getTop() || y > v.getBottom())
hideKeyboard(this);
}
return super.dispatchTouchEvent(ev);
}
public static void hideKeyboard(Activity activity) {
if (activity != null && activity.getWindow() != null && activity.getWindow().getDecorView() != null) {
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(activity.getWindow().getDecorView().getWindowToken(), 0);
}
}
答案 51 :(得分:0)
已经提供了许多可行的答案,但我认为我们可以通过使用以下简单方法来做得更好
//set focus to input field
private fun focusHere() {
findViewById<TextView>(R.id.input).requestFocus()
}
代替R.id.input中的输入,使用其他任何视图ID来设置该视图的焦点。
答案 52 :(得分:-1)
在清单文件中您提到您的活动的行下方添加
android:windowSoftInputMode="stateAlwaysHidden"