日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

android?viewflipper實現左右滑動切換顯示圖片_Android

作者:a107494639 ? 更新時間: 2022-07-14 編程語言

本文實例為大家分享了android viewflipper實現左右滑動切換顯示圖片的具體代碼,供大家參考,具體內容如下

1.首先定義四個動畫文件,表示當view切換的時候的顯示效果

in_leftright.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
?
? ? <translate
? ? ? ? android:duration="500"
? ? ? ? android:fromXDelta="0"
? ? ? ? android:toXDelta="-100%p" />
?
</set>

in_rightleft.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
?
? ? <translate
? ? ? ? android:duration="500"
? ? ? ? android:fromXDelta="100%p"
? ? ? ? android:toXDelta="0" />
?
</set>

out_leftright.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
?
? ? <translate
? ? ? ? android:duration="500"
? ? ? ? android:fromXDelta="0"
? ? ? ? android:toXDelta="100%p" />
?
</set>

out_rightleft.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
?
? ? <translate
? ? ? ? android:duration="500"
? ? ? ? android:fromXDelta="0"
? ? ? ? android:toXDelta="-100%p" />
?
</set>

2.在main.xml中添加ViewFlipper控件,里面放三個LinearLayout,表示3個view

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
? ? android:layout_width="fill_parent"
? ? android:layout_height="fill_parent"
? ? android:orientation="vertical" >
?
? ? <ViewFlipper
? ? ? ? android:id="@+id/viewFlipper"
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="match_parent" >
?
? ? ? ? <!-- first page -->
?
? ? ? ? <LinearLayout
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="match_parent"
? ? ? ? ? ? android:gravity="center" >
?
? ? ? ? ? ? <ImageView
? ? ? ? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_gravity="center"
? ? ? ? ? ? ? ? android:src="@drawable/a001" />
? ? ? ? </LinearLayout>
?
? ? ? ? <!-- second page -->
?
? ? ? ? <LinearLayout
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="match_parent"
? ? ? ? ? ? android:gravity="center" >
?
? ? ? ? ? ? <ImageView
? ? ? ? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_gravity="center"
? ? ? ? ? ? ? ? android:src="@drawable/a002" />
? ? ? ? </LinearLayout>
?
? ? ? ? <!-- third page -->
?
? ? ? ? <LinearLayout
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="match_parent"
? ? ? ? ? ? android:gravity="center" >
?
? ? ? ? ? ? <ImageView
? ? ? ? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_gravity="center"
? ? ? ? ? ? ? ? android:src="@drawable/a003" />
? ? ? ? </LinearLayout>
?
? ? </ViewFlipper>
?
</LinearLayout>

3.最后在activity里的onTouchEvent事件中,來判斷是往哪個方向移動

package org.example.viewflipper;
?
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.widget.ViewFlipper;
?
public class ViewFlipperActivity extends Activity {
?
? ? private ViewFlipper viewFlipper = null;
?
? ? float startX;
?
? ? @Override
? ? public void onCreate(Bundle savedInstanceState) {
? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? setContentView(R.layout.main);
? ? ? ? // init widget
? ? ? ? viewFlipper = (ViewFlipper) findViewById(R.id.viewFlipper);
? ? }
?
? ? @Override
? ? public boolean onTouchEvent(MotionEvent event) {
? ? ? ? switch (event.getAction()) {
? ? ? ? case MotionEvent.ACTION_DOWN:
? ? ? ? ? ? startX = event.getX();
? ? ? ? ? ? break;
? ? ? ? case MotionEvent.ACTION_UP:
? ? ? ? ? ? if (event.getX() > startX) {// flip to right
? ? ? ? ? ? ? ? viewFlipper.setInAnimation(this, R.anim.in_leftright);
? ? ? ? ? ? ? ? viewFlipper.setOutAnimation(this, R.anim.out_leftright);
? ? ? ? ? ? ? ? viewFlipper.showNext();
? ? ? ? ? ? } else {// flip to left
? ? ? ? ? ? ? ? viewFlipper.setInAnimation(this, R.anim.in_rightleft);
? ? ? ? ? ? ? ? viewFlipper.setOutAnimation(this, R.anim.out_rightleft);
? ? ? ? ? ? ? ? viewFlipper.showPrevious();
? ? ? ? ? ? }
?
? ? ? ? }
? ? ? ? return super.onTouchEvent(event);
? ? }
}

原文鏈接:https://blog.csdn.net/a107494639/article/details/7548662

欄目分類
最近更新