【发布时间】:2011-10-19 05:03:24
【问题描述】:
如果我的设备处于纵向模式,则我现在可以打开图库以选择图像并将所选图像设置为附件失败...所以我想始终以纵向模式打开画廊,即使我将设备转为横向模式...那么如何实现此限制...
我的开放画廊代码是
Button gallerybtn = (Button) findViewById(R.id.button1);
gallerybtn.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
}});
【问题讨论】:
标签: android