diff --git a/samples/LunarLander/AndroidManifest.xml b/samples/LunarLander/AndroidManifest.xml index 7fdc57265..301291ade 100644 --- a/samples/LunarLander/AndroidManifest.xml +++ b/samples/LunarLander/AndroidManifest.xml @@ -22,11 +22,11 @@ - + - + diff --git a/samples/LunarLander/src/com/example/android/lunarlander/LunarLander.java b/samples/LunarLander/src/com/example/android/lunarlander/LunarLander.java index 7f54ff627..a4ffef534 100644 --- a/samples/LunarLander/src/com/example/android/lunarlander/LunarLander.java +++ b/samples/LunarLander/src/com/example/android/lunarlander/LunarLander.java @@ -124,9 +124,6 @@ public class LunarLander extends Activity { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); - // turn off the window's title bar - requestWindowFeature(Window.FEATURE_NO_TITLE); - // tell system to use the layout defined in our XML file setContentView(R.layout.lunar_layout); diff --git a/samples/Snake/AndroidManifest.xml b/samples/Snake/AndroidManifest.xml index 174e8b4be..36a9939a2 100644 --- a/samples/Snake/AndroidManifest.xml +++ b/samples/Snake/AndroidManifest.xml @@ -23,6 +23,7 @@ package="com.example.android.snake"> diff --git a/samples/Snake/src/com/example/android/snake/Snake.java b/samples/Snake/src/com/example/android/snake/Snake.java index 5fdc0244c..630669393 100644 --- a/samples/Snake/src/com/example/android/snake/Snake.java +++ b/samples/Snake/src/com/example/android/snake/Snake.java @@ -45,9 +45,6 @@ public class Snake extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); - // No Title bar - requestWindowFeature(Window.FEATURE_NO_TITLE); - setContentView(R.layout.snake_layout); mSnakeView = (SnakeView) findViewById(R.id.snake);