android input method pop out the top title bar is not

Program: Use scrollview wrapped and set the properties
    Android: fadeScrollbars = "to true"
        Android: fillViewport = "to true"
    do not use android: scrollbars = "none"
    if you do not show a scroll bar, which is provided in the code
    ScrollView sc = (ScrollView) view .findViewById (R.id.sc);
        sc.setVerticalScrollBarEnabled (to false);
        sc.setHorizontalScrollBarEnabled (to false);

Scheme 2: Do not set the style theme for activity in AndroidManifest notitle
    disposed in requestWindowFeature onCreate method directly (Window.FEATURE_NO_TITLE);
    do not use android: scrollbars = "none"
    if no scroll bars provided in the code inside
    ScrollView sc = (the ScrollView) view.findViewById (R.id.sc);
        sc.setVerticalScrollBarEnabled (to false);
        sc.setHorizontalScrollBarEnabled (to false);
 

Published an original article · won praise 1 · views 3005

Guess you like

Origin blog.csdn.net/sar1618/article/details/81362451