安卓实现Iphone的图片拖动效果
所需要的技术点如下:Android.content.Context 、Android.widget.BaseAdapter、Android.widget.ImageView等通常会用在设计相册、图片类型的选择器上。
在开始之前,必须了解什么是Context以及widget里的 BaseAdpater ,在Acitivity当中,Context就如同是张Canvas画布,随时等着被处理或覆盖。
示例运行结果如图:
主程序中较为重要的部分是在其中创建一个继承自BaseAdapter的ImageAdapter方法,这个ImageAdapter的存在目的,是为了要暂存欲显示的图片,并作为Gallery控件图片的源引用(在这里我们可以用.Net的Ado.Net来理解 比如把BaseAdpater理解成SqlDataAdapter的数据适配器,而我们要填充的是Gallery的一个方法为setAdapter 可以暂时理解成Dataset 这样子应该好理解一点)OK,现在到了我们代码实现功能的步骤了:
import android.app.Activity; import android.os.Bundle; import android.content.*; import android.graphics.*; import android.view.View; import android.view.ViewGroup; import android.widget.*; public class ImageGallery extends Activity { private TextView mTextView; private Gallery mGallery; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mTextView=(TextView)findViewById(R.id.TextView01); mGallery=(Gallery)findViewById(R.id.Gallery01); mTextView.setText(R.string.about); mTextView.setTextColor(Color.BLUE); mGallery.setAdapter(new ImageApdater(this)); } public class ImageApdater extends BaseAdapter{ //类成员myContext为context父类 private Context myContext; private int[] myImageIds={ R.drawable.a, R.drawable.b, R.drawable.c, R.drawable.d, R.drawable.e }; //构造函数,有一个参数,即要存储的Context public ImageApdater(Context c) { // TODO Auto-generated constructor stub this.myContext=c; } //返回所有的图片总数量 @Override public int getCount() { // TODO Auto-generated method stub return this.myImageIds.length; } //利用getItem方法,取得目前容器中图像的数组ID @Override public Object getItem(int position) { // TODO Auto-generated method stub return position; } @Override public long getItemId(int position) { // TODO Auto-generated method stub return position; } //取得目前欲显示的图像的VIEW,传入数组ID值使之读取与成像 @Override public View getView(int position, View convertView, ViewGroup parent) { // TODO Auto-generated method stub ImageView i=new ImageView(this.myContext); i.setImageResource(this.myImageIds[position]); i.setScaleType(ImageView.ScaleType.FIT_XY); //i.setLayoutParams(new Gallery.LayoutParams(120,120)); //设置高度和宽度 return i; } } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。