android使用滚动视图很简单,只需几行代码。
之前介绍了android显示图片的两种方法,在使用java文件显示的方法里只需加几行代码即可将其转化为滚动视图,代码如下
import android.app.Activity;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.ScrollView;
public class ImgShow extends Activity {
ScrollView scrollView;//设置滚动视图
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
scrollView = new ScrollView(this);
ImageView imageView = new ImageView(this);
imageView.setImageBitmap(
BitmapFactory.decodeResource(getResources(),
R.drawable.img));
scrollView.addView(imageView);
this.setContentView(scrollView);
}
}
运行即可。
当然scrollView.addView()括号里你也可以加别的,比如TextView。