我想让用户从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>
答案 0 :(得分:1)
在java代码的onCreate方法中,将按钮分配给变量,然后使用BitmapFactory类设置将从文件解码的资源或位图。
Bitmap bmp = BitmapFactory.decodeFile("path/to/file");
ImageButton button1 = (ImageButton)findViewById(R.id.imageButton1);
button1.setImageBitmap(bmp);
答案 1 :(得分:0)
试试这个
ImageButton img = (ImageButton)findViewById(R.id.imageButton2);
Bitmap bmp = BitmapFactory.decodeFile(path);
img.setImageBitmap(bmp);