本文實(shí)例講述了Android開發(fā)之ViewFlipper自動(dòng)播放圖片功能實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:
創(chuàng)新互聯(lián)是專業(yè)的眉山網(wǎng)站建設(shè)公司,眉山接單;提供成都網(wǎng)站建設(shè)、做網(wǎng)站,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行眉山網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!簡介:
1.ViewFlipper繼承了ViewAnimator 可以調(diào)用addView()
添加組件
2.ViewAnimator與AdapterViewFlipper類似,區(qū)別在于 : AdapterViewFlipper可以通過Adapter直接添加多個(gè)view,而ViewAnimator 需要通過調(diào)用addView()
方法添加View
效果呈現(xiàn):
有此實(shí)例可以看出 ViewFlipper 再制作輪播圖等 圖片自動(dòng)播放器上 有很大優(yōu)勢(shì)
這里給出布局文件:
<?xml version="1.0" encoding="utf-8" ?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center_horizontal"> <!--定義一個(gè)ViewFlipper組件--> <ViewFlipper android:id="@+id/details" android:layout_width="match_parent" android:layout_height="match_parent" android:flipInterval="1000"> <!--flipInterval:Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip between each child at a regular interval.--> <ImageButton android:id="@+id/seaside" android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/a1"/> <ImageButton android:id="@+id/mountain" android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/a2"/> <ImageButton android:id="@+id/sky" android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/a3"/> </ViewFlipper> <Button android:onClick="prev" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true"/> <Button android:onClick="auto" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerInParent="true" android:text="自動(dòng)播放"/> <Button android:onClick="next" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true"/> </RelativeLayout>
網(wǎng)頁題目:Android開發(fā)之ViewFlipper自動(dòng)播放圖片功能實(shí)現(xiàn)方法示例-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://aaarwkj.com/article44/ccojee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、網(wǎng)站導(dǎo)航、網(wǎng)站設(shè)計(jì)、搜索引擎優(yōu)化、做網(wǎng)站、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容