android ScrollView--Linearlayout可以上下拖动

动态添加:
[java]  view plain copy
  1. "1.0" encoding="utf-8"?>    
  2.     xmlns:android="http://schemas.android.com/apk/res/android"    
  3.     android:layout_width="fill_parent"    
  4.     android:layout_height="fill_parent"    
  5.     android:scrollbars="vertical"    
  6.     android:fadingEdge="vertical">    
  7.     
  8.         android:layout_width="fill_parent"    
  9.         android:layout_height="fill_parent"    
  10.         android:orientation="vertical"    
  11.         >    
  12.         
  13.     



动态代码上:

scrollView=new ScrollView(getApplicationContext());
scrollView.setBackgroundColor(getResources().getColor(android.R.color.holo_blue_dark));
scrollView.setScrollbarFadingEnabled(true);

scrollview.addView(XXXX);

值得一提的是XXX只能是一个总的控件或者一个子控件,如果直接添加两个子控件会报错。

转载于:https://www.cnblogs.com/wuwa/p/6191554.html

你可能感兴趣的:(android ScrollView--Linearlayout可以上下拖动)