1
0
mirror of https://github.com/yexuejc/rrxjava.git synced 2025-12-24 19:49:39 +08:00
This commit is contained in:
2017-07-07 15:50:45 +08:00
commit c595467e6f
105 changed files with 3161 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.yexue.android.rrxjava.ActionActivity">
<Button
android:id="@+id/action_btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动创建 Subscriber ,并使用 onNextAction 来定义 onNext()" />
<Button
android:id="@+id/action_btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动创建 Subscriber ,并使用 onNextAction 和 onErrorAction 来定义 onNext() 和 onError()" />
<Button
android:id="@+id/action_btn3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动创建 Subscriber ,并使用 onNextAction、 onErrorAction 和 onCompletedAction 来定义 onNext()、 onError() 和 onCompleted()" />
</LinearLayout>