I am working with Sony's smapp app and I want my window to be fixed or not resizable. need your help guys. Thanks..
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);
}