Skip to content

Commit 5f39213

Browse files
author
Kaushik Gopal
committed
fix: add note to hit button multiple times
1 parent 081983c commit 5f39213

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/src/main/res/layout/item_log.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
android:id="@+id/item_log"
55
android:layout_height="match_parent"
66
android:layout_width="match_parent"
7+
android:textSize="12sp"
78
android:text="Item Log goes here"
89
xmlns:android="http://schemas.android.com/apk/res/android"/>

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<string name="action_settings">Settings</string>
77

88
<string name="msg_demo_buffer">This is a demo of how events can be accumulated using the "buffer" operation. Tap the button below repetitively and you will notice in the logs that button taps are collected over a span of 2s and printed below.</string>
9-
<string name="msg_demo_concurrency_schedulers">This is a demo of how long running operations can be offloaded to a background thread. After the operation is done, we resume back on the main thread. All using RxJava!</string>
9+
<string name="msg_demo_concurrency_schedulers">This is a demo of how long running operations can be offloaded to a background thread. After the operation is done, we resume back on the main thread. All using RxJava! \n\n To really see this shine. Hit the button multiple times and see how the button click which is a ui operation is never blocked because the long operation only runs in the background</string>
1010

1111
<string name="btn_demo_schedulers">bg work (schedulers &amp; concurrency)</string>
1212
<string name="btn_demo_buffer">accumulate calls (buffer)</string>

0 commit comments

Comments
 (0)