Android 折叠效果示例

Android上实现各种折叠效果的demo,废话不多说,直接上代码了源码:https://github.com/openaphid/android-flip.git

/*
Copyright 2012 Aphid Mobile

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */

package com.aphidmobile.flip.demo;

import android.app.Activity;
import android.app.ListActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.*;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import com.aphidmobile.flipview.demo.R;

import java.util.*;

public class MainActivity extends ListActivity {
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setListAdapter(
			new SimpleAdapter(
				this, getData(), android.R.layout.simple_list_item_1, new String[]{"title"}, new int[]{android.R.id.text1}
			)
		);
		getListView().setScrollbarFadingEnabled(false);
	}
	
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

	@Override
	public boolean onOptionsItemSelected(MenuItem item) {
		Intent intent = new Intent(
			Intent.ACTION_VIEW,
			Uri.parse("http://openaphid.github.com/")
		);
		startActivity(intent);

		return true;
	}

	@SuppressWarnings("unchecked")
	@Override
	protected void onListItemClick(ListView l, View v, int position, long id) {
		Map<String, Object> map = (Map<String, Object>) l.getItemAtPosition(position);
		Intent intent = new Intent(this, (Class<? extends Activity>)map.get("activity"));
		startActivity(intent);
	}

	private List<? extends Map<String, ?>> getData() {
		List<Map<String, Object>> data = new ArrayList<Map<String, Object>>();
		addItem(data, "TextViews", FlipTextViewActivity.class);
		addItem(data, "Buttons", FlipButtonActivity.class);
		addItem(data, "Complex Layouts", FlipComplexLayoutActivity.class);
		addItem(data, "Async Content", FlipAsyncContentActivity.class);
		addItem(data, "Event Listener", FlipTextViewAltActivity.class);
		addItem(data, "Horizontal", FlipHorizontalLayoutActivity.class);
		addItem(data, "Issue #5", Issue5Activity.class);
		addItem(data, "XML Configuration", FlipTextViewXmlActivity.class);
		addItem(data, "Fragment", FlipFragmentActivity.class);
		addItem(data, "Dynamic Adapter Size", FlipDynamicAdapterActivity.class);
		
		return data;
	}

	private void addItem(List<Map<String, Object>> data, String title, Class<? extends Activity> activityClass) {
		Map<String, Object> map = new HashMap<String, Object>();
		map.put("title", data.size() + ". " + title);
		map.put("activity", activityClass);
		data.add(map);
	}
}
FlipViewController.java 外部引用原始文档
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
/*
Copyright 2012 Aphid Mobile

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

 */

package com.aphidmobile.flip;

import android.content.Context;
import android.content.res.Configuration;
import android.content.res.TypedArray;
import android.database.DataSetObserver;
import android.graphics.Bitmap;
import android.graphics.PixelFormat;
import android.opengl.GLSurfaceView;
import android.os.Handler;
import android.os.Message;
import android.util.AttributeSet;
import android.view.*;
import android.widget.AbsListView;
import android.widget.Adapter;
import android.widget.AdapterView;
import com.aphidmobile.utils.AphidLog;
import com.openaphid.flip.R;
import junit.framework.Assert;

import java.util.LinkedList;

public class FlipViewController extends AdapterView<Adapter> {

	public static final int VERTICAL = 0;
	public static final int HORIZONTAL = 1;

	public static interface ViewFlipListener {
		void onViewFlipped(View view, int position);
	}

	private static final int MAX_RELEASED_VIEW_SIZE = 1;

	private static final int MSG_SURFACE_CREATED = 1;

	private Handler handler = new Handler(new Handler.Callback() {
		@Override
		public boolean handleMessage(Message msg) {
			if (msg.what == MSG_SURFACE_CREATED) {
				contentWidth = 0;
				contentHeight = 0;
				requestLayout();
				return true;
			}
			return false;
		}
	});

	private GLSurfaceView surfaceView;
	private FlipRenderer renderer;
	private FlipCards cards;

	private int contentWidth;
	private int contentHeight;

	@ViewDebug.ExportedProperty
	private int flipOrientation;

	private boolean inFlipAnimation = false;

	//AdapterView Related
	private Adapter adapter;

	private int adapterDataCount = 0;

	private DataSetObserver adapterDataObserver;

	private final LinkedList<View> bufferedViews = new LinkedList<View>();
	private final LinkedList<View> releasedViews = new LinkedList<View>(); //XXX: use a SparseArray to keep the related view indices?
	private int bufferIndex = -1;
	private int adapterIndex = -1;
	private int sideBufferSize = 1;

	private float touchSlop;

	private ViewFlipListener onViewFlipListener;

