我正在使用 Sony 的 smapp 应用程序,我希望我的窗口是固定的或不可调整大小。需要你们的帮助。谢谢..
setMinimizedView(R.layout.main_minimized);
setTitle(R.string.small_app_name);
SmallAppWindow.Attributes attr = getWindow().getAttributes();
attr.width = getResources().getDimensionPixelSize(R.dimen.min_width);
attr.height = getResources().getDimensionPixelSize(R.dimen.min_height);
attr.flags |= SmallAppWindow.Attributes.FLAG_HARDWARE_ACCELERATED;
getWindow().setAttributes(attr);
}