Android使用ViewFlipper实现上下滚动消息
更新时间:2018年07月22日 11:02:56 作者:_枫__
这篇文章主要为大家详细介绍了Android使用ViewFlipper实现上下滚动消息,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Android使用ViewFlipper实现上下滚动消息的具体代码,供大家参考,具体内容如下
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.创建需要滚动的子布局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="标题" 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.创建平移、渐变动画文件
(1)进场动画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)离场动画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中将子布局加入列表中,实现上下滚动效果
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(); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Android仿淘宝头条向上滚动广告条ViewFlipper
- Android控件ViewFlipper仿淘宝头条垂直滚动广告条
- android开发之横向滚动/竖向滚动的ListView(固定列头)
- android实现上下滚动的TextView
- android TextView不用ScrollViewe也可以滚动的方法
- android 实现ScrollView自动滚动的实例代码
- Android中实现多行、水平滚动的分页的Gridview实例源码
- Android GridView实现滚动到指定位置的方法
- android开发教程之文本框加滚动条scrollview
- Android自定义ViewFlipper实现滚动效果
相关文章
Android中二维码的生成方法(普通二维码、中心Logo 二维码、及扫描解析二维码)
这篇文章主要介绍了Android中二维码的生成方法(普通二维码、中心Logo 二维码、及扫描解析二维码),需要的朋友可以参考下2017-02-02android中ListView多次刷新重复执行getView的解决方法
以前倒是没有注意listview的getView会重复执行多次,在测试的时候去断点跟踪,发现同一条数据不断的重复执行,下面与大家分享下正确的解决方法,希望对你有所帮助2013-06-06使用RecyclerView添加Header和Footer的方法
RecyclerView虽然作为ListView的替代者有着较好的性能提升,但是ListView的一些常用功能却没有提供,比如我们平时会经常用到的addHeaderView,addFooterView,既然RecyclerView没有提供这个方法,我们应该如何为列表添加头部和底部呢,接下来通过本文给大家介绍2016-03-03
最新评论