user3514441
user3514441

Reputation:

Layout cannot be removed

I am trying to remove the layout when the apps starts. I removed "setContentView" from the MainActivity.java file but still the layout is showing when the activty starts..

How can I remove the layout??

   public class MainActivity extends Activity {

@Override 
protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState); 
   setVisible(false); 
   } 
} 

Upvotes: 0

Views: 55

Answers (1)

markas
markas

Reputation: 91

try adding this to your manifest, inside activity android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"

Upvotes: 1

Related Questions