Android键盘自适应方法.

 android键盘老是会挡住,你需要输入的内容。好的解决方法是在:AndroidManifest.xml 当中activity添加   android:windowSoftInputMode="stateVisible|adjustPan"

 

<activity android:name=".MainActivity" android:label="@string/app_name"

 android:windowSoftInputMode="stateVisible|adjustPan"

>

</activity>

 

你可能感兴趣的:(android,移动开发,职场,休闲)