	@ViewDebug.ExportedProperty
	private Bitmap.Config animationBitmapFormat = Bitmap.Config.ARGB_8888;

	public FlipViewController(Context context) {
		this(context, VERTICAL);
	}

	public FlipViewController(Context context, int flipOrientation) {
		super(context);
		init(context, flipOrientation);
	}

	/**
	 * Constructor required for XML inflation.
	 */
	public FlipViewController(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);

		int orientation = VERTICAL;

		TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.FlipViewController, 0, 0);

		try {
			int value = a.getInteger(R.styleable.FlipViewController_orientation, VERTICAL);
			if (value == HORIZONTAL)
				orientation = HORIZONTAL;

			value = a.getInteger(R.styleable.FlipViewController_animationBitmapFormat, 0);
			if (value == 1)
				setAnimationBitmapFormat(Bitmap.Config.ARGB_4444);
			else if (value == 2)
				setAnimationBitmapFormat(Bitmap.Config.RGB_565);
			else
				setAnimationBitmapFormat(Bitmap.Config.ARGB_8888);
		} finally {
			a.recycle();
		}

		init(context, orientation);
	}

	/**
	 * Constructor required for XML inflation.
	 */
	public FlipViewController(Context context, AttributeSet attrs) {
		this(context, attrs, 0);
	}

	private void init(Context context, int orientation) {
		ViewConfiguration configuration = ViewConfiguration.get(getContext());
		touchSlop = configuration.getScaledTouchSlop();
		this.flipOrientation = orientation;
		setupSurfaceView(context);
	}

	public Bitmap.Config getAnimationBitmapFormat() {
		return animationBitmapFormat;
	}

	/**
	 * Set the bitmap config for the animation, default is ARGB_8888, which provides the best quality with large peak memory consumption.
	 *
	 * @param animationBitmapFormat ALPHA_8 is not supported and will throw exception when binding textures
	 */
	public void setAnimationBitmapFormat(Bitmap.Config animationBitmapFormat) {
		this.animationBitmapFormat = animationBitmapFormat;
	}

	public ViewFlipListener getOnViewFlipListener() {
		return onViewFlipListener;
	}

	public void setOnViewFlipListener(ViewFlipListener onViewFlipListener) {
		this.onViewFlipListener = onViewFlipListener;
	}

	public void onResume() {
		surfaceView.onResume();
	}

	public void onPause() {
		surfaceView.onPause();
	}

	/**
	 * Request the animator to update display if the pageView has been preloaded.
	 * <p/>
	 * If the pageView is being used in the animation or its content has been buffered, the animator forcibly reloads it.
	 * <p/>
	 * The reloading process is a bit heavy for an active page, so please don't invoke it too frequently for an active page. The cost is trivial for inactive pages.
	 *
	 * @param pageView
	 */
	public void refreshPage(View pageView) {
		if (cards.refreshPageView(pageView))
			requestLayout();
	}

	/**
	 * @param pageIndex
	 * @see #refreshPage(android.view.View)
	 */
	public void refreshPage(int pageIndex) {
		if (cards.refreshPage(pageIndex))
			requestLayout();
	}

	/**
	 * Force the animator reload all preloaded pages
	 */
	public void refreshAllPages() {
		cards.refreshAllPages();
		requestLayout();
	}

	//--------------------------------------------------------------------------------------------------------------------
	// Touch Event
	@Override
	public boolean onInterceptTouchEvent(MotionEvent event) {
		return cards.handleTouchEvent(event, false);
	}

	@Override
	public boolean onTouchEvent(MotionEvent event) {
		return cards.handleTouchEvent(event, true);
	}

	//--------------------------------------------------------------------------------------------------------------------
	// Orientation
	@Override
	protected void onConfigurationChanged(Configuration newConfig) {
		super.onConfigurationChanged(newConfig);
		//XXX: adds a global layout listener?
	}

	//--------------------------------------------------------------------------------------------------------------------
	// AdapterView<Adapter>
	@Override
	public Adapter getAdapter() {
		return adapter;
	}

	@Override
	public void setAdapter(Adapter adapter) {
		setAdapter(adapter, 0);
	}

	public void setAdapter(Adapter adapter, int initialPosition) {
		if (this.adapter != null)
			this.adapter.unregisterDataSetObserver(adapterDataObserver);

		Assert.assertNotNull("adapter should not be null", adapter);

		this.adapter = adapter;
		adapterDataCount = adapter.getCount();

		adapterDataObserver = new MyDataSetObserver();
		this.adapter.registerDataSetObserver(adapterDataObserver);
		if (adapterDataCount > 0)
			setSelection(initialPosition);
	}

	@Override
	public View getSelectedView() {
		return (bufferIndex < bufferedViews.size() && bufferIndex >= 0) ? bufferedViews.get(bufferIndex) : null;
	}

	@Override
	public void setSelection(int position) {
		if (adapter == null)
			return;

		Assert.assertTrue("Invalid selection position", position >= 0 && position < adapterDataCount);

		releaseViews();

		View selectedView = viewFromAdapter(position, true);
		bufferedViews.add(selectedView);

		for (int i = 1; i <= sideBufferSize; i++) {
			int previous = position - i;
			int next = position + i;

			if (previous >= 0)
				bufferedViews.addFirst(viewFromAdapter(previous, false));
			if (next < adapterDataCount)
				bufferedViews.addLast(viewFromAdapter(next, true));
		}

		bufferIndex = bufferedViews.indexOf(selectedView);
		adapterIndex = position;

		requestLayout();
		updateVisibleView(inFlipAnimation ? -1 : bufferIndex);

		cards.resetSelection(position, adapterDataCount);
	}

	@Override
	public int getSelectedItemPosition() {
		return adapterIndex;
	}

	//--------------------------------------------------------------------------------------------------------------------
	// Layout
	@Override
	protected void onLayout(boolean changed, int l, int t, int r, int b) {
		if (AphidLog.ENABLE_DEBUG)
			AphidLog.d("onLayout: %d, %d, %d, %d; child %d", l, t, r, b, bufferedViews.size());

		for (View child : bufferedViews)
			child.layout(0, 0, r - l, b - t);

		if (changed || contentWidth == 0) {
			int w = r - l;
			int h = b - t;
			surfaceView.layout(0, 0, w, h);

			if (contentWidth != w || contentHeight != h) {
				contentWidth = w;
				contentHeight = h;
			}
		}

		if (bufferedViews.size() >= 1) {
			View frontView = bufferedViews.get(bufferIndex);
			View backView = null;
			if (bufferIndex < bufferedViews.size() - 1)
				backView = bufferedViews.get(bufferIndex + 1);
			renderer.updateTexture(adapterIndex, frontView, backView == null ? -1 : adapterIndex + 1, backView);
		}
	}

	@Override
	protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
		super.onMeasure(widthMeasureSpec, heightMeasureSpec);

		for (View child : bufferedViews)
			child.measure(widthMeasureSpec, heightMeasureSpec);

		surfaceView.measure(widthMeasureSpec, heightMeasureSpec);
	}

	//--------------------------------------------------------------------------------------------------------------------
	//internal exposed properties & methods
	float getTouchSlop() {
		return touchSlop;
	}

	GLSurfaceView getSurfaceView() {
		return surfaceView;
	}

	FlipRenderer getRenderer() {
		return renderer;
	}

	int getContentWidth() {
		return contentWidth;
	}

	int getContentHeight() {
		return contentHeight;
	}

	void reloadTexture() {
		handler.sendMessage(Message.obtain(handler, MSG_SURFACE_CREATED));
	}

	//--------------------------------------------------------------------------------------------------------------------
	// Internals
	private void setupSurfaceView(Context context) {
		surfaceView = new GLSurfaceView(getContext());

		cards = new FlipCards(this, flipOrientation == VERTICAL);
		renderer = new FlipRenderer(this, cards);

		surfaceView.setEGLConfigChooser(8, 8, 8, 8, 16, 0);
		surfaceView.setZOrderOnTop(true);
		surfaceView.setRenderer(renderer);
		surfaceView.getHolder().setFormat(PixelFormat.TRANSLUCENT);
		surfaceView.setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);

		addViewInLayout(surfaceView, -1, new AbsListView.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT), false);
	}

	private void releaseViews() {
		for (View view : bufferedViews)
			releaseView(view);
		bufferedViews.clear();
		bufferIndex = -1;
		adapterIndex = -1;
	}

	private void releaseView(View view) {
		Assert.assertNotNull(view);
		detachViewFromParent(view);
		addReleasedView(view);
	}

	private void addReleasedView(View view) {
		Assert.assertNotNull(view);
		if (releasedViews.size() < MAX_RELEASED_VIEW_SIZE)
			releasedViews.add(view);
	}

	private View viewFromAdapter(int position, boolean addToTop) {
		Assert.assertNotNull(adapter);

		View releasedView = releasedViews.isEmpty() ? null : releasedViews.removeFirst();

		View view = adapter.getView(position, releasedView, this);
		if (releasedView != null && view != releasedView)
			addReleasedView(releasedView);

		setupAdapterView(view, addToTop, view == releasedView);
		return view;
	}

	private void setupAdapterView(View view, boolean addToTop, boolean isReusedView) {
		LayoutParams params = view.getLayoutParams();
		if (params == null) {
			params = new AbsListView.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, 0);
		}

		if (isReusedView)
			attachViewToParent(view, addToTop ? 0 : 1, params);
		else
			addViewInLayout(view, addToTop ? 0 : 1, params, true);
	}

	private void updateVisibleView(int index) {
		/*
		if (AphidLog.ENABLE_DEBUG)
			AphidLog.d("Update visible views, index %d, buffered: %d, adapter %d", index, bufferedViews.size(), adapterIndex);
		*/

		for (int i = 0; i < bufferedViews.size(); i++)
			bufferedViews.get(i).setVisibility(index == i ? VISIBLE : INVISIBLE);
	}

	private void debugBufferedViews() {
		if (AphidLog.ENABLE_DEBUG)
			AphidLog.d("bufferedViews: %s; buffer index %d, adapter index %d", bufferedViews, bufferIndex, adapterIndex);
	}

	void postFlippedToView(final int indexInAdapter) {
		handler.post(new Runnable() {
			@Override
			public void run() {
				flippedToView(indexInAdapter, true);
			}
		});
	}

	void flippedToView(final int indexInAdapter, boolean isPost) {
		if (AphidLog.ENABLE_DEBUG)
			AphidLog.d("flippedToView: %d, isPost %s", indexInAdapter, isPost);

		debugBufferedViews();

		if (indexInAdapter >= 0 && indexInAdapter < adapterDataCount) {

			if (indexInAdapter == adapterIndex + 1) { //forward one page
				if (adapterIndex < adapterDataCount - 1) {
					adapterIndex++;
					View old = bufferedViews.get(bufferIndex);
					if (bufferIndex > 0)
						releaseView(bufferedViews.removeFirst());
					if (adapterIndex + sideBufferSize < adapterDataCount)
						bufferedViews.addLast(viewFromAdapter(adapterIndex + sideBufferSize, true));
					bufferIndex = bufferedViews.indexOf(old) + 1;
					requestLayout();
					updateVisibleView(inFlipAnimation ? -1 : bufferIndex);
				}
			} else if (indexInAdapter == adapterIndex - 1) {
				if (adapterIndex > 0) {
					adapterIndex--;
					View old = bufferedViews.get(bufferIndex);
					if (bufferIndex < bufferedViews.size() - 1)
						releaseView(bufferedViews.removeLast());
					if (adapterIndex - sideBufferSize >= 0)
						bufferedViews.addFirst(viewFromAdapter(adapterIndex - sideBufferSize, false));
					bufferIndex = bufferedViews.indexOf(old) - 1;
					requestLayout();
					updateVisibleView(inFlipAnimation ? -1 : bufferIndex);
				}
			} else {
				AphidLog.e("Should not happen: indexInAdapter %d, adapterIndex %d", indexInAdapter, adapterIndex);
			}
		} else
			Assert.fail("Invalid indexInAdapter: " + indexInAdapter);
		//debugBufferedViews();
	}

	void showFlipAnimation() {
		if (!inFlipAnimation) {
			inFlipAnimation = true;

			cards.setVisible(true);
			surfaceView.requestRender();

			handler.postDelayed(new Runnable() { //use a delayed message to avoid flicker, the perfect solution would be sending a message from the GL thread 
				public void run() {
					if (inFlipAnimation)
						updateVisibleView(-1);
				}
			}, 100);
		}
	}

	void postHideFlipAnimation() {
		if (inFlipAnimation) {
			handler.post(new Runnable() {
				@Override
				public void run() {
					hideFlipAnimation();
				}
			});
		}
	}

	private void hideFlipAnimation() {
		if (inFlipAnimation) {
			inFlipAnimation = false;

			updateVisibleView(bufferIndex);

			if (onViewFlipListener != null)
				onViewFlipListener.onViewFlipped(bufferedViews.get(bufferIndex), adapterIndex);

			handler.post(new Runnable() {
				public void run() {
					if (!inFlipAnimation) {
						cards.setVisible(false);
						surfaceView.requestRender(); //ask OpenGL to clear its display
					}
				}
			});
		}
	}

	private void onDataChanged() {
		adapterDataCount = adapter.getCount();
		int activeIndex;
		if (adapterIndex < 0)
			activeIndex = 0;
		else
			activeIndex = Math.min(adapterIndex, adapterDataCount - 1);

		releaseViews();
		setSelection(activeIndex);
	}

	private class MyDataSetObserver extends DataSetObserver {
		@Override
		public void onChanged() {
			onDataChanged();
		}

		@Override
		public void onInvalidated() {
			onDataChanged();
		}
	}
}
6666666666666.png 外部引用原始文档

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值