Android使用ViewFlipper實(shí)現(xiàn)上下滾動(dòng)消息
本文實(shí)例為大家分享了Android使用ViewFlipper實(shí)現(xiàn)上下滾動(dòng)消息的具體代碼,供大家參考,具體內(nèi)容如下
1.在界面布局中加入ViewFlipper的布局
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ll_notice_root" android:layout_width="match_parent" android:layout_height="40dp" android:background="#ffe4c3" android:gravity="center_vertical" android:orientation="horizontal"> <ViewFlipper android:id="@+id/vf_notice_scroll" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1"/> </LinearLayout>
2.創(chuàng)建需要滾動(dòng)的子布局notice_item文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:id="@+id/tv_notice_item_itle" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:layout_weight="1" android:text="標(biāo)題" android:textColor="#9B6916" android:textSize="12dp"/> <TextView android:id="@+id/tv_notice_item_time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:text="06:28" android:textColor="#999999" android:textSize="12dp"/> </LinearLayout>
3.創(chuàng)建平移、漸變動(dòng)畫文件
(1)進(jìn)場(chǎng)動(dòng)畫notice_in文件
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="500" android:fromYDelta="100.0%p" android:toYDelta="0.0"/> <alpha android:duration="500" android:fromAlpha="0.0" android:toAlpha="1.0"/> </set>
(2)離場(chǎng)動(dòng)畫notice_out文件
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="500" android:fromYDelta="0.0" android:toYDelta="-100.0%p"/> <alpha android:duration="500" android:fromAlpha="1.0" android:toAlpha="0.0"/> </set>
4.在Activity中將子布局加入列表中,實(shí)現(xiàn)上下滾動(dòng)效果
public void startFlipping(Context context, ViewFlipper vf, ArrayList<MessageBean> infos){ vf.setInAnimation(context, R.anim.notice_in); vf.setOutAnimation(context, R.anim.notice_out); int len = infos.size(); for (int i = 0; i < len; i++) { MessageBean info = infos.get(i); View v = ((Activity) context).getLayoutInflater().inflate(R.layout.notice_item, null); TextView titleTv = (TextView) v.findViewById(R.id.tv_notice_item_title); titleTv.setText(info.title); TextView timeTv = (TextView) v.findViewById(R.id.tv_notice_item_time); timeTv.setText(info.time); vf.addView(v); } vf.startFlipping(); }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android仿淘寶頭條向上滾動(dòng)廣告條ViewFlipper
- Android控件ViewFlipper仿淘寶頭條垂直滾動(dòng)廣告條
- android開發(fā)之橫向滾動(dòng)/豎向滾動(dòng)的ListView(固定列頭)
- android實(shí)現(xiàn)上下滾動(dòng)的TextView
- android TextView不用ScrollViewe也可以滾動(dòng)的方法
- android 實(shí)現(xiàn)ScrollView自動(dòng)滾動(dòng)的實(shí)例代碼
- Android中實(shí)現(xiàn)多行、水平滾動(dòng)的分頁(yè)的Gridview實(shí)例源碼
- Android GridView實(shí)現(xiàn)滾動(dòng)到指定位置的方法
- android開發(fā)教程之文本框加滾動(dòng)條scrollview
- Android自定義ViewFlipper實(shí)現(xiàn)滾動(dòng)效果
相關(guān)文章
Android中二維碼的生成方法(普通二維碼、中心Logo 二維碼、及掃描解析二維碼)
這篇文章主要介紹了Android中二維碼的生成方法(普通二維碼、中心Logo 二維碼、及掃描解析二維碼),需要的朋友可以參考下2017-02-02Android實(shí)現(xiàn)網(wǎng)易云推薦歌單界面
大家好,本篇文章主要講的是Android實(shí)現(xiàn)網(wǎng)易云推薦歌單界面,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話記得收藏一下2022-02-02android中ListView多次刷新重復(fù)執(zhí)行g(shù)etView的解決方法
以前倒是沒(méi)有注意listview的getView會(huì)重復(fù)執(zhí)行多次,在測(cè)試的時(shí)候去斷點(diǎn)跟蹤,發(fā)現(xiàn)同一條數(shù)據(jù)不斷的重復(fù)執(zhí)行,下面與大家分享下正確的解決方法,希望對(duì)你有所幫助2013-06-06Android 斷點(diǎn)下載和自動(dòng)安裝的示例代碼
本篇文章主要介紹了Android斷點(diǎn)下載和自動(dòng)安裝的示例代碼,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-01-01使用RecyclerView添加Header和Footer的方法
RecyclerView雖然作為L(zhǎng)istView的替代者有著較好的性能提升,但是ListView的一些常用功能卻沒(méi)有提供,比如我們平時(shí)會(huì)經(jīng)常用到的addHeaderView,addFooterView,既然RecyclerView沒(méi)有提供這個(gè)方法,我們應(yīng)該如何為列表添加頭部和底部呢,接下來(lái)通過(guò)本文給大家介紹2016-03-03Android實(shí)現(xiàn)聯(lián)動(dòng)下拉框二級(jí)地市聯(lián)動(dòng)下拉框功能
這篇文章主要介紹了Android實(shí)現(xiàn)聯(lián)動(dòng)下拉框二級(jí)地市聯(lián)動(dòng)下拉框功能,本文給大家分享思路步驟,給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2018-12-12Android 一鍵清理、內(nèi)存清理功能實(shí)現(xiàn)
這篇文章主要介紹了Android 一鍵清理、內(nèi)存清理功能實(shí)現(xiàn),非常具有實(shí)用價(jià)值,需要的朋友可以參考下。2017-01-01