我正在我的应用程序中处理用户个人资料的照片部分。我的活动上有一个带有背景图像的按钮。当我单击按钮时,它将重定向到画廊,我想选择一个图像。所选图像将替换按钮中的背景。
下面是我的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Choose Picture"
android:background="@drawable/icon_user"
android:id="@+id/ChoosePictureButton"/>
</LinearLayout>
怎么做?任何想法?