android 输入法弹出 标题栏不被顶出去

方案一:使用scrollview包裹并设置属性
    android:fadeScrollbars="true"
        android:fillViewport="true"
    不要使用android:scrollbars="none"
    如果不需要显示滚动条,在代码里面设置
    ScrollView sc = (ScrollView) view.findViewById(R.id.sc);
        sc.setVerticalScrollBarEnabled(false);
        sc.setHorizontalScrollBarEnabled(false);

方案二:不要在 AndroidManifest中设置activity的theme的style为notitle
    直接在onCreate方法中设置requestWindowFeature(Window.FEATURE_NO_TITLE);
    不要使用android:scrollbars="none"
    如果不需要显示滚动条,在代码里面设置
    ScrollView sc = (ScrollView) view.findViewById(R.id.sc);
        sc.setVerticalScrollBarEnabled(false);
        sc.setHorizontalScrollBarEnabled(false);
 

你可能感兴趣的:(android-组件)