我在我的android应用程序中使用adobe creative sdk。我面临的一个很好的问题是我正在尝试在手机中以横向模式编辑图像,即使在我旋转手机时,编辑屏幕也无法在手机中保持纵向模式。但它在平板电脑中工作正常。
我必须通过任何额外的东西来旋转手机中的屏幕吗?或者它是否允许在手机中以横向模式编辑图像。我被困在这里。请任何人都可以帮我解决这个问题。
我将意图称为如下
Intent imageEditorIntent = new AdobeImageIntent.Builder(this)
.setData(Uri.parse(imgPath))
.withToolList(mTools)
.withOutput(file)
.build();
startActivityForResult(imageEditorIntent, 200);
问候