<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:id="@+id/txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="原图:" /> <ImageView android:id="@+id/img" android:layout_width="match_parent" android:layout_height="200dp" android:src="@drawable/pic_test_1" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:text="处理后的图:" /> <ImageView android:id="@+id/img2" android:layout_width="match_parent" android:layout_height="200dp" /> </LinearLayout>