這篇文章將為大家詳細講解有關android怎么實現條目倒計時功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創新互聯自成立以來,一直致力于為企業提供從網站策劃、網站設計、網站設計、成都網站設計、電子商務、網站推廣、網站優化到為企業提供個性化軟件開發等基于互聯網的全面整合營銷服務。公司擁有豐富的網站建設和互聯網應用系統開發管理經驗、成熟的應用系統解決方案、優秀的網站開發工程師團隊及專業的網站設計師團隊。
網上對于這樣的功能已經是泛濫成河了,但是最近遇到這樣的一個需求,還是要值得我們學習一下,并將他記錄下來。
布局文件:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.rui.demo.list_count_down.ListCountDownActivity"> <android.support.v7.widget.RecyclerView android:id="@+id/rv_list_count_down" android:layout_width="match_parent" android:layout_height="match_parent"> </android.support.v7.widget.RecyclerView> </FrameLayout>
Activity界面:
public class ListCountDownActivity extends AppCompatActivity { RecyclerView mRecyclerView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_list_count_down); initView(); } private void initView() { mRecyclerView = (RecyclerView) findViewById(R.id.rv_list_count_down); mRecyclerView.setLayoutManager(new LinearLayoutManager(this)); CountDownAdapter adapter = new CountDownAdapter(); mRecyclerView.setAdapter(adapter); List<DataInfo> list = new ArrayList<>(); for (int i = 1; i < 101; i++) { list.add(new DataInfo("我是條目" + i, i * 100)); } adapter.setmDatas(list); } }
倒計時條目適配器:
/** * @Date 2018/4/26 * @Introduction 倒計時條目適配器 */ public class CountDownAdapter extends RecyclerView.Adapter<CountDownAdapter.MyViewHoder> { private final String TAG = CountDownAdapter.class.getSimpleName(); private final int STOP = 0x01; private final int START = 0x02; private final int LOOP = 0x03; private List<DataInfo> mDatas; public CountDownAdapter() { } public void setmDatas(List<DataInfo> mDatas) { this.mDatas = mDatas; notifyDataSetChanged(); } @Override public MyViewHoder onCreateViewHolder(ViewGroup parent, int viewType) { return new MyViewHoder(LayoutInflater.from(parent.getContext()).inflate(R.layout.item_count_down, parent, false)); } @Override public void onBindViewHolder(final MyViewHoder holder, int position) { final DataInfo info = mDatas.get(position); holder.tvName.setText(info.getName()); holder.tvTime.setText(info.getTime() + ""); if (info.isCountDown()) { holder.btnStart.setText("停止"); } else { holder.btnStart.setText("開始"); } holder.btnStart.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Message msg = Message.obtain(); if (!info.isCountDown()) { holder.btnStart.setText("停止"); msg.what = START; } else { holder.btnStart.setText("開始"); msg.what = STOP; } msg.obj = info; mHandler.sendMessage(msg); info.setCountDown(!info.isCountDown()); } }); } @Override public int getItemCount() { return mDatas == null ? 0 : mDatas.size(); } static class MyViewHoder extends RecyclerView.ViewHolder { private final TextView tvName; private final TextView tvTime; private final Button btnStart; public MyViewHoder(View itemView) { super(itemView); tvName = (TextView) itemView.findViewById(R.id.tv_name_count_down_item); tvTime = (TextView) itemView.findViewById(R.id.tv_time_count_down_item); btnStart = (Button) itemView.findViewById(R.id.btn_time_count_down_item); } } private Handler mHandler = new Handler() { private List<DataInfo> mCountDownList = new ArrayList<>(); @Override public void handleMessage(Message msg) { setChange(msg); } private synchronized void setChange(Message msg) { switch (msg.what) { case STOP: DataInfo stopInfo = (DataInfo) msg.obj; Log.e(TAG, "------------stop:" + stopInfo.getName()); mCountDownList.remove(stopInfo); notifyDataSetChanged(); if (mCountDownList.size() <= 0) { mHandler.removeCallbacksAndMessages(null); } break; case START: DataInfo startInfo = (DataInfo) msg.obj; Log.e(TAG, "------------start:" + startInfo.getName()); if (startInfo.getTime() > 0) { mCountDownList.add(startInfo); mHandler.sendEmptyMessageDelayed(LOOP, 1000); } break; case LOOP: if (mCountDownList.size() <= 0) { return; } for (Iterator<DataInfo> iterator = mCountDownList.iterator(); iterator.hasNext(); ) { DataInfo dataInfo = iterator.next(); int time = dataInfo.getTime(); time--; dataInfo.setTime(time); if (time <= 0) { iterator.remove(); } } notifyDataSetChanged(); mHandler.removeCallbacksAndMessages(null); mHandler.sendEmptyMessageDelayed(LOOP, 1000); break; default: break; } } }; }
JavaBean類
/** * @Date 2018/4/26 * @Introduction 倒計時數據實體類 */ public class DataInfo { private String name; private int time; private boolean isCountDown = false; public DataInfo(String name, int time) { this.name = name; this.time = time; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getTime() { return time; } public void setTime(int time) { this.time = time; } public boolean isCountDown() { return isCountDown; } public void setCountDown(boolean countDown) { isCountDown = countDown; } }
關于“android怎么實現條目倒計時功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
文章題目:android怎么實現條目倒計時功能
分享URL:http://m.newbst.com/article14/pjdhde.html
成都網站建設公司_創新互聯,為您提供移動網站建設、網站設計公司、App設計、建站公司、網站導航、營銷型網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