android键盘挡住界面

AndroidManifest.xml 中设置 android:windowSoftInputMode="stateUnspecified|adjustPan" 不挤压屏幕,反之为把界面挤压上去。

			android:configChanges="keyboardHidden|orientation" android:screenOrientation="portrait"
			android:launchMode="singleTask" android:windowSoftInputMode="stateUnspecified|adjustPan">

		
需要注意的是:如果是TabActivity里面的一个Activity有EditText有软键盘弹出的时候,在该Activity设置没有作用,需要在TabActivity里设置。

你可能感兴趣的:(Android,Android开发)