Skip to content

Instantly share code, notes, and snippets.

@soundmasteraj
Forked from singhsegv/EmptyActivity.java
Created December 3, 2020 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soundmasteraj/0d701372cf4260b69a28fdeb163104e1 to your computer and use it in GitHub Desktop.
Save soundmasteraj/0d701372cf4260b69a28fdeb163104e1 to your computer and use it in GitHub Desktop.
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class EmptyActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment