X Tutup
Skip to content

Commit 01ee20e

Browse files
author
Kaushik Gopal
committed
fix: remove unnecessary tx
1 parent 11744c9 commit 01ee20e

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,11 @@
1515
<Button
1616
android:id="@+id/btn_demo_rxbus_tap"
1717
android:background="@drawable/btn_round"
18+
android:layout_gravity="center"
1819
android:layout_height="90dp"
1920
android:layout_width="90dp"
20-
android:textColor="@android:color/white"
21-
android:layout_gravity="center"
2221
android:textSize="@dimen/text_xlarge"
22+
android:textColor="@android:color/white"
2323
android:text="Tap"/>
2424

25-
<TextView
26-
android:layout_gravity="center_horizontal|bottom"
27-
android:layout_height="wrap_content"
28-
android:layout_width="wrap_content"
29-
android:text="@string/msg_demo_rxbus_2"/>
30-
3125
</FrameLayout>

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,5 @@
2121
<string name="msg_demo_retrofit">Retrofit from Square is a super easy networking helper library. It works really well with RxJava and these are examples taken from Jake Wharton\'s talk at Netflix (see README). Really the only interesting bits here are in the code and logs.</string>
2222
<string name="msg_demo_doublebinding">Watch how the result gloriously auto-updates based on your changing inputs. Using a technique like this, you could achieve the two-way binding in Angular Js, or more efficiently use a pattern like the Presentation View Model.</string>
2323
<string name="msg_demo_polling">This is demo of polling or making a call repeatedly with RxJava. \n\nSimple polling: Notice in the logs how a network call (simulated) is repeatedly made in the background.</string>
24-
2524
<string name="msg_demo_rxbus_1">Tap on the below button and RxBus will listen to the events</string>
26-
<string name="msg_demo_rxbus_2">Tap anywhere outside for \'dead events\'</string>
2725
</resources>

0 commit comments

Comments
 (0)
X Tutup