赞
踩
在使用ScrollView时,有时候页面打开后,会自动滚动到最低部,有时候根本不需要滚动到最底部,而是需要默认显示在最顶部,这个时候只需要在ScrollView中的最外层子控件中添加
android:focusable="true"
android:focusableInTouchMode="true"
即可,这样就可以让ScrollView默认显示在最顶部,而不是最底部了
如下例子:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
a
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。