您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在Android中自定義一個圖片輪播Banner控件,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
功能特點
支持自定義寬高比例
支持自定義圖片切換時間
支持自定義指示點的顏色
支持自定義指示點的背景色
支持自定義指示點的高度
支持是否顯示指示點
支持每個圖片設置不同的點擊事件
使用簡單
<com.xiaomai.bannerview.BannerView android:id="@+id/bannerView" android:layout_width="wrap_content" android:layout_height="wrap_content" app:aspectRatio="1.5" app:defaultSrc="@mipmap/ic_launcher" app:indicatorBackground="@color/white" app:indicatorHeight="50dp" app:indicatorPositionSize="8dp" app:updateTime="3000" />
實現步驟
聲明自定義的屬性
創建一個類繼承RelativeLayout
解析屬性
聲明自定義的屬性
在values/attrs文件中創建自定義的屬性
<resources> <declare-styleable name="BannerView"> <attr name="aspectRatio" format="float" /> <!-- 寬高比 --> <attr name="defaultSrc" format="integer|reference" /> <!-- 占位圖 --> <attr name="updateTime" format="integer" /> <!-- 圖片切換時間 --> <attr name="indicatorVisible" format="boolean" /> <!-- 是否顯示指示器 --> <attr name="indicatorHeight" format="dimension" /> <!-- 指示器的高度 --> <attr name="indicatorBackground" format="color|reference" /> <!-- 指示器的背景顏色 --> <attr name="indicatorPositionSize" format="dimension" /> <!-- 指示點的大小 --> </declare-styleable> </resources>
創建BannerView類
public class BannerView extends RelativeLayout { public BannerView(Context context) { this(context, null); } public BannerView(Context context, AttributeSet attrs) { this(context, attrs, 0); } public BannerView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr);}
在BannerView中聲明變量屬性
private Context context; private Handler handler; private ImageLoader imageLoader; private DisplayImageOptions options; private boolean isHaveHandler = true;// 當用戶點擊輪播圖時,取消handler隊列,也就是取消滾動 // 控件Start private ViewPager viewPager; private LinearLayout indicator;// 指示器 private onItemClickListener listener; // 控件End // 自定義屬性Start private float mAspectRatio; // 寬高比 private int defaultImageResource; // 默認占位圖 private int updateTime; // 圖片切換的時間間隔,默認3秒 private boolean showIndicator; // 是否顯示指示器,默認顯示 private int indicatorHeight;// 指示器的高度,默認35dp private int indicatorPositionSize; // 指示器的大小 private int indicatorBackground; // 指示器的背景顏色 // 自定義屬性End // 數據Start private int imageCount; private int lastPosition; private List<Integer> imageResources; private List<Image> imageUrls; // 數據End
解析自定義屬性的值
接下來為自定義的屬性賦值,在3個參數的構造方法中初始化變量。
public BannerView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); parseCustomAttributes(context, attrs); this.context = context; handler = new Handler(); imageLoader = ImageLoader.getInstance(); options = HSApplication.getDisplayOptions().build(); initViews(); } /** * 解析自定義屬性 * * @param context * @param attrs */ private void parseCustomAttributes(Context context, AttributeSet attrs) { TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.BannerView); mAspectRatio = typedArray.getFloat(R.styleable.BannerView_aspectRatio, 0f); defaultImageResource = typedArray.getResourceId(R.styleable.BannerView_defaultSrc, R.drawable.about_us); updateTime = typedArray.getInt(R.styleable.BannerView_updateTime, 3000); showIndicator = typedArray.getBoolean(R.styleable.BannerView_indicatorVisible, true); indicatorHeight = (int) (typedArray.getDimension(R.styleable.BannerView_indicatorHeight, Utils.dip2px(context, 35))); indicatorBackground = typedArray.getResourceId(R.styleable.BannerView_indicatorBackground, R.color.white_alpha00); indicatorPositionSize = (int) typedArray.getDimension( R.styleable.BannerView_indicatorPositionSize, Utils.dip2px(context, 5)); typedArray.recycle(); } private void initViews() { viewPager = new ViewPager(context); viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() { @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { } @Override public void onPageSelected(int position) { if (showIndicator) { for (int i = 0; i < indicator.getChildCount(); i++) { indicator.getChildAt(i).setSelected(false); } indicator.getChildAt(position % imageCount).setSelected(true); } lastPosition = position; } @Override public void onPageScrollStateChanged(int state) { switch (state) { case ViewPager.SCROLL_STATE_IDLE:// 空閑狀態 if (!isHaveHandler) { isHaveHandler = true; handler.postDelayed(updateRunnable, updateTime); } break; case ViewPager.SCROLL_STATE_DRAGGING:// 用戶滑動狀態 handler.removeCallbacks(updateRunnable); isHaveHandler = false; break; } } }); addView(viewPager, new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); if (showIndicator) { indicator = new LinearLayout(context); indicator.setOrientation(LinearLayout.HORIZONTAL); indicator.setGravity(Gravity.CENTER); indicator.setBackgroundResource(indicatorBackground); RelativeLayout.LayoutParams layoutParams = new LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, indicatorHeight); layoutParams.addRule(ALIGN_PARENT_BOTTOM); addView(indicator, layoutParams); } }
控件和自定義的屬性都經過賦值和初始化了,接下來,該為設置圖片資源了。
public void setImageResources(List<Integer> imageResources) { if (imageResources == null || imageResources.size() == 0) { throw new RuntimeException("圖片資源為空"); } this.imageResources = imageResources; imageCount = imageResources.size(); } public void setImageUrls(List<Image> imageUrls) { if (imageUrls == null || imageUrls.size() == 0) { throw new RuntimeException("圖片地址資源為空"); } this.imageUrls = imageUrls; imageCount = imageUrls.size(); loadImages(); } private void loadImages() { if (showIndicator) { addIndicationPoint(); } viewPager.setAdapter(new MyViewPageAdapter()); viewPager.setCurrentItem(200 - (200 % imageCount)); handler.removeCallbacks(updateRunnable); handler.postDelayed(updateRunnable, updateTime); } /** * 添加指示點到指示器中 */ private void addIndicationPoint() { // 防止刷新重復添加 if (indicator.getChildCount() > 0) { indicator.removeAllViews(); } View pointView; int margin = Utils.dip2px(context, 5f); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( indicatorPositionSize, indicatorPositionSize); layoutParams.setMargins(margin, margin, margin, margin); for (int i = 0; i < imageCount; i++) { pointView = new View(context); pointView.setBackgroundResource(R.drawable.indicator_selector); if (i == lastPosition) { pointView.setSelected(true); } else { pointView.setSelected(false); } indicator.addView(pointView, layoutParams); } } private class MyViewPageAdapter extends PagerAdapter { @Override public int getCount() { return Integer.MAX_VALUE; } @Override public boolean isViewFromObject(View view, Object object) { return view == object; } @Override public Object instantiateItem(ViewGroup container, final int position) { final ImageView imageView = new ImageView(container.getContext()); imageView.setImageResource(defaultImageResource); imageView.setScaleType(ImageView.ScaleType.FIT_XY); final Image image = imageUrls.get(position % imageCount); imageLoader.displayImage(image.getImageUrl(), imageView, options); imageView.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { if (listener != null) { listener.onClick(v, position % imageCount, image.getAction(), image.getUrl()); } } }); container.addView(imageView); return imageView; } @Override public void destroyItem(ViewGroup container, int position, Object object) { container.removeView((View) object); } } private Runnable updateRunnable = new Runnable() { @Override public void run() { viewPager.setCurrentItem(lastPosition + 1); handler.postDelayed(updateRunnable, updateTime); } /** * 點擊監聽回調事件 */ public interface onItemClickListener { void onClick(View view, int position, String action, String url); } public void setOnItemClickListener(onItemClickListener listener) { this.listener = listener; }
Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。
關于怎么在Android中自定義一個圖片輪播Banner控件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。