第十二章

一、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));
图片.png

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>
图片.png

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>
图片.png

5.Snackbar

Snackbar.make(findViewById(R.id.button), R.string.app_name, 1000).show();
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容