scrollview 自动定位到顶部
利用获取焦点的方式定位到最顶部的组件或layout
rl_layout = (RelativeLayout) rootView.findViewById(R.id.rl_layout);//
scrollview的子组件
rl_layout.setFocusable(true);
rl_layout.setFocusableInTouchMode(true);
rl_layout.requestFocus();