답변:
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();
좋은 코멘트 에서 기욤 PERROT :
android:descendantFocusability="beforeDescendants"
기본값 인 것 같습니다 (정수 값은 0 임). 추가하면android:focusableInTouchMode="true"
됩니다.
실제로 우리는 메소드 (Android 2.2.2) beforeDescendants
에서 기본값으로 설정되어 있음을 알 수 있습니다 ViewGroup.initViewGroup()
. 그러나 0과 같지 않습니다.ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;
기 illa에게 감사합니다.
내가 찾은 유일한 해결책은 다음과 같습니다.
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)
. 안드로이드의 모든 관점은 초점과 선택성을 모두 가지고 있으며 초점을 지우고 싶다고 생각합니다.
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;
}
});
이벤트를 소비하지 않고 거짓을 반환하므로 초점 동작이 정상적으로 진행됩니다.
몇 가지 답변을 개별적으로 시도했지만 여전히 EditText에 중점을 둡니다. 아래 솔루션 중 두 가지를 함께 사용하여 문제를 해결했습니다.
<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
의지에 초점이 맞춰 지지만, 그 특성으로 인해 화면에 아무것도 표시 되지 않고 키보드가 표시 되지 않습니다 ...
기능과 관련된 것으로 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;
}
늦었지만 도움이 될 수 있습니다. 다음 전화 레이아웃의 상단에 더미 글고 치기 만들기 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 = (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"
!로 설정하는 것은 어떻습니까 ?