是否可以重新发布具有不同标题的现有iOS应用程序?
该应用程序支持多种语言,但在应用商店中只有英文标题.我的想法很可能是任性的,因为我潜在的俄罗斯/印度/中国/法国观众对此没有任何了解.
听起来不像苹果会支持的东西,但我想我还是会问.
如果它很可能是可行的,那么我对bundle id/prov配置文件/ dist证书的方式需要什么?每个应用程序中的一个?
提前致谢.
我正在使用以下(已清除的)代码来拍摄“屏幕截图”和action_send它。一切正常,唯一的问题是图像不包含状态栏。我知道为什么,我只是不知道该怎么办。有什么方法可以以编程方式裁剪图像,或者在getDrawingCache()拨打电话之前设置某种边界?
提前致谢!
View v1 = findViewById(android.R.id.content).getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap screenshot = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
String path = Images.Media.insertImage(getContentResolver(), screenshot, "title", null);
Uri screenshotUri = Uri.parse(path);
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
Run Code Online (Sandbox Code Playgroud)