溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

簡(jiǎn)單實(shí)現(xiàn)Android滾動(dòng)公告欄

發(fā)布時(shí)間:2020-09-16 21:42:41 來源:腳本之家 閱讀:307 作者:ganshenml 欄目:移動(dòng)開發(fā)

本文實(shí)現(xiàn)的效果,是一個(gè)滾動(dòng)的公告欄,是這樣的:

簡(jiǎn)單實(shí)現(xiàn)Android滾動(dòng)公告欄

可以看到這個(gè)公告欄一方面是滾動(dòng),另外一方面是可點(diǎn)擊。

實(shí)現(xiàn)的思路:

1.textView放在ViewFlipper中實(shí)現(xiàn)滑動(dòng)效果(可設(shè)置左右、或者上下滾動(dòng)),很明顯這應(yīng)該是自定義view;

2.利用textView的點(diǎn)擊事件即可實(shí)現(xiàn)點(diǎn)擊;

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.設(shè)置數(shù)據(jù)源;2.設(shè)置監(jiān)聽回調(diào)(將textView點(diǎn)擊事件傳遞到目標(biāo)界面進(jìn)行操作) 
 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));//設(shè)置上下的動(dòng)畫效果(自定義動(dòng)畫,所以改左右也很簡(jiǎn)單) 
 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異常簡(jiǎn)單(還是封裝得好):

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

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI