mirror of
https://github.com/yexuejc/rrxjava.git
synced 2025-06-07 21:54:03 +08:00
94 lines
3.5 KiB
XML
94 lines
3.5 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.TestActivity">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@+id/p1_btn_c"
|
|
android:layout_toStartOf="@+id/p1_btn_c"
|
|
android:text="将字符串数组 names 中的所有字符串依次打印出来:" />
|
|
|
|
<Button
|
|
android:id="@+id/p1_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:text="go" />
|
|
|
|
<Button
|
|
android:id="@+id/p1_btn_c"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toLeftOf="@+id/p1_btn"
|
|
android:layout_toStartOf="@+id/p1_btn"
|
|
android:text="clean" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/p1_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@+id/p2_btn_c"
|
|
android:layout_toStartOf="@+id/p2_btn_c"
|
|
android:text="由指定的一个 drawable 文件 id drawableRes 取得图片,并显示在 ImageView 中,并在出现异常的时候打印 Toast 报错:" />
|
|
|
|
<Button
|
|
android:id="@+id/p2_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:text="onCompleted" />
|
|
|
|
<Button
|
|
android:id="@+id/p2_btn_c"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toLeftOf="@+id/p2_btn"
|
|
android:layout_toStartOf="@+id/p2_btn"
|
|
android:text="onError" />
|
|
</RelativeLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/p2_img"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|