Answers:
Luc和Mark的出色答案,但是缺少一个好的代码示例。添加标签android:focusableInTouchMode="true"
和android:focusable="true"
父布局(例如LinearLayout
或ConstraintLayout
类似于下面的示例)将解决这个问题。
<!-- 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"/>
android:focusableInTouchMode="true"
覆盖android:focusable="true"
+其他内容,因此在这种情况下android:focusable="true"
是不必要的,可以将其删除。另外,虚拟视图可以是View而不是LinearLayout。这样可以节省处理能力,并且可以避免出现某些警告。因此,我的建议是将虚拟视图替换为<View android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/>
您是否真的不希望集中注意力于实际问题?还是您不希望由于聚焦EditText
?而显示虚拟键盘?我并没有真正看到EditText
专注于开始的问题,但是当用户没有明确要求专注于EditText
(并因此打开键盘)时,打开softInput窗口绝对是一个问题。
如果是虚拟键盘的问题,请参见AndroidManifest.xml
<activity>元素文档。
android:windowSoftInputMode="stateHidden"
-进入活动时始终将其隐藏。
或android:windowSoftInputMode="stateUnchanged"
-请勿更改(例如,如果尚未显示,则不显示它,但如果在进入活动时已打开,则将其保持打开状态)。
EditText
获得关注。实际上,它清楚地表明,这是防止软件键盘IME聚焦自动打开的方式。因为更可能的问题是软键盘意外弹出,而不是焦点本身。如果您的问题是EditText
根本没有重点,那么请使用其他人的答案。
存在一个更简单的解决方案。在父级布局中设置以下属性:
<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();
好评论从纪尧姆·佩罗:
android:descendantFocusability="beforeDescendants"
似乎是默认值(整数值为0)。只需添加即可android:focusableInTouchMode="true"
。
确实,我们可以beforeDescendants
在ViewGroup.initViewGroup()
方法(Android 2.2.2)中看到该设置为默认设置。但不等于0。ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;
多亏纪尧姆。
我发现的唯一解决方案是:
android:focusable="true"
和android:focusableInTouchMode="true"
并且EditText
开始活动后不会获得焦点
问题似乎来自只能在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>
根据其他海报提供的信息,我使用以下解决方案:
在布局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()中
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);
}
最后,在onResume()中
@Override
protected void onResume() {
super.onResume();
//do not give the editbox focus automatically when activity starts
mAutoCompleteTextView.clearFocus();
mLinearLayout.requestFocus();
}
尝试使用clearFocus()而不是setSelected(false)
。Android中的每个视图都具有可聚焦性和可选择性,我认为您只是想清除焦点。
myEditText.clearFocus(); myDummyLinearLayout.requestFocus();
在onResume
活动中致电。这样可以确保旋转手机时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,即不消耗事件,所以聚焦行为将像往常一样进行。
我已经尝试了几个答案,但是重点仍然放在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)
最新但最简单的答案是,只需将其添加到XML的父级布局中即可。
android:focusable="true"
android:focusableInTouchMode="true"
如果有帮助,请支持!快乐编码:)
这些解决方案都不适合我。我解决自动对焦的方法是:
<activity android:name=".android.InviteFriendsActivity" android:windowSoftInputMode="adjustPan">
<intent-filter >
</intent-filter>
</activity>
简单的解决办法:在AndroidManifest
在Activity
标签使用
android:windowSoftInputMode="stateAlwaysHidden"
你可以只设置“可聚焦”和“可聚焦在触摸模式”看重的第一个真正TextView
的layout
。在当活动开始的这种方式TextView
将被集中,但由于其性质,什么也看不到集中在屏幕上,当然,也会有没有键盘显示...
在onCreate
方法中添加以下内容:
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
由于我不想使用与功能相关的东西来污染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;
}
迟了,但可能有帮助。在创建布局的顶部的虚拟的EditText然后调用myDummyEditText.requestFocus()
在onCreate()
<EditText android:id="@+id/dummyEditTextFocus"
android:layout_width="0px"
android:layout_height="0px" />
这似乎符合我的预期。无需处理配置更改,等等。对于具有冗长TextView(指令)的Activity,我需要这样做。
对我来说,在所有设备上起作用的是:
<!-- 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" />
只需将其作为有问题的聚焦视图之前的视图即可,仅此而已。
这是最完美,最简单的解决方案。我一直在我的应用程序中使用它。
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
<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"/>
将此代码写在您不想打开键盘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>
当按下按钮时,我使用以下代码阻止EditText窃取焦点。
addButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
View focused = internalWrapper.getFocusedChild();
focused.setVisibility(GONE);
v.requestFocus();
addPanel();
focused.setVisibility(VISIBLE);
}
});
基本上,隐藏编辑文本,然后再次显示它。这对我有用,因为EditText 不是视图中,因此无论是否显示都没有关系。
您可以尝试隐藏并连续显示它,以查看是否有助于使其失去焦点。
android:focusableInTouchMode="true"
!