我想设置设置活动的屏幕方向。
在我的应用程序中:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.android.settings","com.android.settings.Settings"));
根据上面的代码,我可以调用设置活动。但这项活动的格局是固定的。垂直的。我想将此活动的屏幕方向更改为水平(横向)。
我想设置设置活动的屏幕方向。
在我的应用程序中:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.android.settings","com.android.settings.Settings"));
根据上面的代码,我可以调用设置活动。但这项活动的格局是固定的。垂直的。我想将此活动的屏幕方向更改为水平(横向)。