1
0
mirror of https://github.com/yexuejc/rrxjava.git synced 2025-06-08 14:34:07 +08:00
rrxjava/.svn/pristine/1d/1d55f68abeb86dd8b3da99ae8808c3531973d9b1.svn-base
2017-07-07 15:50:45 +08:00

33 lines
1.1 KiB
XML

<?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.MainActivity">
<TextView
android:id="@+id/te"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/toMap"
android:layout_width="200dp"
android:layout_height="50dp"
android:text="RxJava map" />
<Button
android:id="@+id/toHttp"
android:layout_width="200dp"
android:layout_height="50dp"
android:text="访问网络" />
</LinearLayout>