软键盘遮盖布局的解决方法

来源:互联网 发布:手机小视频剪辑软件 编辑:程序博客网 时间:2024/05/23 13:58
1、遮挡布局解决办法
<?xml version=
"1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
                                                                    
    ......
                                                                        
</LinearLayout>
</ScrollView>
2、键盘顶tabhost解决办法
     在清单文件中加入:
     android:theme="@android:style/Theme.NoTitleBar"
     android:configChanges="orientation|keyboard|keyboardHidden|navigation"
     android:windowSoftInputMode="adjustPan|stateVisible"
0 0
原创粉丝点击