一、EventBus
1、什么是EventBus
EventBus is a publish/subscribe event bus for Android and Java.
2、特点优势
simplifies the communication between components
decouples event senders and receivers
performs well with Activities, Fragments, and background threads
avoids complex and error-prone dependencies and life cycle issues
makes your code simpler
is fast
is tiny (~60k jar)
is proven in practice by apps with 1,000,000,000+ installs
has advanced features like delivery threads, subscriber priorities, etc.
3、步骤
1.依赖
implementation 'org.greenrobot:eventbus:3.2.0'
2.定义事件(消息)
public class LoginSuccessEvent {
}
3.定义接收事件的方法
@Subscribe
public void onEvent1(LoginSuccessEvent event) {
Log.i("Simon", "onEvent1");
}
@Subscribe(threadMode = ThreadMode.POSTING)
public void onEvent2(LoginSuccessEvent event) {
Log.i("Simon", "onEvent2");
}
@Subscribe(threadMode = ThreadMode.ASYNC)
public void onEvent3(LoginSuccessEvent event) {
Log.i("Simon", "onEvent3");
}
@Subscribe(threadMode = ThreadMode.BACKGROUND)
public void onEvent4(LoginSuccessEvent event) {
Log.i("Simon", "onEvent4");
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent5(LoginSuccessEvent event) {
Log.i("Simon", "onEvent5");
}
@Subscribe(threadMode = ThreadMode.MAIN_ORDERED)
public void onEvent6(LoginSuccessEvent event) {
Log.i("Simon", "onEvent6");
}
4.注册和反注册
@Override
protected void onStart() {
super.onStart();
EventBus.getDefault().register(this);
}
@Override
protected void onStop() {
super.onStop();
EventBus.getDefault().unregister(this);
}
5.发射事件
EventBus.getDefault().post(new LoginSuccessEvent());
4、三要素
Event 事件。它可以是任意类型。
Subscriber 事件订阅者。在EventBus3.0之前我们必须定义以onEvent开头的那几个方法,分别是onEvent、onEventMainThread、onEventBackgroundThread和onEventAsync,而在3.0之后事件处理的方法名可以随意取,不过需要加上注解@subscribe(),并且指定线程模型,默认是POSTING。
Publisher 事件的发布者。我们可以在任意线程里发布事件,一般情况下,使用EventBus.getDefault()就可以得到一个EventBus对象,然后再调用post(Object)方法即可。
5、线程模型
POSTING
POSTING是默认线程模式,在哪个线程发送事件就在对应线程处理事件,避免了线程切换,效率高。因此,对于不要求是主线程并且耗时很短的简单任务推荐使用该模式。在线程模型为POSTING的事件处理函数中尽量避免执行耗时操作,因为它会阻塞事件的传递,甚至有可能会引起ANR。
MAIN
订阅者方法将在主线程(UI线程)中被调用。因此,可以在该模式的订阅者方法中直接更新UI界面。事件处理的时间不能太长,长了会导致ANR。
MAIN_ORDERED
订阅者在主线程中调用。该事件总是排队等待以后交付给订阅者,因此对post的调用将立即返回。这为事件处理提供了更严格且更一致的顺序,例如,在具有MAIN线程模式的事件处理程序中发布另一个事件,则第二个事件处理程序将在第一个事件处理程序之前完成,事件处理的时间不能太长,长了会导致ANR。
BACKGROUND
订阅者将在后台线程中调用。如果发布线程不是主线程,则将在发布线程中直接调用事件处理程序方法。如果发布线程是主线程,则EventBus使用单个后台线程,该线程将按顺序传递其所有事件。在此事件处理函数中禁止进行UI更新操作。
ASYNC
无论事件在哪个线程中发布,该事件处理函数都会在新建的子线程中执行;同样,此事件处理函数中禁止进行UI更新操作。
6、粘性事件
所谓粘性事件,就是在发送事件之后再订阅该事件也能收到该事件。请注意这里与普通事件的区别,普通事件是先注册在绑定。
二、Design的使用
1、什么是Material Design
Material Design 是用于指导用户在各种平台和设备上进行视觉、动作和互动设计的全面指南。
Android Design
https://material.io/
https://github.com/material-components
2、Android Design Support Library
是Google在2015年的IO大会上发布的全新Material Design支持库,在这个support库里面主要包含了 8 个新的 Material Design组件,最低支持 Android 2.1。
3、组件
控件 | 描述 |
---|---|
Snackbar | 提示框 |
FloatingActionButton | MD风格的圆形按钮 |
TextInputLayout EditText | 辅助控件 |
TabLayout | 选项卡 |
NavigationView | DrawerLayout的侧滑界面 |
CoordinatorLayout | 超级FrameLayout |
CollapsingToolbarLayout | 可折叠的MD风格ToolbarLayout |
AppBarLayout | MD风格的滑动Layout |
DrawerLayout | 创建抽屉式导航栏,即显示应用的主导航菜单的界面面板。当用户从屏幕左边缘滑动手指或点按应用栏中的抽屉式导航栏图标时,此导航栏就会显示 |
1.CoordinatorLayout + AppBarLayout + CollapsingToolbarLayout
androidx.coordinatorlayout.widget.CoordinatorLayout
super-powered FrameLayout
作为顶层布局;
作为协调子 View 之间交互的容器。
com.google.android.material.appbar.AppBarLayout
AppBarLayout is a vertical LinearLayout which implements many of the features of material designs app bar concept, namely scrolling gestures.
com.google.android.material.appbar.CollapsingToolbarLayout
CollapsingToolbarLayout is a wrapper for Toolbar which implements a collapsing app bar. It is designed to be used as a direct child of a AppBarLayout. CollapsingToolbarLayout contains the following features:
依赖
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
implementation 'com.google.android.material:material:1.2.1'
layout
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="250dp"
app:collapsedTitleGravity="left"
app:contentScrim="#777777"
app:expandedTitleGravity="bottom|right"
app:title="王贤兵"
android:minHeight="10dp"
app:layout_scrollFlags="scroll">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/hong20"
android:scaleType="fitXY" />
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="60dp"
app:layout_collapseMode="pin" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#ff0000" />
<ImageView
android:layout_width="match_parent"
android:layout_height="300dp"
android:src="@drawable/ic_launcher_background" />
<View
android:layout_width="wrap_content"
android:layout_height="300dp"
android:background="#0000ff" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
app:layout_scrollFlags属性
-scroll:所有想滚动出屏幕的view都需要设置这个flag,没有设置这个flag的View将会被固定在屏幕顶部。
-enterAlways:当滑动组件向下滚动时,标题栏会直接往下滚动。
-enterAlwaysCollapsed:当你的视图已经设置minHeight属性又使用此标志时,你的视图只能已最小高度进入,只有当滚动视图到达顶部时才扩 大到完整高度。
-exitUntilCollapsed:当标题栏要往上逐渐“消逝”时,会一直往上滑动,直到剩下的的高度达到它的最小高度,再响应滑动组件的内部滑动事件。
app:layout_behavior属性
滑动的组件必须要设置此属性为"@string/appbar_scrolling_view_behavior"
2.DrawerLayout
依赖
implementation "androidx.drawerlayout:drawerlayout:1.1.1"
layout
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawer_layout">
<LinearLayout
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff0000"
android:orientation="horizontal" />
<LinearLayout
android:id="@+id/left_layout"
android:layout_width="250dp"
android:layout_height="match_parent"
android:background="#00ff00"
android:orientation="horizontal"
android:layout_gravity="start" />
</androidx.drawerlayout.widget.DrawerLayout>
public class MainActivity extends AppCompatActivity {
private DrawerLayout mDrawerLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.drawer_layout);
mDrawerLayout = findViewById(R.id.drawer_layout);
mDrawerLayout.addDrawerListener(new DrawerLayout.DrawerListener() {
@Override
public void onDrawerSlide(@NonNull View drawerView, float slideOffset) {
Log.i("Simon", "onDrawerSlide");
}
@Override
public void onDrawerOpened(@NonNull View drawerView) {
Log.i("Simon", "onDrawerOpened");
}
@Override
public void onDrawerClosed(@NonNull View drawerView) {
Log.i("Simon", "onDrawerClosed");
}
@Override
public void onDrawerStateChanged(int newState) {
Log.i("Simon", "onDrawerStateChanged");
}
});
}
}
对于 DrawerLayout 内的界面布局有以下几个要求:
1.主界面布局一定要位于所有侧滑界面布局之前,宽度与高度应设置为 match_parent ,并且不能包含 layout_gravity 标签。
2.侧滑界面必须设置 layout_gravity 属性,且当该属性值为 start 或 left 时该侧滑界面从左侧滑出,当该属性值为 end 或 right 时,该侧滑界面从右侧滑出。
3.侧滑界面的高度属性建议设定为 match_parent ,宽度属性建议设置为一个常数。
4.界面任意一个垂直边缘最多允许配置一个侧滑界面,如果在布局时为单个垂直边缘配置了多个侧滑界面,则运行时将引发异常。
void closeDrawer(View drawerView) \ 关闭侧滑界面
void openDrawer(View drawerView) \ 打开侧滑界面
boolean isDrawerOpen(View drawer) \ 判断侧滑界面是否处于打开状态
3.TabLayout
<com.google.android.material.tabs.TabLayout
android:id="@+id/mytab"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
TabLayout tabLayout = (TabLayout) findViewById(R.id.mytab);
tabLayout.addTab(tabLayout.newTab().setText("选项卡一").setIcon(R.mipmap.ic_launcher));
tabLayout.addTab(tabLayout.newTab().setText("选项卡二").setIcon(R.mipmap.ic_launcher));
tabLayout.addTab(tabLayout.newTab().setText("选项卡三").setIcon(R.mipmap.ic_launcher));
tabLayout.addTab(tabLayout.newTab().setText("选项卡四").setIcon(R.mipmap.ic_launcher));
tabLayout.addTab(tabLayout.newTab().setText("选项卡五").setIcon(R.mipmap.ic_launcher));
tabLayout.addTab(tabLayout.newTab().setText("选项卡六").setIcon(R.mipmap.ic_launcher));
3.TextInputLayout
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="userName" />
</com.google.android.material.textfield.TextInputLayout>
4. FloatingActionButton
FAB常用属性
app:elevation="8dp":阴影的高度,elevation是Android 5.0中引入的新属性,设置该属性使控件有一个阴影,感觉该
控件像是“浮”起来一样,这样达到3D效果。对应的方法:setCompatElevation(float)
app:fabSize="normal":FAB的大小,为normal时,大小为:56 * 56dp ,为mini时,大小为: 40 * 40 dp。
app:backgroundTint="#31bfcf":FAB的背景颜色。
app:rippleColor="#e7d16b":点击FAB时,形成的波纹颜色。
app:borderWidth="0dp":边框宽度,通常设置为0 ,用于解决Android 5.X设备上阴影无法正常显示的问题
app:pressedTranslationZ="16dp":点击按钮时,按钮边缘阴影的宽度,通常设置比elevation的数值大!
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/contentView"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/anchorView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/anchorView"
app:layout_anchorGravity="bottom|right"
android:onClick="onClick"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"/>
</android.support.design.widget.CoordinatorLayout>
5.Snackbar
Snackbar.make(findViewById(R.id.button), R.string.app_name, 1000).show();