溫馨提示×

溫馨提示×

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

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

Android中EventBus的示例分析

發(fā)布時間:2021-08-11 10:22:40 來源:億速云 閱讀:122 作者:小新 欄目:移動開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)Android中EventBus的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

展示效果

Android中EventBus的示例分析
Android中EventBus的示例分析

添加EventBus導(dǎo)入依賴

compile 'org.greenrobot:eventbus:3.0.0'

主MainActivity方法

public class MainActivity extends AppCompatActivity {
  private Button button_t,button_d;
  private TextView tv_a;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    button_d=(Button)findViewById(R.id.button_d);
    button_d.setText("訂閱");
    button_t=(Button)findViewById(R.id.button_t);
    button_t.setText("跳轉(zhuǎn)到Bctivity");
    tv_a=(TextView)findViewById(R.id.tv_a);
    tv_a.setText("歡迎大家觀看飛鳥96的博客");
    button_t.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        startActivity(new Intent(MainActivity.this,MainBctivity.class));
      }
    });
    /*
    * 訂閱事件
    * */
    button_d.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        if(!EventBus.getDefault().isRegistered(MainActivity.this)) {
          EventBus.getDefault().register(MainActivity.this);
        }else{
          Toast.makeText(MainActivity.this, "請勿重復(fù)注冊事件", Toast.LENGTH_SHORT).show();
        }
      }
    });
  }

  @Override
  protected void onDestroy() {
    super.onDestroy();
    /*
    * 取消注冊事件
    * */
    EventBus.getDefault().unregister(MainActivity.this);
  }
  @Subscribe(threadMode = ThreadMode.MAIN)
  public void onMoonEvent(MessageEvent message){
    tv_a.setText(message.getMessage());
  }
  @Subscribe(sticky = true)
  public void onMoonEvents(MessageEvent message){
    tv_a.setText(message.getMessage());
  }
}

主MainBctivity方法

public class MainBctivity extends AppCompatActivity {
  private Button button_f,button_n;
  private TextView tv_b;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main_bctivity);
    button_f=(Button)findViewById(R.id.button_f);
    button_f.setText("發(fā)送事件");
    button_n=(Button)findViewById(R.id.button_n);
    button_n.setText("粘性事件");
    tv_b=(TextView)findViewById(R.id.tv_b);
    tv_b.setText("MainBctivity");
    /*發(fā)送事件*/
    button_f.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        EventBus.getDefault().post(new MessageEvent("飛鳥96博客祝你用的開心!"));
        finish();
      }
    });
    /*粘性事件*/
    button_n.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        EventBus.getDefault().postSticky(new MessageEvent("開心開心開開心??!"));
        finish();
      }
    });

  }
}

MessageEvent(事件類)

public class MessageEvent {
  private String message;

  public MessageEvent(String message) {
    this.message = message;
  }

  public MessageEvent() {
  }

  public String getMessage() {
    return message;
  }

  public void setMessage(String message) {
    this.message = message;
  }
}

activity_main(MainActivity的布局)

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    android:layout_centerInParent="true"
    android:id="@+id/tv_a" />

  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="17dp"
    android:id="@+id/button_t"
    android:layout_below="@id/tv_a" />
  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="17dp"
    android:id="@+id/button_d"
    android:layout_below="@id/button_t" />

activity_main_bctivity(MainBctivity的布局)

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    android:layout_centerInParent="true"
    android:id="@+id/tv_b" />

  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="17dp"
    android:id="@+id/button_f"
    android:layout_below="@id/tv_b" />
  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="17dp"
    android:id="@+id/button_n"
    android:layout_below="@id/button_f" />

關(guān)于“Android中EventBus的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

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

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

AI