我想让用户从 SD 卡加载自己的图像以用作 ImageButton。这是我的 main.xml 代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/heart"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="150dp"
android:layout_height="200dp"
android:src="@drawable/me" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="150dp"
android:layout_height="200dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="50dp"
android:cropToPadding="true"
android:scaleType="fitCenter"
android:src="@drawable/mylove" />
</LinearLayout>