温馨提示×

温馨提示×

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

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

Android中EventBus的示例分析

发布时间:2021-08-11 10:22:40 来源:亿速云 阅读:116 作者:小新 栏目:移动开发

这篇文章将为大家详细讲解有关Android中EventBus的示例分析,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

展示效果

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

添加EventBus导入依赖

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("跳转到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, "请勿重复注册事件", 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("发送事件");
    button_n=(Button)findViewById(R.id.button_n);
    button_n.setText("粘性事件");
    tv_b=(TextView)findViewById(R.id.tv_b);
    tv_b.setText("MainBctivity");
    /*发送事件*/
    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" />

关于“Android中EventBus的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

向AI问一下细节

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

AI