回答:
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"
は不要であり、削除することができます。さらに、ダミービューは、LinearLayoutの代わりにビューにすることができます。これは処理能力を節約し、いくつかの警告からあなたを救います。したがって、私の推奨は、ダミーのビューを次のように置き換えることです<View android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/>
まったく焦点を合わせたくない実際の問題はありますか?または、EditText
?をフォーカスした結果として仮想キーボードを表示したくない場合は、私は実際に問題が表示されていないEditText
スタートに持つ焦点が、それは、ユーザーが明示的に集中することを要求していないときsoftInputウィンドウが開いているし、間違いなく問題ですEditText
(結果としてキーボードを開きます)。
仮想キーボードの問題である場合は、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();
Guillaume Perrotからの良いコメント:
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が作成されたときにフォーカスを取得するのを停止しますが、それらにタッチするとそれを取得します。
<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にあります。以下の2つのソリューションを一緒に使用することで解決できました。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true" >
(シルバーからの参照https://stackoverflow.com/a/8639921/15695)
と削除
<requestFocus />
EditTextで
(floydaddictからの参照https://stackoverflow.com/a/9681809)
遅くても簡単な答えは、これをXMLの親レイアウトに追加するだけです。
android:focusable="true"
android:focusableInTouchMode="true"
それがあなたを助けたなら賛成投票してください!ハッピーコーディング:)
簡単な解決策:中AndroidManifest
でのActivity
タグの使用
android:windowSoftInputMode="stateAlwaysHidden"
あなただけ設定することができ、「フォーカス可能」と「タッチモードでフォーカス可能な」最初の真の値にTextView
しますlayout
。このようにして、アクティビティが開始TextView
されると、フォーカスが設定されますが、その性質上、画面には何もフォーカスが表示されず、もちろんキーボードは表示されません ...
以下はで私のために働いたManifest
。書く 、
<activity
android:name=".MyActivity"
android:windowSoftInputMode="stateAlwaysHidden"/>
ファイルのandroid:windowSoftInputMode="stateAlwaysHidden"
アクティビティタグを追加しManifest.xml
ます。
最初の編集可能なフィールドの前にこれを試してください:
<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();
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(手順)を持つアクティビティにこれが必要でした。
私にとって、すべてのデバイスで機能したのはこれです:
<!-- 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>
onCreate
アクティビティの時点で、clearFocus()
EditText要素にuse を追加するだけです。例えば、
edittext = (EditText) findViewById(R.id.edittext);
edittext.clearFocus();
フォーカスを別の要素に転換したい場合は、それを使用requestFocus()
します。例えば、
button = (Button) findViewById(R.id.button);
button.requestFocus();
次のコードを使用して、ボタンが押されたときに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"
?