android?viewflipper實(shí)現(xiàn)左右滑動(dòng)切換顯示圖片
本文實(shí)例為大家分享了android viewflipper實(shí)現(xiàn)左右滑動(dòng)切換顯示圖片的具體代碼,供大家參考,具體內(nèi)容如下
1.首先定義四個(gè)動(dòng)畫(huà)文件,表示當(dāng)view切換的時(shí)候的顯示效果
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控件,里面放三個(gè)LinearLayout,表示3個(gè)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事件中,來(lái)判斷是往哪個(gè)方向移動(dòng)
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); ? ? } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android實(shí)現(xiàn)界面左右滑動(dòng)切換功能
- Android App中使用ViewPager+Fragment實(shí)現(xiàn)滑動(dòng)切換效果
- Android開(kāi)發(fā)之使用ViewPager實(shí)現(xiàn)圖片左右滑動(dòng)切換效果
- Android實(shí)現(xiàn)簡(jiǎn)單底部導(dǎo)航欄 Android仿微信滑動(dòng)切換效果
- Android實(shí)現(xiàn)滑動(dòng)屏幕切換圖片
- Android編程實(shí)現(xiàn)ViewPager多頁(yè)面滑動(dòng)切換及動(dòng)畫(huà)效果的方法
- Android實(shí)現(xiàn)微信首頁(yè)左右滑動(dòng)切換效果
- android實(shí)現(xiàn)切換日期左右無(wú)限滑動(dòng)效果
- Android使用TabLayou+fragment+viewpager實(shí)現(xiàn)滑動(dòng)切換頁(yè)面效果
- Android Listview上下拉動(dòng)刷新tab滑動(dòng)切換功能
相關(guān)文章
Android自定義滾動(dòng)選擇器實(shí)例代碼
本篇文章主要介紹了Android自定義滾動(dòng)選擇器實(shí)例代碼,具有一定的參考價(jià)值,有興趣的可以了解一下。2017-01-01Android多功能視頻播放器GSYVideoPlayer開(kāi)發(fā)流程
怎么在Android中實(shí)現(xiàn)GSYVideoPlayer視頻播放器?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲2022-11-11android實(shí)現(xiàn)上滑屏幕隱藏底部菜單欄的示例
這篇文章主要介紹了android實(shí)現(xiàn)上滑屏幕隱藏底部菜單欄的示例,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-02-02Android WebView使用方法詳解 附j(luò)s交互調(diào)用方法
這篇文章主要為大家詳細(xì)介紹了Android WebView使用方法詳解,文中附j(luò)s交互調(diào)用方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-05-05Android Studio實(shí)現(xiàn)音樂(lè)播放器
這篇文章主要為大家詳細(xì)介紹了Android Studio實(shí)現(xiàn)音樂(lè)播放器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-11-11