简单实现Android滚动公告栏

发布时间:2020-09-16 21:42:41 作者:ganshenml
来源:脚本之家 阅读:294

本文实现的效果,是一个滚动的公告栏,是这样的:

简单实现Android滚动公告栏

可以看到这个公告栏一方面是滚动,另外一方面是可点击。

实现的思路:

1.textView放在ViewFlipper中实现滑动效果(可设置左右、或者上下滚动),很明显这应该是自定义view;

2.利用textView的点击事件即可实现点击;

OK,先看看自定义view的代码:

public class MarqueeTextView extends LinearLayout { 
 
 private Context mContext; 
 private ViewFlipper viewFlipper; 
 private View marqueeTextView; 
 private String[] textArrays; 
 private MarqueeTextViewClickListener marqueeTextViewClickListener; 
 
 public MarqueeTextView(Context context) { 
 super(context); 
 mContext = context; 
 initBasicView(); 
 } 
 
 
 public MarqueeTextView(Context context, AttributeSet attrs) { 
 super(context, attrs); 
 mContext = context; 
 initBasicView(); 
 } 
 
 public void setTextArraysAndClickListener(String[] textArrays, MarqueeTextViewClickListener marqueeTextViewClickListener) {//1.设置数据源;2.设置监听回调(将textView点击事件传递到目标界面进行操作) 
 this.textArrays = textArrays; 
 this.marqueeTextViewClickListener = marqueeTextViewClickListener; 
 initMarqueeTextView(textArrays, marqueeTextViewClickListener); 
 } 
 
 public void initBasicView() {//加载布局,初始化ViewFlipper组件及效果 
 marqueeTextView = LayoutInflater.from(mContext).inflate(R.layout.marquee_textview_layout, null); 
 LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); 
 addView(marqueeTextView, layoutParams); 
 viewFlipper = (ViewFlipper) marqueeTextView.findViewById(R.id.viewFlipper); 
 viewFlipper.setInAnimation(AnimationUtils.loadAnimation(mContext, R.anim.slide_in_bottom));//设置上下的动画效果(自定义动画,所以改左右也很简单) 
 viewFlipper.setOutAnimation(AnimationUtils.loadAnimation(mContext, R.anim.slide_out_top)); 
 viewFlipper.startFlipping(); 
 } 
 
 public void initMarqueeTextView(String[] textArrays, MarqueeTextViewClickListener marqueeTextViewClickListener) { 
 if (textArrays.length == 0) { 
 return; 
 } 
 
 int i = 0; 
 viewFlipper.removeAllViews(); 
 while (i < textArrays.length) { 
 TextView textView = new TextView(mContext); 
 textView.setText(textArrays[i]); 
 textView.setOnClickListener(marqueeTextViewClickListener); 
 LayoutParams lp = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); 
 viewFlipper.addView(textView, lp); 
 i++; 
 } 
 } 
 
 public void releaseResources() { 
 if (marqueeTextView != null) { 
 if (viewFlipper != null) { 
 viewFlipper.stopFlipping(); 
 viewFlipper.removeAllViews(); 
 viewFlipper = null; 
 } 
 marqueeTextView = null; 
 } 
 } 
 
} 

然后,主Activity异常简单(还是封装得好):

public class MainActivity extends AppCompatActivity { 
 private MarqueeTextView marqueeTv; 
 private String [] textArrays = new String[]{"this is content No.1","this is content No.2","this is content No.3"}; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.activity_main); 
 marqueeTv = (MarqueeTextView) findViewById(R.id.marqueeTv); 
 
 marqueeTv.setTextArraysAndClickListener(textArrays, new MarqueeTextViewClickListener() { 
 @Override 
 public void onClick(View view) { 
 startActivity(new Intent(MainActivity.this,AnotherActivity.class)); 
 } 
 }); 
 } 
 
 @Override 
 protected void onDestroy() { 
 marqueeTv.releaseResources(); 
 super.onDestroy(); 
 } 
} 

Git地址>>https://github.com/ganshenml/MarqueeTextViewApp

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

推荐阅读:
  1. Android学习—超简单实现带进度ProgressBar滚动条
  2. 利用JavaScript&jQuery如何实现滚动公告栏

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

android 滚动 roi

上一篇:Android HelloChart开源库图表之折线图的实例代码

下一篇:python爬虫获取新浪新闻教学

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》