在頁面中存在EditText的時候,進入默認會彈出鍵盤,解決方式:
1.設置windowSoftInputMode屬性:
adjustUnspecified|stateHidden
2.代碼里面設置:
getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
3.另外一個方式:
<LinearLayout?
android:layout_width="0px"
android:layout_height="0px"
android:focusable="true"
android:focusableInTouchMode="true"/>
用于記錄。