我正在尝试开发该功能,用户可以在其中单击图像以选择要在单击的同一视图上上传的图像。我将 ImageView 定义如下
<ImageView
style = "@style/DefaultButton"
android:id="@+id/choose_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="46dp"
android:clickable="True"
android:adjustViewBounds="true"
android:onClick="chooseImg"
android:contentDescription="@string/description_logo"
android:src="@drawable/user2" />
方法chooseImg如下
public void chooseImg(View view){
Toast.makeText(this, "Choose Image from Gallery", Toast.LENGTH_SHORT).show();
Intent chimg = new Intent(Intent.ACTION_GET_CONTENT);
chimg.setType("image/*");
startActivityForResult(chimg,CHOOSE_IMAGE_REQUEST_CODE);
}
该方法没有被调用。请帮我知道原因。谢谢 :)。