2

我想让用户从 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>
4

2 回答 2

1

在您的 java 代码的 onCreate 方法中,将按钮分配给一个变量,然后设置一个资源或 Bitmap,该资源或 Bitmap 将使用 BitmapFactory 类从文件中解码。

Bitmap bmp = BitmapFactory.decodeFile("path/to/file");
ImageButton button1 = (ImageButton)findViewById(R.id.imageButton1);
button1.setImageBitmap(bmp);
于 2012-11-12T05:33:30.023 回答
0

像这样试试

  ImageButton img = (ImageButton)findViewById(R.id.imageButton2);
  Bitmap bmp = BitmapFactory.decodeFile(path);
  img.setImageBitmap(bmp);
于 2012-11-12T05:29:16.127 回答