Sorry, das ist mein Code also erst mal die XML datei
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.kamil.learningcolors.game"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
android:background="@drawable/hintergrund"
android:id="@+id/game"
android:focusable="false">
/>
Und das hier ist die onCreate Methode dazu:
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_game); // Hide the status bar. View decorView = getWindow().getDecorView(); int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN; decorView.setSystemUiVisibility(uiOptions); //No Status Bar for Android <16; if (Build.VERSION.SDK_INT < 16) { getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); } //Start in LandscapeMode; this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);}
Ich habe den Code nochmal in einer Text Datei als Anhang beigefügt weil er mir den Code immer falsch formatiert!