Android ScrollView

ScrollView 滚动视图

滚动视图用于为其它组件添加滚动条,在默认的情况下,当窗体中内容比较多,而一屏显示不下时,
超出的部分不能被用户所看到.因为Android的布局管理器本身没有提供滚动屏幕的功能.如果
要让其滚动,就要使用滚动视图ScrllView.

滚动视图是FrameLayout的子类,因此,在滚动视图中,可以添加任何想要放入其中的组件,但是一
个滚动视图中只能放一个组件,如果要放置多个,可以先放一个存布局管理器.再将要放置的组件
放置到该布局管理器中,在滚动视图中,使用比较多的是线性布局管理器.

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none" > <LinearLayout
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" > </LinearLayout> </ScrollView>

activity_main.xml

 public class MainActivity extends Activity {

     ScrollView view;
LinearLayout ll;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); view = (ScrollView) findViewById(R.id.scrollview);
ll = (LinearLayout) findViewById(R.id.ll);
for (int i = 0; i < 20; i++) {
ImageView img = new ImageView(this);
img.setPadding(20, 20, 20, 20);
img.setImageResource(R.drawable.ic_launcher);
ll.addView(img);
} //滑动到指定位置
int width = view.getWidth();
Log.e("TAG", width+"");
final long startTime = System.currentTimeMillis(); //这个方法必须等待view完全显示,post延迟操作
view.post(new Runnable() { @Override
public void run() {
int width = view.getWidth();
Log.e("TAG", width+":"+(System.currentTimeMillis()-startTime));
//滾到底部
view.fullScroll(ScrollView.FOCUS_DOWN);
}
}); }
}

MainActivity.java

Android ScrollView

上一篇:iOS 轻击、触摸和手势的检测


下一篇:php 数组去除空值