EventBus在Android中的簡單使用

來源:互聯網
上載者:User

標籤:android開發   控制項   

     EventBus是一個方便與Android中各組件通訊的開源架構,開源地址;https://github.com/greenrobot/EventBus。EventBus功能很強大 ,今天在做一個功能時,遇到了點擊事件的衝突問題及資料傳遞更新問題。具體點就是在可以上下拉重新整理的ListView的Header上有GridView。此時,GridView的OnitemClick事件與ListView的OnItemClick事件衝突。而且我在實現 Griview的點擊事件時,還要進行資料傳遞。

解決過程1:

     OnitemClick點擊衝突問題,我把在代碼中的OnitemClick事件注釋了,然後在GridView的item布局根據加了id,然後在Adapter中對整個item做了個OnClick()點擊事件,問題解決了。

解決過程1:資料傳遞問題,就用到了EventBus:

在Activity中註冊EventBus:在Oncreate()方法中;EventBus.getDefault().register(this);

然後在OnStop()或OnDestory()中:EventBus.getDefault().unregister(this);

事件處理方法onEventMainThread:

public void onEventMainThread(CategoryItemEvent event) {
Bundle bundle = new Bundle();
bundle.putInt(...);
.......//傳遞資料,實現跳轉
}

在Adapter中做的就是POST事件;

holder.categoryRela.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
EventBus.getDefault().post(new CategoryItemEvent(pos));//在post的時候,傳遞了一個int類型的參數pos,這個參數在Activity中EventBus執行onEventMainThread(CategoryItemEvent event)時會用到這個pos。
}
});

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

EventBus在Android中的簡單使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.