允许用户在Android应用中插入图像

时间:2013-01-21 05:57:29

标签: android android-widget android-imageview android-image

我的问题是:如何创建imageButton,允许用户从手机上传图片并将其作为图片配置文件插入应用程序?例如whatsapp,它允许用户从手机中选择图像并将其设置为图片配置文件。

由于

2 个答案:

答案 0 :(得分:9)

以下是链接..

create image button

上传图片

example 1

example 2

example 3

答案 1 :(得分:1)

MY XML FILE

 if (data.IsCloudConfigured == true) {;
                    for (var i = 0; i <= data.rows.length - 1; i++) {
                        var rowData = $("#ExamGrid").jqGrid('getRowData', data.rows[i].StudyUID);
                        if (rowData.StudyUID === undefined) {
                            $("#ExamGrid").addRowData(data.rows[i].StudyUID, data.rows[i]);
                        }
                    }
                }

我的文件

<?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">

<ImageView
    android:id="@android:id/icon"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:onClick="selectImage"
    />