- 浏览: 122583 次
-
文章分类
最新评论
模拟js的首页动态推荐页面 Gallery 自动播放 无限循环 指示器显示 点击事件
//指示器代码 package com.su.testrcmd; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Paint; import android.util.AttributeSet; import android.util.Log; import android.view.View; public class FlowIndicator extends View { private int count; private float space, radius; private int point_normal_color, point_seleted_color; // 选中 private int seleted = 0; // background seleted normal public FlowIndicator(Context context, AttributeSet attrs) { super(context, attrs); TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.FlowIndicator); count = a.getInteger(R.styleable.FlowIndicator_count, 4); space = a.getDimension(R.styleable.FlowIndicator_space, 9); radius = a.getDimension(R.styleable.FlowIndicator_point_radius, 9); point_normal_color = a.getColor( R.styleable.FlowIndicator_point_normal_color, 0x000000); point_seleted_color = a.getColor( R.styleable.FlowIndicator_point_seleted_color, 0xffff07); int sum = attrs.getAttributeCount(); String str = ""; for (int i = 0; i < sum; i++) { String name = attrs.getAttributeName(i); String value = attrs.getAttributeValue(i); str += "attr_name :" + name + ": " + value + "\n"; } Log.i("attribute", str); a.recycle(); } public void setSeletion(int index) { this.seleted = index; invalidate(); } public void setCount(int count) { this.count = count; invalidate(); } public void next() { if (seleted < count - 1) seleted++; else seleted = 0; invalidate(); } public void previous() { if (seleted > 0) seleted--; else seleted = count - 1; invalidate(); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); Paint paint = new Paint(); paint.setAntiAlias(true); float width = (getWidth() - ((radius * 2 * count) + (space * (count - 1)))) / 2.f; for (int i = 0; i < count; i++) { if (i == seleted) paint.setColor(point_seleted_color); else paint.setColor(point_normal_color); canvas.drawCircle(width + getPaddingLeft() + radius + i * (space + radius + radius), getHeight() / 2, radius, paint); } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { setMeasuredDimension(measureWidth(widthMeasureSpec), measureHeight(heightMeasureSpec)); } private int measureWidth(int measureSpec) { int result = 0; int specMode = MeasureSpec.getMode(measureSpec); int specSize = MeasureSpec.getSize(measureSpec); if (specMode == MeasureSpec.EXACTLY) { result = specSize; } else { result = (int) (getPaddingLeft() + getPaddingRight() + (count * 2 * radius) + (count - 1) * radius + 1); if (specMode == MeasureSpec.AT_MOST) { result = Math.min(result, specSize); } } return result; } private int measureHeight(int measureSpec) { int result = 0; int specMode = MeasureSpec.getMode(measureSpec); int specSize = MeasureSpec.getSize(measureSpec); if (specMode == MeasureSpec.EXACTLY) { result = specSize; } else { result = (int) (2 * radius + getPaddingTop() + getPaddingBottom() + 1); if (specMode == MeasureSpec.AT_MOST) { result = Math.min(result, specSize); } } return result; } }
package com.su.testrcmd; //gallery的适配器 import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; public class GalleryAdapter extends BaseAdapter { Context mContext; int[] res = new int[] { R.drawable.t1, R.drawable.t2, R.drawable.t3 }; public GalleryAdapter(Context cnt) { this.mContext = cnt; } @Override public int getCount() { // TODO Auto-generated method stub return Integer.MAX_VALUE; } public int getRealCount() { // TODO Auto-generated method stub return res.length; } @Override public Object getItem(int arg0) { // TODO Auto-generated method stub return null; } @Override public long getItemId(int arg0) { // TODO Auto-generated method stub return 0; } @Override public View getView(int arg0, View arg1, ViewGroup arg2) { // TODO Auto-generated method stub if (arg1 == null) { arg1 = LayoutInflater.from(mContext).inflate(R.layout.gallery_item, null); } ImageView img = (ImageView) arg1.findViewById(R.id.home_img); img.setImageResource(res[arg0 % res.length]); return arg1; } }
package com.su.testrcmd; //主界面 import java.util.Timer; import java.util.TimerTask; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.SystemClock; import android.view.LayoutInflater; import android.view.MotionEvent; import android.view.View; import android.widget.AdapterView; import android.widget.Gallery; import android.widget.Toast; import android.widget.AdapterView.OnItemClickListener; import android.widget.AdapterView.OnItemSelectedListener; public class TestRcmdActivity extends Activity { static final int SCROLL_ACTION = 0; private Gallery mGallery; private com.su.testrcmd.FlowIndicator mMyView; private com.su.testrcmd.GalleryAdapter mGalleryAdapter; private Timer mTimer; private int realcount; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mTimer = new Timer(); mTimer.scheduleAtFixedRate(new MyTask(), 0, 5000); mGallery = (Gallery) findViewById(R.id.home_gallery); mMyView = (FlowIndicator) findViewById(R.id.myView); mGalleryAdapter = new GalleryAdapter(this); realcount = mGalleryAdapter.getRealCount(); mMyView.setCount(realcount); mGallery.setAdapter(mGalleryAdapter); mGallery.setSelection(200); mGallery.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2, long arg3) { // TODO Auto-generated method stub mMyView.setSeletion(arg2 % realcount); } @Override public void onNothingSelected(AdapterView<?> arg0) { // TODO Auto-generated method stub } }); mGallery.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) { Toast.makeText(TestRcmdActivity.this, "测试" + arg2 % realcount, 10).show(); } }); } private class MyTask extends TimerTask { @Override public void run() { mHandler.sendEmptyMessage(SCROLL_ACTION); } } Handler mHandler = new Handler() { @Override public void handleMessage(Message msg) { // TODO Auto-generated method stub super.handleMessage(msg); switch (msg.what) { case SCROLL_ACTION: MotionEvent e1 = MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN, 89.333336f, 265.33334f, 0); MotionEvent e2 = MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_UP, 300.0f, 238.00003f, 0); mGallery.onFling(e1, e2, -1300, 0); break; default: break; } } }; }
主界面xml <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/com.su.testrcmd" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <Gallery android:id="@+id/home_gallery" android:layout_width="fill_parent" android:layout_height="wrap_content" android:spacing="5dip" /> <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#65000000" android:orientation="vertical" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dip" android:layout_marginTop="5dip" android:text="推荐图片页面测试" android:textColor="#ffffff" android:textSize="18dip" /> <com.su.testrcmd.FlowIndicator android:id="@+id/myView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dip" app:count="4" android:gravity="center" android:paddingRight="20dip" app:point_normal_color="#45000000" app:point_radius="3dip" app:point_seleted_color="#ffffff" app:point_size="5dip" app:space="10dip" /> </LinearLayout> </FrameLayout>
item.xml <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ImageView android:id="@+id/home_img" android:layout_width="wrap_content" android:layout_height="wrap_content" android:adjustViewBounds="true" android:src="@drawable/t1"/> </FrameLayout>指示器的风格文件
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="FlowIndicator"> <attr name="count" format="integer" /> <attr name="space" format="dimension" /> <attr name="point_size" format="dimension" /> <attr name="point_seleted_color" format="color|reference" /> <attr name="point_normal_color" format="color|reference" /> <attr name="point_radius" format="dimension" /> </declare-styleable> </resources>
相关推荐
在给定的标题“无限自动循环的gallery 可以点击”和描述“绝对好用的gallery 经过修改增加倒影,支持自动滚动,手动滚动,图片点击事件,配有图片说明文字”中,我们可以提炼出以下几个关键知识点: 1. **无限循环*...
本教程将深入讲解如何在Android应用中实现一个3D画廊(Gallery)组件,支持无限循环、自动跳转以及倒影效果。 首先,我们需要理解`Gallery`组件。`Gallery`是Android提供的一个HorizontalScrollView的扩展,用于...
"Gallery无限循环.zip"这个压缩包文件的名字暗示了它可能包含一个关于Android应用程序开发的项目,特别是与图像展示相关的部分,比如一个图片画廊应用。在这个应用中,"Gallery"通常指的是用户可以浏览并循环查看...
在本篇文章中,我们将深入探讨如何实现`Gallery`的无限循环功能,这在很多应用场景,如轮播图或相册展示等,都是非常常见的需求。 首先,`Gallery`控件是Android提供的一个可以水平滚动的选择器,它继承自`...
在Android开发中,"无限循环滑动 gallery"是一种常见的用户界面设计,用于展示一系列图片或内容,例如在应用的启动页、轮播广告或者相册中。Gallery组件曾是Android SDK的一部分,但在后来的版本中被弃用,取而代之...
4. **优化自动播放逻辑**:例如,当到达最后一项时,可以设置自动回弹到第一项,形成无限循环的效果。 5. **增加触摸反馈**:为滑动和点击操作添加视觉和听觉反馈,让用户知道他们的操作已被系统识别。 通过上述...
在本教程中,我们将深入探讨如何利用ViewPager实现一个类似画廊(Gallery)的效果,并且让其能够无限循环滚动。 首先,我们要了解ViewPager的基本用法。ViewPager是Android Support Library的一部分,它允许用户在...
在这个特定的实现中,`FancyCoverFlow`被用来创建一个无限循环播放的广告板,这样的设计非常适合展示连续的广告或产品信息,用户在滑动到最后一个元素时,可以无缝地反向播放回第一个元素,从而提供流畅的用户体验。...
由于`Gallery`本身并不支持无限循环,我们需要通过添加额外的项来模拟这一效果。这里可以创建一个更大的数组,包含原始数据的重复项,然后在适配器中处理显示逻辑。例如,如果原始数组长度为N,我们可以创建一个长度...
接着,"图片轮播"(Gallery)是一个展示多个图像的组件,它可以是水平或垂直布局,通常包含导航箭头、分页指示器和自动播放选项。在Android或iOS应用开发中,可以使用原生组件,如Android的ViewPager或iOS的...
首先,要实现无限循环的效果,开发者需要在Gallery的两端添加额外的广告条目,当用户滑动到首尾时,无缝切换到另一端,使用户感觉广告条一直在循环播放。这通常需要重写Gallery的滚动逻辑,处理边界条件,并确保滚动...
在这个场景中,提到的"Android Gallery 3张图无限循环 左右滑动都有效"是指一个特定的实现,即在`Gallery`中加载三张图片,并且当用户向左或向右滑动时,图片能够无缝地循环,形成一种无限滚动的效果。下面将详细...
在Android开发中,展示图像的方式多种多样,其中`Gallery`和`ImageSwitcher`是两种常用的组件,尤其适用于实现图片的循环显示切换效果。这里,我们将深入探讨这两个组件的使用方法及其背后的原理。 首先,`Gallery`...
总结一下,要实现“Android Gallery 一次一张图片,可以循环显示,可显示当前为第几张图片”的功能,你需要: 1. 自定义`Adapter`,处理边界条件,实现循环显示。 2. 添加文本视图显示图片序号,并在`...
同时,底部的圆点指示器也需要动态更新以反映当前的页面位置。 4. **事件处理**:虽然画廊是自动播放的,但通常还需要为用户提供手动控制的选项,如暂停/播放按钮、上一页/下一页按钮等。这些都需要通过JavaScript...
然而,默认情况下,Gallery并不会自动循环显示,即当滚动到最后一张图片时,它不会重新回到第一张图片。为了实现循环显示的效果,我们需要对Gallery的Adapter进行定制。以下将详细讲解如何实现这一功能。 首先,`...
这个压缩包文件"自动播放Gallery"提供了一个简单的实现,让`Gallery`能够自动轮播显示其中的图片。在本文中,我们将深入探讨如何在Android中创建一个自动播放的`Gallery`效果。 首先,我们需要了解`Gallery`的基本...
【3D Gallery无限自动循环+倒影效果】是一款专为Android平台设计的图像展示应用,它结合了3D视觉效果和动态循环播放功能,同时增加了图片的倒影特效,为用户带来独特的视觉体验。这款应用在Android开发领域具有较高...
在Android开发中,`Gallery`组件是一个非常实用的控件,它允许用户通过左右滑动来展示一系列的图像,常用于相册应用或者图片选择器等场景。`Gallery`控件在早期版本的Android API中被引入,但在后来的版本中被`...