我有一個應用程序,其中活動和片段,我已在活動清單中聲明,但對於片段,我希望橫向模式工作,但在Java代碼之後,所有佈局也都在橫向模式下更改,我希望在少數片段佈局上應該是橫向和休息將以肖像模式。如何設置幾個片段是橫向模式,其餘的應該是android中的肖像?
public class CustomizeFragment extends Fragment implements View.OnKeyListener, View.OnClickListener, StringConstants, BundleConstants, NetConstants, AlertDFragment.AlertListener {
private int mAlertIdentifier;
private String TAG = CustomizeFragment.class.getSimpleName();
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.activity_customize, container, false);
// getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
getActivity().setRequestedOrientation(SCREEN_ORIENTATION_LANDSCAPE);
init(rootView);
}
}
如何使文件夾橫向和縱向模式成爲可能,因爲在我的應用程序中,開始佈局是活動,然後是片段和活動佈局。 – sajidnehal